Commit 05c30f22 by Kaveh R. Ghazi Committed by Kaveh Ghazi

configure.in (AC_CHECK_FUNCS): Don't make multiple calls.

	* configure.in (AC_CHECK_FUNCS): Don't make multiple calls.
	* configure: Regenerate.

From-SVN: r66467
parent 85819f7c
2003-05-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* configure.in (AC_CHECK_FUNCS): Don't make multiple calls.
* configure: Regenerate.
2003-05-03 Carlo Wood <carlo@alinoe.com> 2003-05-03 Carlo Wood <carlo@alinoe.com>
* cp-demangle.c: Fix typo in "char_traints" string-literal. * cp-demangle.c: Fix typo in "char_traints" string-literal.
......
...@@ -217,15 +217,15 @@ checkfuncs="$checkfuncs getsysinfo table sysctl" ...@@ -217,15 +217,15 @@ checkfuncs="$checkfuncs getsysinfo table sysctl"
# These are neither executed nor required, but they help keep # These are neither executed nor required, but they help keep
# autoheader happy without adding a bunch of text to acconfig.h. # autoheader happy without adding a bunch of text to acconfig.h.
if test "x" = "y"; then if test "x" = "y"; then
AC_CHECK_FUNCS(asprintf atexit basename bcmp bcopy bsearch bzero calloc clock) AC_CHECK_FUNCS(asprintf atexit basename bcmp bcopy bsearch bzero calloc clock \
AC_CHECK_FUNCS(getcwd getpagesize index insque mkstemps memchr memcmp memcpy) getcwd getpagesize index insque mkstemps memchr memcmp memcpy \
AC_CHECK_FUNCS(memmove mempcpy memset putenv random rename rindex sigsetmask) memmove mempcpy memset putenv random rename rindex sigsetmask \
AC_CHECK_FUNCS(strcasecmp setenv stpcpy stpncpy strchr strdup strncasecmp strrchr strstr) strcasecmp setenv stpcpy stpncpy strchr strdup strncasecmp strrchr strstr \
AC_CHECK_FUNCS(strtod strtol strtoul tmpnam vasprintf vfprintf vprintf) strtod strtol strtoul tmpnam vasprintf vfprintf vprintf \
AC_CHECK_FUNCS(vsprintf waitpid getrusage on_exit psignal strerror strsignal) vsprintf waitpid getrusage on_exit psignal strerror strsignal \
AC_CHECK_FUNCS(sysconf times sbrk gettimeofday ffs snprintf vsnprintf) sysconf times sbrk gettimeofday ffs snprintf vsnprintf \
AC_CHECK_FUNCS(pstat_getstatic pstat_getdynamic sysmp getsysinfo table sysctl) pstat_getstatic pstat_getdynamic sysmp getsysinfo table sysctl \
AC_CHECK_FUNCS(realpath canonicalize_file_name) realpath canonicalize_file_name)
AC_DEFINE(HAVE_SYS_ERRLIST, 1, [Define if you have the sys_errlist variable.]) AC_DEFINE(HAVE_SYS_ERRLIST, 1, [Define if you have the sys_errlist variable.])
AC_DEFINE(HAVE_SYS_NERR, 1, [Define if you have the sys_nerr variable.]) AC_DEFINE(HAVE_SYS_NERR, 1, [Define if you have the sys_nerr variable.])
AC_DEFINE(HAVE_SYS_SIGLIST, 1, [Define if you have the sys_siglist variable.]) AC_DEFINE(HAVE_SYS_SIGLIST, 1, [Define if you have the sys_siglist variable.])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment