Changeset 99be05 in git
- Timestamp:
- Jun 4, 1997, 9:44:21 PM (26 years ago)
- Branches:
- (u'spielwiese', '91e5db82acc17434e4062bcfa44e6efa7d41fd30')
- Children:
- 4c001aeab70ceba5cf5bfcdef42079b63fe8bc72
- Parents:
- d93b4897a51e395af3ce95f29a5b7731e26dd3ac
- Location:
- libfac
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libfac/ChangeLog
rd93b48 r99be05 3 3 * Makefile.in (uninstall): took out template installation 4 4 (all): added OPTOBJ target so that the dir is created, if necessary 5 6 Sun May 25 14:06:12 1997 Olaf Bachmann <obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)> 7 8 * configure.in: Fixed handling of CXXFLAGS -- it is not touched if 9 set as env var 10 11 Fri May 23 11:10:18 1997 Olaf Bachmann <obachman@schlupp.mathematik.uni-kl.de (Olaf Bachmann)> 12 13 * configure.in (CXXFLAGS): Check whether they are set before value 14 is assigned 5 15 6 16 Tue May 13 20:09:03 1997 Olaf Bachmann <obachman@schlupp.mathematik.uni-kl.de (Olaf Bachmann)> -
libfac/configure
rd93b48 r99be05 580 580 581 581 if test "${CXXFLAGS+set}" != set; then 582 ac_cxxflags_set=no 582 583 if test "$with_debug" = yes; then 583 584 CXXFLAGS="-g" … … 641 642 #endif 642 643 EOF 643 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:64 4: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then644 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:645: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 644 645 ac_cv_prog_gxx=yes 645 646 else … … 690 691 CXXCPP="${CXX-g++} -E" 691 692 cat > conftest.$ac_ext <<EOF 692 #line 69 3"configure"693 #line 694 "configure" 693 694 #include "confdefs.h" 694 695 #include <stdlib.h> 695 696 EOF 696 697 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 697 { (eval echo configure:69 8: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }698 { (eval echo configure:699: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 698 699 ac_err=`grep -v '^ *+' conftest.out` 699 700 if test -z "$ac_err"; then … … 805 806 else 806 807 cat > conftest.$ac_ext <<EOF 807 #line 80 8"configure"808 #line 809 "configure" 808 809 #include "confdefs.h" 809 810 #include <$ac_hdr> 810 811 EOF 811 812 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 812 { (eval echo configure:81 3: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }813 { (eval echo configure:814: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 813 814 ac_err=`grep -v '^ *+' conftest.out` 814 815 if test -z "$ac_err"; then … … 850 851 else 851 852 cat > conftest.$ac_ext <<EOF 852 #line 85 3"configure"853 #line 854 "configure" 853 854 #include "confdefs.h" 854 855 … … 900 901 ; return 0; } 901 902 EOF 902 if { (eval echo configure:90 3: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then903 if { (eval echo configure:904: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 903 904 rm -rf conftest* 904 905 ac_cv_c_const=yes … … 926 927 for ac_kw in inline __inline__ __inline; do 927 928 cat > conftest.$ac_ext <<EOF 928 #line 9 29"configure"929 #line 930 "configure" 929 930 #include "confdefs.h" 930 931 … … 934 935 ; return 0; } 935 936 EOF 936 if { (eval echo configure:93 7: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then937 if { (eval echo configure:938: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 937 938 rm -rf conftest* 938 939 ac_cv_c_inline=$ac_kw; break … … 959 960 960 961 if test ${GXX} = yes; then 961 if test "$ {CXXFLAGS+set}" != set; then962 if test "$ac_cxxflags_set" = no; then 962 963 if test "$with_debug" = yes; then 963 964 CXXFLAGS="-O -g" -
libfac/configure.in
rd93b48 r99be05 67 67 68 68 if test "${CXXFLAGS+set}" != set; then 69 ac_cxxflags_set=no 69 70 if test "$with_debug" = yes; then 70 71 CXXFLAGS="-g" … … 117 118 dnl 118 119 if test ${GXX} = yes; then 119 if test "$ {CXXFLAGS+set}" != set; then120 if test "$ac_cxxflags_set" = no; then 120 121 if test "$with_debug" = yes; then 121 122 CXXFLAGS="-O -g"
Note: See TracChangeset
for help on using the changeset viewer.