Changeset 9ead31 in git
- Timestamp:
- Dec 8, 1999, 3:47:00 PM (23 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 53d0872de3ff6a1163f5d6807bf357032ff564e2
- Parents:
- a94090d0cd2313d6f7feaf0908fb3c4da5fe3352
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.in
ra94090 r9ead31 19 19 PERL = @PERL@ 20 20 TMP_DIR = @TMP_DIR@ 21 MYGZIP = @MYGZIP@ 22 GUNZIP = @GUNZIP@ 21 23 22 24 ############################################################## … … 156 158 dist: ${SHAREDIST_NAME}.tgz ${BINDIST_NAME}.tgz 157 159 158 sharedist ${SHAREDIST_NAME}.t gz:160 sharedist ${SHAREDIST_NAME}.tar.gz: 159 161 if test -d ${TMPDIR}; then rm -rf ${TMPDIR}; fi 160 162 ${MAKE} install-sharedist localdir=${TMPDIR} 161 cd ${TMPDIR}; tar cf - Singular| gzip -c > ${SHAREDIST_NAME}.tgz162 mv ${TMPDIR}/${SHAREDIST_NAME}.t gz .163 rm -rf ${TMPDIR} 164 165 bindist ${BINDIST_NAME}.t gz:163 cd ${TMPDIR}; tar cf ${SHAREDIST_NAME}.tar Singular; ${MYGZIP} ${SHAREDIST_NAME}.tar 164 mv ${TMPDIR}/${SHAREDIST_NAME}.tar.gz . 165 rm -rf ${TMPDIR} 166 167 bindist ${BINDIST_NAME}.tar.gz: 166 168 if test -d ${TMPDIR}; then rm -fr ${TMPDIR}; fi 167 169 ${MAKE} install-bindist localdir=${TMPDIR} 168 cd ${TMPDIR}; tar cf - Singular | gzip -c > ${BINDIST_NAME}.tgz 169 mv ${TMPDIR}/Singular-${S_VERSION}-${SINGUNAME}.tgz . 170 rm -rf ${TMPDIR} 171 172 install-local-dist: ${SHAREDIST_NAME}.tgz ${BINDIST_NAME}.tgz 173 cp ${SHAREDIST_NAME}.tgz ${BINDIST_NAME}.tgz ${localdir} 174 cd ${localdir} 175 gunzip -c ${SHAREDIST_NAME}.tgz | tar xf - 176 gunzip -c ${BINDIST_NAME}.tgz | tar xf - 177 rm -rf ${localdir}/${SHAREDIST_NAME}.tgz ${localdir}/${BINDIST_NAME}.tgz 170 cd ${TMPDIR}; tar cf ${BINDIST_NAME}.tar Singular; ${MYGZIP} ${BINDIST_NAME}.tar 171 mv ${TMPDIR}/Singular-${S_VERSION}-${SINGUNAME}.tar.gz 172 rm -rf ${TMPDIR} 173 174 install-local-dist: ${SHAREDIST_NAME}.tar.gz ${BINDIST_NAME}.tar.gz 175 cp ${SHAREDIST_NAME}.tar.gz ${BINDIST_NAME}.tar.gz ${localdir} 176 cd ${localdir}; ${GUNZIP} ${SHAREDIST_NAME}.tar.gz; tar xf ${SHAREDIST_NAME}.tar 177 cd ${localdir}; ${GUNZIP} ${BINDIST_NAME}.tar.gz; tar xf ${BINDIST_NAME}.tar 178 rm -rf ${localdir}/${SHAREDIST_NAME}.tar.gz ${localdir}/${BINDIST_NAME}.tar.gz 178 179 ${MKINSTALLDIRS} ${localdir}/bin 179 180 ${LN_S} ${localdir}/Singular/${S_VERSION}/${SINGUNAME}/Singular ${localdir}/bin/Singular-${S_VERSION} … … 181 182 182 183 184 185 ## 186 ## old targets -- need to be updated 187 ## 183 188 184 189 BINDIR_NAME = Singular/${S_VERSION}/${SINGUNAME} … … 196 201 197 202 .PHONY: sharedist bindist static-bindist infodist win-sharedist 198 _sharedist: ${SINGULAR} 199 cd doc; ${MAKE} all ps 200 cd emacs; ${MAKE} all 201 rm -rf ${TMPDIR}/ 202 ${MKINSTALLDIRS} ${TMPDIR}/${LIBDIR_NAME} 203 ${MKINSTALLDIRS} ${TMPDIR}/${GFTABLESDIR_NAME} 204 ${MKINSTALLDIRS} ${TMPDIR}/${DOCDIR_NAME} 205 ${MKINSTALLDIRS} ${TMPDIR}/${HTMLDIR_NAME} 206 ${MKINSTALLDIRS} ${TMPDIR}/${INFODIR_NAME} 207 ${MKINSTALLDIRS} ${TMPDIR}/${EMACSDIR_NAME} 208 cp Singular/LIB/*.lib ${TMPDIR}/${LIBDIR_NAME} 209 rm -f ${TMPDIR}/${LIBDIR_NAME}/tst.lib 210 cp Singular/LIB/gftables/[0-9]* ${TMPDIR}/${GFTABLESDIR_NAME} 211 cp doc/singular.idx doc/manual.ps doc/usercard.ps \ 212 doc/manual.dvi doc/usercard.dvi \ 213 ${TMPDIR}/${DOCDIR_NAME} 214 cp doc/singular.hlp ${TMPDIR}/${INFODIR_NAME} 215 cp -R doc/html/* ${TMPDIR}/${HTMLDIR_NAME} 216 cp emacs/*.el ${TMPDIR}/${EMACSDIR_NAME} 217 cp emacs/.emacs-singular ${TMPDIR}/${EMACSDIR_NAME} 218 chmod -R a+rX ${TMPDIR}/Singular 219 cd ${TMPDIR}; \ 220 ${ZIP} -r ${SHAREDIST_NAME} Singular; \ 221 tar cf ${SHAREDIST_NAME}.tar Singular; gzip ${SHAREDIST_NAME}.tar 222 mv ${TMPDIR}/${SHAREDIST_NAME}.zip ${TMPDIR}/${SHAREDIST_NAME}.tar.gz . 223 rm -rf ${TMPDIR}/ 224 225 226 _bindist: ${SINGULAR} 227 cd Singular; ${MAKE} Singular-$@ libparse 228 rm -rf ${TMPDIR} 229 ${MKINSTALLDIRS} ${TMPDIR}/${BINDIR_NAME} 230 cp Singular/Singular-$@ ${TMPDIR}/${BINDIR_NAME}/Singular 231 cp Singular/ESingular ${TMPDIR}/${BINDIR_NAME}/ESingular 232 cp Singular/libparse ${TMPDIR}/${BINDIR_NAME} 233 -strip ${TMPDIR}/${BINDIR_NAME}/* 234 cd ${TMPDIR}; chmod -R a+rX *;\ 235 tar cf ${BINDIST_NAME}.tar Singular; \ 236 gzip ${BINDIST_NAME}.tar 237 mv ${TMPDIR}/${BINDIST_NAME}.tar.gz . 238 rm -rf ${TMPDIR} 239 240 static-bindist: ${SINGULAR} 203 _static-bindist: ${SINGULAR} 241 204 cd Singular; ${MAKE} Singular-$@ libparse 242 205 rm -rf ${TMPDIR} … … 249 212 cd ${TMPDIR}; chmod -R a+rX *;\ 250 213 tar cf ${BINDIST_NAME}-static.tar Singular; \ 251 gzip${BINDIST_NAME}-static.tar214 ${MYGZIP} ${BINDIST_NAME}-static.tar 252 215 mv ${TMPDIR}/${BINDIST_NAME}-static.tar.gz . 253 216 rm -rf ${TMPDIR} 254 217 255 infodist:218 _infodist: 256 219 rm -rf ${TMPDIR} 257 220 ${MKINSTALLDIRS} ${TMPDIR}/${SINGUNAME}/bin/ … … 259 222 -strip ${TMPDIR}/${SINGUNAME}/bin/info 260 223 cd ${TMPDIR}; tar cf info-${SINGUNAME}.tar ${SINGUNAME}; \ 261 gzipinfo-${SINGUNAME}.tar224 ${MYGZIP} info-${SINGUNAME}.tar 262 225 mv ${TMPDIR}/info-${SINGUNAME}.tar.gz . 263 226 rm -rf ${TMPDIR} … … 290 253 cd ${TMPDIR}; \ 291 254 tar cf Singular-${S_VERSION}.tar Singular-${S_VERSION}; \ 292 gzipSingular-${S_VERSION}.tar255 ${MYGZIP} Singular-${S_VERSION}.tar 293 256 cp ${TMPDIR}/Singular-${S_VERSION}.tar.gz . 294 257 rm -rf ${TMPDIR} -
configure
ra94090 r9ead31 2 2 3 3 # Guess values for system-dependent variables and create Makefiles. 4 # Generated automatically using autoconf version 2.1 24 # Generated automatically using autoconf version 2.13 5 5 # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. 6 6 # … … 102 102 subdirs= 103 103 MFLAGS= MAKEFLAGS= 104 SHELL=${CONFIG_SHELL-/bin/sh} 104 105 # Maximum number of lines to put in a shell here document. 105 106 ac_max_here_lines=12 … … 385 386 386 387 -version | --version | --versio | --versi | --vers) 387 echo "configure generated by autoconf version 2.1 2"388 echo "configure generated by autoconf version 2.13" 388 389 exit 0 ;; 389 390 … … 555 556 ac_cpp='$CPP $CPPFLAGS' 556 557 ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' 557 ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'558 ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' 558 559 cross_compiling=$ac_cv_prog_cc_cross 559 560 561 ac_exeext= 562 ac_objext=o 560 563 if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then 561 564 # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu. … … 587 590 fi 588 591 592 pwd=`pwd` 593 589 594 echo $ac_n "checking uname for singular""... $ac_c" 1>&6 590 echo "configure:59 1: checking uname for singular" >&5595 echo "configure:596: checking uname for singular" >&5 591 596 if eval "test \"`echo '$''{'ac_cv_singuname'+set}'`\" = set"; then 592 597 echo $ac_n "(cached) $ac_c" 1>&6 … … 633 638 set dummy gcc; ac_word=$2 634 639 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 635 echo "configure:6 36: checking for $ac_word" >&5640 echo "configure:641: checking for $ac_word" >&5 636 641 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 637 642 echo $ac_n "(cached) $ac_c" 1>&6 … … 640 645 ac_cv_prog_CC="$CC" # Let the user override the test. 641 646 else 642 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" 643 for ac_dir in $PATH; do 647 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" 648 ac_dummy="$PATH" 649 for ac_dir in $ac_dummy; do 644 650 test -z "$ac_dir" && ac_dir=. 645 651 if test -f $ac_dir/$ac_word; then … … 662 668 set dummy cc; ac_word=$2 663 669 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 664 echo "configure:6 65: checking for $ac_word" >&5670 echo "configure:671: checking for $ac_word" >&5 665 671 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 666 672 echo $ac_n "(cached) $ac_c" 1>&6 … … 669 675 ac_cv_prog_CC="$CC" # Let the user override the test. 670 676 else 671 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" ${IFS}:"677 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" 672 678 ac_prog_rejected=no 673 for ac_dir in $PATH; do 679 ac_dummy="$PATH" 680 for ac_dir in $ac_dummy; do 674 681 test -z "$ac_dir" && ac_dir=. 675 682 if test -f $ac_dir/$ac_word; then … … 706 713 fi 707 714 715 if test -z "$CC"; then 716 case "`uname -s`" in 717 *win32* | *WIN32*) 718 # Extract the first word of "cl", so it can be a program name with args. 719 set dummy cl; ac_word=$2 720 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 721 echo "configure:722: checking for $ac_word" >&5 722 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 723 echo $ac_n "(cached) $ac_c" 1>&6 724 else 725 if test -n "$CC"; then 726 ac_cv_prog_CC="$CC" # Let the user override the test. 727 else 728 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" 729 ac_dummy="$PATH" 730 for ac_dir in $ac_dummy; do 731 test -z "$ac_dir" && ac_dir=. 732 if test -f $ac_dir/$ac_word; then 733 ac_cv_prog_CC="cl" 734 break 735 fi 736 done 737 IFS="$ac_save_ifs" 738 fi 739 fi 740 CC="$ac_cv_prog_CC" 741 if test -n "$CC"; then 742 echo "$ac_t""$CC" 1>&6 743 else 744 echo "$ac_t""no" 1>&6 745 fi 746 ;; 747 esac 748 fi 708 749 test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; } 709 750 fi 710 751 711 752 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 712 echo "configure:7 13: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5753 echo "configure:754: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 713 754 714 755 ac_ext=c … … 716 757 ac_cpp='$CPP $CPPFLAGS' 717 758 ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' 718 ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'759 ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' 719 760 cross_compiling=$ac_cv_prog_cc_cross 720 761 721 cat > conftest.$ac_ext <<EOF 722 #line 723 "configure" 762 cat > conftest.$ac_ext << EOF 763 764 #line 765 "configure" 723 765 #include "confdefs.h" 766 724 767 main(){return(0);} 725 768 EOF 726 if { (eval echo configure:7 27: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then769 if { (eval echo configure:770: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 727 770 ac_cv_prog_cc_works=yes 728 771 # If we can't run a trivial program, we are probably using a cross compiler. … … 738 781 fi 739 782 rm -fr conftest* 783 ac_ext=c 784 # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. 785 ac_cpp='$CPP $CPPFLAGS' 786 ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' 787 ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' 788 cross_compiling=$ac_cv_prog_cc_cross 740 789 741 790 echo "$ac_t""$ac_cv_prog_cc_works" 1>&6 … … 744 793 fi 745 794 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 746 echo "configure:7 47: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5795 echo "configure:796: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 747 796 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 748 797 cross_compiling=$ac_cv_prog_cc_cross 749 798 750 799 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 751 echo "configure: 752: checking whether we are using GNU C" >&5800 echo "configure:801: checking whether we are using GNU C" >&5 752 801 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 753 802 echo $ac_n "(cached) $ac_c" 1>&6 … … 758 807 #endif 759 808 EOF 760 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure: 761: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then809 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:810: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 761 810 ac_cv_prog_gcc=yes 762 811 else … … 769 818 if test $ac_cv_prog_gcc = yes; then 770 819 GCC=yes 771 ac_test_CFLAGS="${CFLAGS+set}" 772 ac_save_CFLAGS="$CFLAGS" 773 CFLAGS= 774 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 775 echo "configure:776: checking whether ${CC-cc} accepts -g" >&5 820 else 821 GCC= 822 fi 823 824 ac_test_CFLAGS="${CFLAGS+set}" 825 ac_save_CFLAGS="$CFLAGS" 826 CFLAGS= 827 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 828 echo "configure:829: checking whether ${CC-cc} accepts -g" >&5 776 829 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 777 830 echo $ac_n "(cached) $ac_c" 1>&6 … … 788 841 789 842 echo "$ac_t""$ac_cv_prog_cc_g" 1>&6 790 if test "$ac_test_CFLAGS" = set; then 791 CFLAGS="$ac_save_CFLAGS" 792 elif test $ac_cv_prog_cc_g = yes; then 843 if test "$ac_test_CFLAGS" = set; then 844 CFLAGS="$ac_save_CFLAGS" 845 elif test $ac_cv_prog_cc_g = yes; then 846 if test "$GCC" = yes; then 793 847 CFLAGS="-g -O2" 794 848 else 849 CFLAGS="-g" 850 fi 851 else 852 if test "$GCC" = yes; then 795 853 CFLAGS="-O2" 796 fi 797 else 798 GCC= 799 test "${CFLAGS+set}" = set || CFLAGS="-g" 854 else 855 CFLAGS= 856 fi 800 857 fi 801 858 802 859 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 803 echo "configure:8 04: checking how to run the C preprocessor" >&5860 echo "configure:861: checking how to run the C preprocessor" >&5 804 861 # On Suns, sometimes $CPP names a directory. 805 862 if test -n "$CPP" && test -d "$CPP"; then … … 816 873 # not just through cpp. 817 874 cat > conftest.$ac_ext <<EOF 818 #line 8 19"configure"875 #line 876 "configure" 819 876 #include "confdefs.h" 820 877 #include <assert.h> … … 822 879 EOF 823 880 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 824 { (eval echo configure:8 25: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }825 ac_err=`grep -v '^ *+' conftest.out `881 { (eval echo configure:882: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 882 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 826 883 if test -z "$ac_err"; then 827 884 : … … 833 890 CPP="${CC-cc} -E -traditional-cpp" 834 891 cat > conftest.$ac_ext <<EOF 835 #line 8 36"configure"892 #line 893 "configure" 836 893 #include "confdefs.h" 837 894 #include <assert.h> … … 839 896 EOF 840 897 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 841 { (eval echo configure:842: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 842 ac_err=`grep -v '^ *+' conftest.out` 898 { (eval echo configure:899: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 899 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 900 if test -z "$ac_err"; then 901 : 902 else 903 echo "$ac_err" >&5 904 echo "configure: failed program was:" >&5 905 cat conftest.$ac_ext >&5 906 rm -rf conftest* 907 CPP="${CC-cc} -nologo -E" 908 cat > conftest.$ac_ext <<EOF 909 #line 910 "configure" 910 #include "confdefs.h" 911 #include <assert.h> 912 Syntax Error 913 EOF 914 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 915 { (eval echo configure:916: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 916 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 843 917 if test -z "$ac_err"; then 844 918 : … … 849 923 rm -rf conftest* 850 924 CPP=/lib/cpp 925 fi 926 rm -f conftest* 851 927 fi 852 928 rm -f conftest* … … 887 963 # IRIX /sbin/install 888 964 # AIX /bin/install 965 # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag 889 966 # AFS /usr/afsws/bin/install, which mishandles nonexistent args 890 967 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" 891 968 # ./install, which can be erroneously created by make from ./install.sh. 892 969 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 893 echo "configure: 894: checking for a BSD compatible install" >&5970 echo "configure:971: checking for a BSD compatible install" >&5 894 971 if test -z "$INSTALL"; then 895 972 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 896 973 echo $ac_n "(cached) $ac_c" 1>&6 897 974 else 898 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" ${IFS}:"975 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=":" 899 976 for ac_dir in $PATH; do 900 977 # Account for people who put trailing slashes in PATH elements. … … 903 980 *) 904 981 # OSF1 and SCO ODT 3.0 have their own names for install. 905 for ac_prog in ginstall installbsd scoinst install; do 982 # Don't use installbsd from OSF since it installs stuff as root 983 # by default. 984 for ac_prog in ginstall scoinst install; do 906 985 if test -f $ac_dir/$ac_prog; then 907 986 if test $ac_prog = install && 908 987 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then 909 988 # AIX install. It has an incompatible calling convention. 910 # OSF/1 installbsd also uses dspmsg, but is usable.911 989 : 912 990 else … … 938 1016 test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' 939 1017 1018 test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' 1019 940 1020 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' 941 1021 942 1022 echo $ac_n "checking for AIX""... $ac_c" 1>&6 943 echo "configure: 944: checking for AIX" >&51023 echo "configure:1024: checking for AIX" >&5 944 1024 cat > conftest.$ac_ext <<EOF 945 #line 946 "configure"1025 #line 1026 "configure" 946 1026 #include "confdefs.h" 947 1027 #ifdef _AIX … … 970 1050 set dummy $ac_prog; ac_word=$2 971 1051 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 972 echo "configure: 973: checking for $ac_word" >&51052 echo "configure:1053: checking for $ac_word" >&5 973 1053 if eval "test \"`echo '$''{'ac_cv_prog_PERL'+set}'`\" = set"; then 974 1054 echo $ac_n "(cached) $ac_c" 1>&6 … … 977 1057 ac_cv_prog_PERL="$PERL" # Let the user override the test. 978 1058 else 979 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" 980 for ac_dir in $PATH; do 1059 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" 1060 ac_dummy="$PATH" 1061 for ac_dir in $ac_dummy; do 981 1062 test -z "$ac_dir" && ac_dir=. 982 1063 if test -f $ac_dir/$ac_word; then … … 998 1079 done 999 1080 1081 for ac_prog in __gunzip 1082 do 1083 # Extract the first word of "$ac_prog", so it can be a program name with args. 1084 set dummy $ac_prog; ac_word=$2 1085 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1086 echo "configure:1087: checking for $ac_word" >&5 1087 if eval "test \"`echo '$''{'ac_cv_prog_GUNZIP'+set}'`\" = set"; then 1088 echo $ac_n "(cached) $ac_c" 1>&6 1089 else 1090 if test -n "$GUNZIP"; then 1091 ac_cv_prog_GUNZIP="$GUNZIP" # Let the user override the test. 1092 else 1093 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" 1094 ac_dummy="$PATH" 1095 for ac_dir in $ac_dummy; do 1096 test -z "$ac_dir" && ac_dir=. 1097 if test -f $ac_dir/$ac_word; then 1098 ac_cv_prog_GUNZIP="$ac_prog" 1099 break 1100 fi 1101 done 1102 IFS="$ac_save_ifs" 1103 fi 1104 fi 1105 GUNZIP="$ac_cv_prog_GUNZIP" 1106 if test -n "$GUNZIP"; then 1107 echo "$ac_t""$GUNZIP" 1>&6 1108 else 1109 echo "$ac_t""no" 1>&6 1110 fi 1111 1112 test -n "$GUNZIP" && break 1113 done 1114 test -n "$GUNZIP" || GUNZIP="${pwd}/warn_not_found.sh gunzip" 1115 1116 # don't use GZIP this breaks configure 1117 for ac_prog in __gzip 1118 do 1119 # Extract the first word of "$ac_prog", so it can be a program name with args. 1120 set dummy $ac_prog; ac_word=$2 1121 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1122 echo "configure:1123: checking for $ac_word" >&5 1123 if eval "test \"`echo '$''{'ac_cv_prog_MYGZIP'+set}'`\" = set"; then 1124 echo $ac_n "(cached) $ac_c" 1>&6 1125 else 1126 if test -n "$MYGZIP"; then 1127 ac_cv_prog_MYGZIP="$MYGZIP" # Let the user override the test. 1128 else 1129 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" 1130 ac_dummy="$PATH" 1131 for ac_dir in $ac_dummy; do 1132 test -z "$ac_dir" && ac_dir=. 1133 if test -f $ac_dir/$ac_word; then 1134 ac_cv_prog_MYGZIP="$ac_prog" 1135 break 1136 fi 1137 done 1138 IFS="$ac_save_ifs" 1139 fi 1140 fi 1141 MYGZIP="$ac_cv_prog_MYGZIP" 1142 if test -n "$MYGZIP"; then 1143 echo "$ac_t""$MYGZIP" 1>&6 1144 else 1145 echo "$ac_t""no" 1>&6 1146 fi 1147 1148 test -n "$MYGZIP" && break 1149 done 1150 test -n "$MYGZIP" || MYGZIP="${pwd}/warn_not_found.sh gzip" 1151 1000 1152 # Extract the first word of "latex2html", so it can be a program name with args. 1001 1153 set dummy latex2html; ac_word=$2 1002 1154 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1003 echo "configure:1 004: checking for $ac_word" >&51155 echo "configure:1156: checking for $ac_word" >&5 1004 1156 if eval "test \"`echo '$''{'ac_cv_prog_LATEX2HTML'+set}'`\" = set"; then 1005 1157 echo $ac_n "(cached) $ac_c" 1>&6 … … 1008 1160 ac_cv_prog_LATEX2HTML="$LATEX2HTML" # Let the user override the test. 1009 1161 else 1010 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" 1011 for ac_dir in $PATH; do 1162 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" 1163 ac_dummy="$PATH" 1164 for ac_dir in $ac_dummy; do 1012 1165 test -z "$ac_dir" && ac_dir=. 1013 1166 if test -f $ac_dir/$ac_word; then … … 1027 1180 1028 1181 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 1029 echo "configure:1 030: checking whether ln -s works" >&51182 echo "configure:1183: checking whether ln -s works" >&5 1030 1183 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 1031 1184 echo $ac_n "(cached) $ac_c" 1>&6 … … 1059 1212 set dummy texi2html; ac_word=$2 1060 1213 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1061 echo "configure:1 062: checking for $ac_word" >&51214 echo "configure:1215: checking for $ac_word" >&5 1062 1215 if eval "test \"`echo '$''{'ac_cv_prog_TEXI2HTML'+set}'`\" = set"; then 1063 1216 echo $ac_n "(cached) $ac_c" 1>&6 … … 1066 1219 ac_cv_prog_TEXI2HTML="$TEXI2HTML" # Let the user override the test. 1067 1220 else 1068 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" 1069 for ac_dir in $PATH; do 1221 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" 1222 ac_dummy="$PATH" 1223 for ac_dir in $ac_dummy; do 1070 1224 test -z "$ac_dir" && ac_dir=. 1071 1225 if test -f $ac_dir/$ac_word; then … … 1132 1286 # check for AIX 1133 1287 echo $ac_n "checking whether _AIX is defined""... $ac_c" 1>&6 1134 echo "configure:1 135: checking whether _AIX is defined" >&51288 echo "configure:1289: checking whether _AIX is defined" >&5 1135 1289 if eval "test \"`echo '$''{'ac_cv_is_aix'+set}'`\" = set"; then 1136 1290 echo $ac_n "(cached) $ac_c" 1>&6 1137 1291 else 1138 1292 cat > conftest.$ac_ext <<EOF 1139 #line 1 140"configure"1293 #line 1294 "configure" 1140 1294 #include "confdefs.h" 1141 1295 #ifdef _AIX … … 1163 1317 1164 1318 echo $ac_n "checking for atof in -lm""... $ac_c" 1>&6 1165 echo "configure:1 166: checking for atof in -lm" >&51319 echo "configure:1320: checking for atof in -lm" >&5 1166 1320 ac_lib_var=`echo m'_'atof | sed 'y%./+-%__p_%'` 1167 1321 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1171 1325 LIBS="-lm $LIBS" 1172 1326 cat > conftest.$ac_ext <<EOF 1173 #line 1 174"configure"1327 #line 1328 "configure" 1174 1328 #include "confdefs.h" 1175 1329 /* Override any gcc2 internal prototype to avoid an error. */ … … 1182 1336 ; return 0; } 1183 1337 EOF 1184 if { (eval echo configure:1 185: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1338 if { (eval echo configure:1339: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1185 1339 rm -rf conftest* 1186 1340 eval "ac_cv_lib_$ac_lib_var=yes" … … 1210 1364 1211 1365 echo $ac_n "checking for socket in -lbsd""... $ac_c" 1>&6 1212 echo "configure:1 213: checking for socket in -lbsd" >&51366 echo "configure:1367: checking for socket in -lbsd" >&5 1213 1367 ac_lib_var=`echo bsd'_'socket | sed 'y%./+-%__p_%'` 1214 1368 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1218 1372 LIBS="-lbsd $LIBS" 1219 1373 cat > conftest.$ac_ext <<EOF 1220 #line 1 221"configure"1374 #line 1375 "configure" 1221 1375 #include "confdefs.h" 1222 1376 /* Override any gcc2 internal prototype to avoid an error. */ … … 1229 1383 ; return 0; } 1230 1384 EOF 1231 if { (eval echo configure:1 232: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1385 if { (eval echo configure:1386: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1232 1386 rm -rf conftest* 1233 1387 eval "ac_cv_lib_$ac_lib_var=yes" … … 1257 1411 1258 1412 echo $ac_n "checking for listen in -lsocket""... $ac_c" 1>&6 1259 echo "configure:1 260: checking for listen in -lsocket" >&51413 echo "configure:1414: checking for listen in -lsocket" >&5 1260 1414 ac_lib_var=`echo socket'_'listen | sed 'y%./+-%__p_%'` 1261 1415 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1265 1419 LIBS="-lsocket $LIBS" 1266 1420 cat > conftest.$ac_ext <<EOF 1267 #line 1 268"configure"1421 #line 1422 "configure" 1268 1422 #include "confdefs.h" 1269 1423 /* Override any gcc2 internal prototype to avoid an error. */ … … 1276 1430 ; return 0; } 1277 1431 EOF 1278 if { (eval echo configure:1 279: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1432 if { (eval echo configure:1433: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1279 1433 rm -rf conftest* 1280 1434 eval "ac_cv_lib_$ac_lib_var=yes" … … 1304 1458 1305 1459 echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6 1306 echo "configure:1 307: checking for gethostbyname in -lnsl" >&51460 echo "configure:1461: checking for gethostbyname in -lnsl" >&5 1307 1461 ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'` 1308 1462 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1312 1466 LIBS="-lnsl $LIBS" 1313 1467 cat > conftest.$ac_ext <<EOF 1314 #line 1 315"configure"1468 #line 1469 "configure" 1315 1469 #include "confdefs.h" 1316 1470 /* Override any gcc2 internal prototype to avoid an error. */ … … 1323 1477 ; return 0; } 1324 1478 EOF 1325 if { (eval echo configure:1 326: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1479 if { (eval echo configure:1480: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1326 1480 rm -rf conftest* 1327 1481 eval "ac_cv_lib_$ac_lib_var=yes" … … 1351 1505 1352 1506 echo $ac_n "checking for mpq_init in -lgmp""... $ac_c" 1>&6 1353 echo "configure:1 354: checking for mpq_init in -lgmp" >&51507 echo "configure:1508: checking for mpq_init in -lgmp" >&5 1354 1508 ac_lib_var=`echo gmp'_'mpq_init | sed 'y%./+-%__p_%'` 1355 1509 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1359 1513 LIBS="-lgmp $LIBS" 1360 1514 cat > conftest.$ac_ext <<EOF 1361 #line 1 362"configure"1515 #line 1516 "configure" 1362 1516 #include "confdefs.h" 1363 1517 /* Override any gcc2 internal prototype to avoid an error. */ … … 1370 1524 ; return 0; } 1371 1525 EOF 1372 if { (eval echo configure:1 373: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1526 if { (eval echo configure:1527: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1373 1527 rm -rf conftest* 1374 1528 eval "ac_cv_lib_$ac_lib_var=yes" … … 1398 1552 1399 1553 echo $ac_n "checking for mpz_init in -lsmallgmp""... $ac_c" 1>&6 1400 echo "configure:1 401: checking for mpz_init in -lsmallgmp" >&51554 echo "configure:1555: checking for mpz_init in -lsmallgmp" >&5 1401 1555 ac_lib_var=`echo smallgmp'_'mpz_init | sed 'y%./+-%__p_%'` 1402 1556 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1406 1560 LIBS="-lsmallgmp $LIBS" 1407 1561 cat > conftest.$ac_ext <<EOF 1408 #line 1 409"configure"1562 #line 1563 "configure" 1409 1563 #include "confdefs.h" 1410 1564 /* Override any gcc2 internal prototype to avoid an error. */ … … 1417 1571 ; return 0; } 1418 1572 EOF 1419 if { (eval echo configure:1 420: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1573 if { (eval echo configure:1574: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1420 1574 rm -rf conftest* 1421 1575 eval "ac_cv_lib_$ac_lib_var=yes" … … 1445 1599 1446 1600 echo $ac_n "checking for IMP_PutGmpInt in -lMP""... $ac_c" 1>&6 1447 echo "configure:1 448: checking for IMP_PutGmpInt in -lMP" >&51601 echo "configure:1602: checking for IMP_PutGmpInt in -lMP" >&5 1448 1602 ac_lib_var=`echo MP'_'IMP_PutGmpInt | sed 'y%./+-%__p_%'` 1449 1603 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1453 1607 LIBS="-lMP $LIBS" 1454 1608 cat > conftest.$ac_ext <<EOF 1455 #line 1 456"configure"1609 #line 1610 "configure" 1456 1610 #include "confdefs.h" 1457 1611 /* Override any gcc2 internal prototype to avoid an error. */ … … 1464 1618 ; return 0; } 1465 1619 EOF 1466 if { (eval echo configure:1 467: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1620 if { (eval echo configure:1621: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1467 1621 rm -rf conftest* 1468 1622 eval "ac_cv_lib_$ac_lib_var=yes" … … 1492 1646 1493 1647 echo $ac_n "checking for MPT_GetTree in -lMPT""... $ac_c" 1>&6 1494 echo "configure:1 495: checking for MPT_GetTree in -lMPT" >&51648 echo "configure:1649: checking for MPT_GetTree in -lMPT" >&5 1495 1649 ac_lib_var=`echo MPT'_'MPT_GetTree | sed 'y%./+-%__p_%'` 1496 1650 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1500 1654 LIBS="-lMPT $LIBS" 1501 1655 cat > conftest.$ac_ext <<EOF 1502 #line 1 503"configure"1656 #line 1657 "configure" 1503 1657 #include "confdefs.h" 1504 1658 /* Override any gcc2 internal prototype to avoid an error. */ … … 1511 1665 ; return 0; } 1512 1666 EOF 1513 if { (eval echo configure:1 514: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1667 if { (eval echo configure:1668: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1514 1668 rm -rf conftest* 1515 1669 eval "ac_cv_lib_$ac_lib_var=yes" … … 1539 1693 1540 1694 echo $ac_n "checking for atof in -lsingcf""... $ac_c" 1>&6 1541 echo "configure:1 542: checking for atof in -lsingcf" >&51695 echo "configure:1696: checking for atof in -lsingcf" >&5 1542 1696 ac_lib_var=`echo singcf'_'atof | sed 'y%./+-%__p_%'` 1543 1697 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1547 1701 LIBS="-lsingcf $LIBS" 1548 1702 cat > conftest.$ac_ext <<EOF 1549 #line 1 550"configure"1703 #line 1704 "configure" 1550 1704 #include "confdefs.h" 1551 1705 /* Override any gcc2 internal prototype to avoid an error. */ … … 1558 1712 ; return 0; } 1559 1713 EOF 1560 if { (eval echo configure:1 561: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1714 if { (eval echo configure:1715: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1561 1715 rm -rf conftest* 1562 1716 eval "ac_cv_lib_$ac_lib_var=yes" … … 1586 1740 1587 1741 echo $ac_n "checking for atof in -lsingfac""... $ac_c" 1>&6 1588 echo "configure:1 589: checking for atof in -lsingfac" >&51742 echo "configure:1743: checking for atof in -lsingfac" >&5 1589 1743 ac_lib_var=`echo singfac'_'atof | sed 'y%./+-%__p_%'` 1590 1744 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1594 1748 LIBS="-lsingfac $LIBS" 1595 1749 cat > conftest.$ac_ext <<EOF 1596 #line 1 597"configure"1750 #line 1751 "configure" 1597 1751 #include "confdefs.h" 1598 1752 /* Override any gcc2 internal prototype to avoid an error. */ … … 1605 1759 ; return 0; } 1606 1760 EOF 1607 if { (eval echo configure:1 608: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1761 if { (eval echo configure:1762: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1608 1762 rm -rf conftest* 1609 1763 eval "ac_cv_lib_$ac_lib_var=yes" … … 1637 1791 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 1638 1792 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 1639 echo "configure:1 640: checking for $ac_hdr" >&51793 echo "configure:1794: checking for $ac_hdr" >&5 1640 1794 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1641 1795 echo $ac_n "(cached) $ac_c" 1>&6 1642 1796 else 1643 1797 cat > conftest.$ac_ext <<EOF 1644 #line 1 645"configure"1798 #line 1799 "configure" 1645 1799 #include "confdefs.h" 1646 1800 #include <$ac_hdr> 1647 1801 EOF 1648 1802 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1649 { (eval echo configure:1 650: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1650 ac_err=`grep -v '^ *+' conftest.out `1803 { (eval echo configure:1804: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1804 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1651 1805 if test -z "$ac_err"; then 1652 1806 rm -rf conftest* … … 1789 1943 1790 1944 echo $ac_n "checking which tmp dir to use""... $ac_c" 1>&6 1791 echo "configure:1 792: checking which tmp dir to use" >&51945 echo "configure:1946: checking which tmp dir to use" >&5 1792 1946 if test "${with_tmpdir+set}" = set && test -d ${with_tmpdir}; then 1793 1947 if (echo "${with_tmpdir}" | egrep "\." >/dev/null 2>&1) … … 1806 1960 if test "${with_perl5+set}" != set; then 1807 1961 echo $ac_n "checking for perl5""... $ac_c" 1>&6 1808 echo "configure:1 809: checking for perl5" >&51962 echo "configure:1963: checking for perl5" >&5 1809 1963 if eval "test \"`echo '$''{'ac_cv_prog_perl5'+set}'`\" = set"; then 1810 1964 echo $ac_n "(cached) $ac_c" 1>&6 … … 1843 1997 set dummy $ac_prog; ac_word=$2 1844 1998 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1845 echo "configure: 1846: checking for $ac_word" >&51999 echo "configure:2000: checking for $ac_word" >&5 1846 2000 if eval "test \"`echo '$''{'ac_cv_prog_PERL5'+set}'`\" = set"; then 1847 2001 echo $ac_n "(cached) $ac_c" 1>&6 … … 1850 2004 ac_cv_prog_PERL5="$PERL5" # Let the user override the test. 1851 2005 else 1852 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" 1853 for ac_dir in $PATH; do 2006 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" 2007 ac_dummy="$PATH" 2008 for ac_dir in $ac_dummy; do 1854 2009 test -z "$ac_dir" && ac_dir=. 1855 2010 if test -f $ac_dir/$ac_word; then … … 1878 2033 1879 2034 echo $ac_n "checking whether to configure and build texinfo""... $ac_c" 1>&6 1880 echo "configure: 1881: checking whether to configure and build texinfo" >&52035 echo "configure:2036: checking whether to configure and build texinfo" >&5 1881 2036 if test "$enable_texinfo" != no && test -d Texinfo; then 1882 2037 echo "$ac_t""yes" 1>&6 … … 1886 2041 MAKEINFO="${bindir}/makeinfo --force" 1887 2042 TEXINDEX=${bindir}/texindex 2043 2044 2045 1888 2046 else 1889 2047 echo "$ac_t""no" 1>&6 1890 2048 echo "configure: warning: Building of doc might fail. Need Texinfo" 1>&2 1891 2049 enable_texinfo=no 1892 TEXI2DVI=texi2dvi 1893 MAKEINFO=makeinfo 1894 TEXINDEX=${bindir}/texindex 2050 # Extract the first word of "makeinfo", so it can be a program name with args. 2051 set dummy makeinfo; ac_word=$2 2052 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2053 echo "configure:2054: checking for $ac_word" >&5 2054 if eval "test \"`echo '$''{'ac_cv_prog_MAKEINFO'+set}'`\" = set"; then 2055 echo $ac_n "(cached) $ac_c" 1>&6 2056 else 2057 if test -n "$MAKEINFO"; then 2058 ac_cv_prog_MAKEINFO="$MAKEINFO" # Let the user override the test. 2059 else 2060 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" 2061 ac_dummy="$PATH" 2062 for ac_dir in $ac_dummy; do 2063 test -z "$ac_dir" && ac_dir=. 2064 if test -f $ac_dir/$ac_word; then 2065 ac_cv_prog_MAKEINFO="makeinfo" 2066 break 2067 fi 2068 done 2069 IFS="$ac_save_ifs" 2070 test -z "$ac_cv_prog_MAKEINFO" && ac_cv_prog_MAKEINFO="${pwd}/warn_not_found.sh makeinfo" 2071 fi 2072 fi 2073 MAKEINFO="$ac_cv_prog_MAKEINFO" 2074 if test -n "$MAKEINFO"; then 2075 echo "$ac_t""$MAKEINFO" 1>&6 2076 else 2077 echo "$ac_t""no" 1>&6 2078 fi 2079 2080 # Extract the first word of "texi2dvi", so it can be a program name with args. 2081 set dummy texi2dvi; ac_word=$2 2082 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2083 echo "configure:2084: checking for $ac_word" >&5 2084 if eval "test \"`echo '$''{'ac_cv_prog_TEXI2DVI'+set}'`\" = set"; then 2085 echo $ac_n "(cached) $ac_c" 1>&6 2086 else 2087 if test -n "$TEXI2DVI"; then 2088 ac_cv_prog_TEXI2DVI="$TEXI2DVI" # Let the user override the test. 2089 else 2090 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" 2091 ac_dummy="$PATH" 2092 for ac_dir in $ac_dummy; do 2093 test -z "$ac_dir" && ac_dir=. 2094 if test -f $ac_dir/$ac_word; then 2095 ac_cv_prog_TEXI2DVI="texi2dvi" 2096 break 2097 fi 2098 done 2099 IFS="$ac_save_ifs" 2100 test -z "$ac_cv_prog_TEXI2DVI" && ac_cv_prog_TEXI2DVI="${pwd}/warn_not_found.sh texi2dvi" 2101 fi 2102 fi 2103 TEXI2DVI="$ac_cv_prog_TEXI2DVI" 2104 if test -n "$TEXI2DVI"; then 2105 echo "$ac_t""$TEXI2DVI" 1>&6 2106 else 2107 echo "$ac_t""no" 1>&6 2108 fi 2109 2110 # Extract the first word of "texindex", so it can be a program name with args. 2111 set dummy texindex; ac_word=$2 2112 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2113 echo "configure:2114: checking for $ac_word" >&5 2114 if eval "test \"`echo '$''{'ac_cv_prog_TEXINDEX'+set}'`\" = set"; then 2115 echo $ac_n "(cached) $ac_c" 1>&6 2116 else 2117 if test -n "$TEXINDEX"; then 2118 ac_cv_prog_TEXINDEX="$TEXINDEX" # Let the user override the test. 2119 else 2120 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" 2121 ac_dummy="$PATH" 2122 for ac_dir in $ac_dummy; do 2123 test -z "$ac_dir" && ac_dir=. 2124 if test -f $ac_dir/$ac_word; then 2125 ac_cv_prog_TEXINDEX="texindex" 2126 break 2127 fi 2128 done 2129 IFS="$ac_save_ifs" 2130 test -z "$ac_cv_prog_TEXINDEX" && ac_cv_prog_TEXINDEX="${pwd}/warn_not_found.sh texindex" 2131 fi 2132 fi 2133 TEXINDEX="$ac_cv_prog_TEXINDEX" 2134 if test -n "$TEXINDEX"; then 2135 echo "$ac_t""$TEXINDEX" 1>&6 2136 else 2137 echo "$ac_t""no" 1>&6 2138 fi 2139 1895 2140 fi 1896 2141 1897 2142 1898 1899 1900 1901 2143 echo $ac_n "checking whether to configure and build gmp lib""... $ac_c" 1>&6 1902 echo "configure: 1903: checking whether to configure and build gmp lib" >&52144 echo "configure:2145: checking whether to configure and build gmp lib" >&5 1903 2145 if test "$enable_gmp" != yes && test "$enable_gmp" != no; then 1904 2146 if test "$ac_gmp_ok" != yes && test -d gmp; then … … 1926 2168 1927 2169 echo $ac_n "checking whether to configure and build smallgmp lib""... $ac_c" 1>&6 1928 echo "configure: 1929: checking whether to configure and build smallgmp lib" >&52170 echo "configure:2171: checking whether to configure and build smallgmp lib" >&5 1929 2171 if test "$enable_smallgmp" != yes && test "$enable_smallgmp" != no; then 1930 2172 if test "$ac_smallgmp_ok" != yes && test "$ac_gmp_ok" != yes && \ … … 1965 2207 1966 2208 echo $ac_n "checking whether to configure and build MP lib""... $ac_c" 1>&6 1967 echo "configure: 1968: checking whether to configure and build MP lib" >&52209 echo "configure:2210: checking whether to configure and build MP lib" >&5 1968 2210 if test "$enable_MP" != yes && test "$enable_MP" != no; then 1969 2211 if test "$with_MP" != no && test "$ac_MP_ok" != yes && test -d MP && \ … … 1994 2236 1995 2237 echo $ac_n "checking whether to configure and build factory lib""... $ac_c" 1>&6 1996 echo "configure: 1997: checking whether to configure and build factory lib" >&52238 echo "configure:2239: checking whether to configure and build factory lib" >&5 1997 2239 if test "$enable_factory" != yes && test "$enable_factory" != no; then 1998 2240 if test "$with_factory" != no && test "$ac_factory_ok" != yes && \ … … 2019 2261 2020 2262 echo $ac_n "checking whether to configure and build libfac lib""... $ac_c" 1>&6 2021 echo "configure:2 022: checking whether to configure and build libfac lib" >&52263 echo "configure:2264: checking whether to configure and build libfac lib" >&5 2022 2264 if test "$enable_libfac" != yes && test "$enable_libfac" != no; then 2023 2265 if test "$with_libfac" != no && test "$ac_libfac_ok" != yes && \ … … 2049 2291 2050 2292 echo $ac_n "checking whether to configure and build sgroup lib""... $ac_c" 1>&6 2051 echo "configure:2 052: checking whether to configure and build sgroup lib" >&52293 echo "configure:2294: checking whether to configure and build sgroup lib" >&5 2052 2294 if test "$enable_sgroup" != yes && test "$enable_sgroup" != no; then 2053 2295 if test "$with_sgroup" != no && test "$ac_sgroup_ok" != yes && \ … … 2079 2321 2080 2322 echo $ac_n "checking whether to configure and build Singular""... $ac_c" 1>&6 2081 echo "configure:2 082: checking whether to configure and build Singular" >&52323 echo "configure:2324: checking whether to configure and build Singular" >&5 2082 2324 if test "$enable_Singular" != yes && test "$enable_Singular" != no; then 2083 2325 if test "$with_Singular" != no && test -d Singular; then … … 2104 2346 2105 2347 echo $ac_n "checking which apint package to use""... $ac_c" 1>&6 2106 echo "configure:2 107: checking which apint package to use" >&52348 echo "configure:2349: checking which apint package to use" >&5 2107 2349 if test "$with_apint" = gmp; then 2108 2350 if test "$ac_gmp_ok" = yes || test "$enable_gmp" = yes; then … … 2128 2370 2129 2371 echo $ac_n "checking whether to use with MP""... $ac_c" 1>&6 2130 echo "configure:2 131: checking whether to use with MP" >&52372 echo "configure:2373: checking whether to use with MP" >&5 2131 2373 if test "$with_MP" = yes; then 2132 2374 if test "$ac_MP_ok" = yes || test "$enable_MP" = yes; then … … 2147 2389 2148 2390 echo $ac_n "checking whether to use with factory""... $ac_c" 1>&6 2149 echo "configure:2 150: checking whether to use with factory" >&52391 echo "configure:2392: checking whether to use with factory" >&5 2150 2392 if test "$with_factory" = yes; then 2151 2393 if test "$ac_factory_ok" = yes || test "$enable_factory" = yes; then … … 2166 2408 2167 2409 echo $ac_n "checking whether to use with libfac""... $ac_c" 1>&6 2168 echo "configure:2 169: checking whether to use with libfac" >&52410 echo "configure:2411: checking whether to use with libfac" >&5 2169 2411 if test "$with_libfac" = yes; then 2170 2412 if test "$ac_libfac_ok" = yes || test "$enable_libfac" = yes; then … … 2185 2427 2186 2428 echo $ac_n "checking whether to use mtrack""... $ac_c" 1>&6 2187 echo "configure:2 188: checking whether to use mtrack" >&52429 echo "configure:2430: checking whether to use mtrack" >&5 2188 2430 if test -d mpr && test "$ac_cv_singuname" = ix86-Linux; then 2189 2431 echo "$ac_t""yes" 1>&6 … … 2194 2436 2195 2437 echo $ac_n "checking whether to use with Singular""... $ac_c" 1>&6 2196 echo "configure:2 197: checking whether to use with Singular" >&52438 echo "configure:2439: checking whether to use with Singular" >&5 2197 2439 if test "$with_Singular" != no && test "$with_Singular" != yes; then 2198 2440 if test "$enable_Singular" = yes; then … … 2253 2495 2254 2496 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 2255 echo "configure:2 256: checking whether ${MAKE-make} sets \${MAKE}" >&52497 echo "configure:2498: checking whether ${MAKE-make} sets \${MAKE}" >&5 2256 2498 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 2257 2499 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 2308 2550 # and sets the high bit in the cache file unless we assign to the vars. 2309 2551 (set) 2>&1 | 2310 case `(ac_space=' '; set ) 2>&1` in2552 case `(ac_space=' '; set | grep ac_space) 2>&1` in 2311 2553 *ac_space=\ *) 2312 2554 # `set' does not quote correctly, so add quotes (double-quote substitution … … 2387 2629 exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;; 2388 2630 -version | --version | --versio | --versi | --vers | --ver | --ve | --v) 2389 echo "$CONFIG_STATUS generated by autoconf version 2.1 2"2631 echo "$CONFIG_STATUS generated by autoconf version 2.13" 2390 2632 exit 0 ;; 2391 2633 -help | --help | --hel | --he | --h) … … 2407 2649 $ac_vpsub 2408 2650 $extrasub 2651 s%@SHELL@%$SHELL%g 2409 2652 s%@CFLAGS@%$CFLAGS%g 2410 2653 s%@CPPFLAGS@%$CPPFLAGS%g 2411 2654 s%@CXXFLAGS@%$CXXFLAGS%g 2655 s%@FFLAGS@%$FFLAGS%g 2412 2656 s%@DEFS@%$DEFS%g 2413 2657 s%@LDFLAGS@%$LDFLAGS%g … … 2435 2679 s%@CPP@%$CPP%g 2436 2680 s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g 2681 s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g 2437 2682 s%@INSTALL_DATA@%$INSTALL_DATA%g 2438 2683 s%@PERL@%$PERL%g 2684 s%@GUNZIP@%$GUNZIP%g 2685 s%@MYGZIP@%$MYGZIP%g 2439 2686 s%@LATEX2HTML@%$LATEX2HTML%g 2440 2687 s%@LN_S@%$LN_S%g -
configure.in
ra94090 r9ead31 16 16 OUTPUT_MAKEFILES=$OUTPUT_MAKEFILES" emacs/Makefile" 17 17 fi 18 19 pwd=`pwd` 18 20 19 21 dnl lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll … … 71 73 72 74 AC_CHECK_PROGS(PERL, perl5 perl) 75 AC_CHECK_PROGS(GUNZIP, gunzip, ${pwd}/warn_not_found.sh gunzip) 76 # don't use GZIP this breaks configure 77 AC_CHECK_PROGS(MYGZIP, gzip, ${pwd}/warn_not_found.sh gzip) 73 78 AC_CHECK_PROG(LATEX2HTML, latex2html, latex2html) 74 79 AC_PROG_LN_S … … 308 313 MAKEINFO="${bindir}/makeinfo --force" 309 314 TEXINDEX=${bindir}/texindex 315 AC_SUBST(TEXI2DVI) 316 AC_SUBST(MAKEINFO) 317 AC_SUBST(TEXINDEX) 310 318 else 311 319 AC_MSG_RESULT(no) 312 320 AC_MSG_WARN(Building of doc might fail. Need Texinfo) 313 321 enable_texinfo=no 314 TEXI2DVI=texi2dvi315 MAKEINFO=makeinfo316 TEXINDEX=${bindir}/texindex322 AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, ${pwd}/warn_not_found.sh makeinfo) 323 AC_CHECK_PROG(TEXI2DVI, texi2dvi, texi2dvi, ${pwd}/warn_not_found.sh texi2dvi) 324 AC_CHECK_PROG(TEXINDEX, texindex, texindex, ${pwd}/warn_not_found.sh texindex) 317 325 fi 318 AC_SUBST(TEXI2DVI)319 AC_SUBST(MAKEINFO)320 AC_SUBST(TEXINDEX)321 326 322 327 -
doc/Makefile.in
ra94090 r9ead31 2 2 ### 3 3 ### Makefile for Singular documentation 4 ### $Id: Makefile.in,v 1.4 8 1999-12-08 12:47:55obachman Exp $4 ### $Id: Makefile.in,v 1.49 1999-12-08 14:47:00 obachman Exp $ 5 5 ##################################################################### 6 6 SHELL=/bin/sh … … 35 35 INSTALL_DATA = ${INSTALL} -m 644 36 36 MKINSTALLDIRS = ../mkinstalldirs 37 GZIP = @GZIP@ 37 38 38 39 PERL5 = @PERL5@ … … 289 290 cp pl2doc.pl doc2tex.pl ${texi2html} lib2doc 290 291 tar cf lib2doc.tar lib2doc 291 gziplib2doc.tar292 ${GZIP} lib2doc.tar 292 293 293 294 clean: mostlyclean
Note: See TracChangeset
for help on using the changeset viewer.