Changeset 99be05 in git


Ignore:
Timestamp:
Jun 4, 1997, 9:44:21 PM (26 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', '91e5db82acc17434e4062bcfa44e6efa7d41fd30')
Children:
4c001aeab70ceba5cf5bfcdef42079b63fe8bc72
Parents:
d93b4897a51e395af3ce95f29a5b7731e26dd3ac
Message:
* merged fixes from 1-0 branch


git-svn-id: file:///usr/local/Singular/svn/trunk@357 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
libfac
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libfac/ChangeLog

    rd93b48 r99be05  
    33        * Makefile.in (uninstall): took out template installation
    44        (all): added OPTOBJ target so that the dir is created, if necessary
     5
     6Sun 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
     11Fri 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
    515
    616Tue May 13 20:09:03 1997  Olaf Bachmann  <obachman@schlupp.mathematik.uni-kl.de (Olaf Bachmann)>
  • libfac/configure

    rd93b48 r99be05  
    580580
    581581if test "${CXXFLAGS+set}" != set; then
     582  ac_cxxflags_set=no
    582583  if test "$with_debug" = yes; then
    583584    CXXFLAGS="-g"
     
    641642#endif
    642643EOF
    643 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:644: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     644if { 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
    644645  ac_cv_prog_gxx=yes
    645646else
     
    690691  CXXCPP="${CXX-g++} -E"
    691692  cat > conftest.$ac_ext <<EOF
    692 #line 693 "configure"
     693#line 694 "configure"
    693694#include "confdefs.h"
    694695#include <stdlib.h>
    695696EOF
    696697ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    697 { (eval echo configure:698: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     698{ (eval echo configure:699: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    698699ac_err=`grep -v '^ *+' conftest.out`
    699700if test -z "$ac_err"; then
     
    805806else
    806807  cat > conftest.$ac_ext <<EOF
    807 #line 808 "configure"
     808#line 809 "configure"
    808809#include "confdefs.h"
    809810#include <$ac_hdr>
    810811EOF
    811812ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    812 { (eval echo configure:813: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     813{ (eval echo configure:814: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    813814ac_err=`grep -v '^ *+' conftest.out`
    814815if test -z "$ac_err"; then
     
    850851else
    851852  cat > conftest.$ac_ext <<EOF
    852 #line 853 "configure"
     853#line 854 "configure"
    853854#include "confdefs.h"
    854855
     
    900901; return 0; }
    901902EOF
    902 if { (eval echo configure:903: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     903if { (eval echo configure:904: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    903904  rm -rf conftest*
    904905  ac_cv_c_const=yes
     
    926927for ac_kw in inline __inline__ __inline; do
    927928  cat > conftest.$ac_ext <<EOF
    928 #line 929 "configure"
     929#line 930 "configure"
    929930#include "confdefs.h"
    930931
     
    934935; return 0; }
    935936EOF
    936 if { (eval echo configure:937: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     937if { (eval echo configure:938: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    937938  rm -rf conftest*
    938939  ac_cv_c_inline=$ac_kw; break
     
    959960
    960961if test ${GXX} = yes; then
    961   if test "${CXXFLAGS+set}" != set; then
     962  if test "$ac_cxxflags_set" = no; then
    962963    if test "$with_debug" = yes; then
    963964      CXXFLAGS="-O -g"
  • libfac/configure.in

    rd93b48 r99be05  
    6767
    6868if test "${CXXFLAGS+set}" != set; then
     69  ac_cxxflags_set=no
    6970  if test "$with_debug" = yes; then
    7071    CXXFLAGS="-g"
     
    117118dnl
    118119if test ${GXX} = yes; then
    119   if test "${CXXFLAGS+set}" != set; then
     120  if test "$ac_cxxflags_set" = no; then
    120121    if test "$with_debug" = yes; then
    121122      CXXFLAGS="-O -g"
Note: See TracChangeset for help on using the changeset viewer.