[srvx-commits] CVS: services configure.in,1.50,1.51
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2002-07-08 15:19:33
|
Update of /cvsroot/srvx/services
In directory usw-pr-cvs1:/tmp/cvs-serv17948
Modified Files:
configure.in
Log Message:
remove checks and compatibility code for strcasecmp, strncasecmp,
stricmp, strcasestr and strstr functions
add declarations for irccasecmp, ircncasecmp, irccasestr functions
correct use of strstr() in parse_foreach() to be strchr() instead
Index: configure.in
===================================================================
RCS file: /cvsroot/srvx/services/configure.in,v
retrieving revision 1.50
retrieving revision 1.51
diff -C2 -r1.50 -r1.51
*** configure.in 4 Jul 2002 03:46:26 -0000 1.50
--- configure.in 8 Jul 2002 15:19:30 -0000 1.51
***************
*** 42,46 ****
;;
*-linux*)
! dnl -D_GNU_SOURCE needed for strsignal() and strcasecmp()
EXTRA_DEFINE="-D_GNU_SOURCE"
;;
--- 42,46 ----
;;
*-linux*)
! dnl -D_GNU_SOURCE needed for strsignal()
EXTRA_DEFINE="-D_GNU_SOURCE"
;;
***************
*** 89,93 ****
dnl We have fallbacks in case these are missing, so just check for them.
! AC_CHECK_FUNCS(bcopy memcpy memset stricmp strcasestr strcasecmp strncasecmp strdup strerror strstr strsignal localtime_r setrlimit inet_ntoa getopt getopt_long regcomp regexec regfree,,)
dnl Check for absolutely required library functions.
--- 89,93 ----
dnl We have fallbacks in case these are missing, so just check for them.
! AC_CHECK_FUNCS(bcopy memcpy memset strdup strerror strsignal localtime_r setrlimit inet_ntoa getopt getopt_long regcomp regexec regfree,,)
dnl Check for absolutely required library functions.
|