[srvx-commits] CVS: services configure.in,1.65,1.66
Brought to you by:
entrope
|
From: Adrian D. <sai...@us...> - 2002-11-10 02:00:37
|
Update of /cvsroot/srvx/services
In directory usw-pr-cvs1:/tmp/cvs-serv26119
Modified Files:
configure.in
Log Message:
Remove -ansi from gcc flags (prevents saxdb.c compilation on non-linux systems)
Tabs to spaces
Index: configure.in
===================================================================
RCS file: /cvsroot/srvx/services/configure.in,v
retrieving revision 1.65
retrieving revision 1.66
diff -C2 -r1.65 -r1.66
*** configure.in 9 Nov 2002 02:33:22 -0000 1.65
--- configure.in 10 Nov 2002 02:00:33 -0000 1.66
***************
*** 31,54 ****
case $target in
*-freebsd2* | *-freebsdelf2* | *-freebsd*out3*)
! ANSI_SRC="-ansi"
! ;;
*-freebsd3* | *-freebsdelf3* | *-freebsd*out3*)
! AC_DEFINE(BROKEN_REGEX, 1, [Define if the system regex library is unreliable.])
BROKEN_REGEX=yes
- ANSI_SRC="-ansi"
;;
*-solaris*)
! EXTRA_DEFINE="-D__SOLARIS__"
! ANSI_SRC="-fno-builtin"
;;
*-cygwin)
! ANSI_SRC="-fno-builtin"
;;
*-linux*)
! dnl -D_GNU_SOURCE needed for strsignal()
! EXTRA_DEFINE="-D_GNU_SOURCE"
;;
*)
! ANSI_SRC="-ansi"
;;
esac
--- 31,55 ----
case $target in
*-freebsd2* | *-freebsdelf2* | *-freebsd*out3*)
! ANSI_SRC=""
! ;;
*-freebsd3* | *-freebsdelf3* | *-freebsd*out3*)
! ANSI_SRC=""
! AC_DEFINE(BROKEN_REGEX, 1, [Define if the system regex library is unreliable.])
BROKEN_REGEX=yes
;;
*-solaris*)
! EXTRA_DEFINE="-D__SOLARIS__"
! ANSI_SRC="-fno-builtin"
;;
*-cygwin)
! ANSI_SRC="-fno-builtin"
;;
*-linux*)
! dnl -D_GNU_SOURCE needed for strsignal()
! EXTRA_DEFINE="-D_GNU_SOURCE"
! ANSI_SRC=""
;;
*)
! ANSI_SRC=""
;;
esac
|