sniper          Mon Feb 17 22:22:47 2003 EDT

  Modified files:              
    /php4/ext/standard  config.m4 
  Log:
  nice() is part of libc, use AC_CHECK_FUNCS instead
  
Index: php4/ext/standard/config.m4
diff -u php4/ext/standard/config.m4:1.56 php4/ext/standard/config.m4:1.57
--- php4/ext/standard/config.m4:1.56    Mon Feb 17 20:07:57 2003
+++ php4/ext/standard/config.m4 Mon Feb 17 22:22:47 2003
@@ -1,4 +1,4 @@
-dnl $Id: config.m4,v 1.56 2003/02/18 01:07:57 iliaa Exp $ -*- sh -*-
+dnl $Id: config.m4,v 1.57 2003/02/18 03:22:47 sniper Exp $ -*- sh -*-
 
 divert(3)dnl
 
@@ -259,7 +259,7 @@
 dnl AC_CHECK_HEADERS(getopt.h)
 dnl AC_CHECK_FUNCS(getopt_long getopt_long_only)
 
-AC_CHECK_FUNCS(glob strfmon)
+AC_CHECK_FUNCS(glob strfmon nice)
 
 if test "$PHP_SAPI" = "cgi" -o "$PHP_SAPI" = "cli" -o "$PHP_SAPI" = "embed"; then
   AC_DEFINE(ENABLE_CHROOT_FUNC, 1, [Whether to enable chroot() function])
@@ -273,11 +273,6 @@
 PHP_CHECK_FUNC(res_nsend, resolv, bind, socket)
 PHP_CHECK_FUNC(dn_expand, resolv, bind, socket)
 dnl already done PHP_CHECK_FUNC(dn_skipname, resolv, bind, socket)
-
-dnl
-dnl Check for the availability of the nice function
-dnl
-PHP_CHECK_FUNC(nice)
 
 PHP_NEW_EXTENSION(standard, array.c base64.c basic_functions.c browscap.c crc32.c 
crypt.c \
                             cyr_convert.c datetime.c dir.c dl.c dns.c exec.c file.c 
filestat.c \



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to