- Timestamp:
- May 21, 1997, 3:05:36 PM (27 years ago)
- Branches:
- (u'spielwiese', '1170388a280084e303867145f98985f03b2af06d')
- Children:
- 2b3f238c740deb3d586dc1d5b379ddadb848cbaa
- Parents:
- 670667a17a4a8423dbd6c8e3749cc652102fb28a
- Location:
- libfac
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libfac/ChangeLog
r670667 rdc32d42 1 Tue May 13 11:32:11 1997 Olaf Bachmann <obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)> 2 3 * Makefile.in (uninstall): took out template installation 4 (all): added OPTOBJ target so that the dir is created, if necessary 5 6 Tue May 13 20:09:03 1997 Olaf Bachmann <obachman@schlupp.mathematik.uni-kl.de (Olaf Bachmann)> 7 8 * configure.in: Exit with error if factory.h was not found and 9 --enable-factory option was not explicitely given 10 1 11 Tue May 13 11:32:11 1997 Olaf Bachmann <obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)> 2 12 -
libfac/Makefile.in
r670667 rdc32d42 1 # $Id: Makefile.in,v 1. 5 1997-05-13 10:09:17obachman Exp $1 # $Id: Makefile.in,v 1.6 1997-05-21 13:05:34 obachman Exp $ 2 2 ################################################# 3 3 SHELL = /bin/sh … … 84 84 ## 85 85 86 87 all: OPTOBJ ${TARGETNAME} 88 89 OPTOBJ: 90 ${MKINSTALLDIRS} OPTOBJ 91 86 92 .SUFFIXES: .cc .h .o 87 88 all: ${TARGETNAME}89 93 90 94 OPTOBJ/%.o: %.cc -
libfac/configure
r670667 rdc32d42 794 794 fi 795 795 796 ac_safe=`echo "factory.h" | tr './\055' '___'` 797 echo $ac_n "checking for factory.h""... $ac_c" 1>&6 796 for ac_hdr in factory.h 797 do 798 ac_safe=`echo "$ac_hdr" | tr './\055' '___'` 799 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 798 800 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 799 801 echo $ac_n "(cached) $ac_c" 1>&6 800 802 else 801 803 cat > conftest.$ac_ext <<EOF 802 #line 80 3"configure"804 #line 805 "configure" 803 805 #include "confdefs.h" 804 #include < factory.h>806 #include <$ac_hdr> 805 807 EOF 806 808 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 807 { (eval echo configure:8 08: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }809 { (eval echo configure:810: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 808 810 ac_err=`grep -v '^ *+' conftest.out` 809 811 if test -z "$ac_err"; then … … 819 821 if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then 820 822 echo "$ac_t""yes" 1>&6 821 : 823 ac_tr_hdr=HAVE_`echo $ac_hdr | tr 'abcdefghijklmnopqrstuvwxyz./\055' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ___'` 824 cat >> confdefs.h <<EOF 825 #define $ac_tr_hdr 1 826 EOF 827 822 828 else 823 829 echo "$ac_t""no" 1>&6 824 echo "configure: warning: factory.h not found!" 1>&2 825 fi 826 830 fi 831 done 832 833 834 if test "$ac_cv_header_factory_h" != yes; then 835 if test "$enable_factory" != yes; then 836 { echo "configure: error: Need factory.h to built libfac" 1>&2; exit 1; } 837 else 838 echo "configure: warning: Make sure to _install_ factory.h befor building libfac" 1>&2 839 fi 840 fi 827 841 828 842 … … 833 847 else 834 848 cat > conftest.$ac_ext <<EOF 835 #line 8 36"configure"849 #line 850 "configure" 836 850 #include "confdefs.h" 837 851 … … 883 897 ; return 0; } 884 898 EOF 885 if { (eval echo configure: 886: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then899 if { (eval echo configure:900: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 886 900 rm -rf conftest* 887 901 ac_cv_c_const=yes … … 909 923 for ac_kw in inline __inline__ __inline; do 910 924 cat > conftest.$ac_ext <<EOF 911 #line 9 12"configure"925 #line 926 "configure" 912 926 #include "confdefs.h" 913 927 … … 917 931 ; return 0; } 918 932 EOF 919 if { (eval echo configure:9 20: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then933 if { (eval echo configure:934: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 920 934 rm -rf conftest* 921 935 ac_cv_c_inline=$ac_kw; break -
libfac/configure.in
r670667 rdc32d42 89 89 dnl Checks for header files. 90 90 dnl 91 AC_CHECK_HEADER(factory.h,,AC_MSG_WARN(factory.h not found!)) 91 AC_CHECK_HEADERS(factory.h) 92 93 if test "$ac_cv_header_factory_h" != yes; then 94 if test "$enable_factory" != yes; then 95 AC_MSG_ERROR(Need factory.h to built libfac) 96 else 97 AC_MSG_WARN(Make sure to _install_ factory.h befor building libfac) 98 fi 99 fi 92 100 93 101 dnl
Note: See TracChangeset
for help on using the changeset viewer.