emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108696: * configure.in: Don't use AC


From: Andreas Schwab
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108696: * configure.in: Don't use AC_CHECK_FUNCS_ONCE, which doesn't use
Date: Sat, 23 Jun 2012 11:55:13 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108696
committer: Andreas Schwab <address@hidden>
branch nick: emacs
timestamp: Sat 2012-06-23 11:55:13 +0200
message:
  * configure.in: Don't use AC_CHECK_FUNCS_ONCE, which doesn't use
  the correct CFLAGS and LIBS.
modified:
  ChangeLog
  configure.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2012-06-22 21:17:42 +0000
+++ b/ChangeLog 2012-06-23 09:55:13 +0000
@@ -1,3 +1,8 @@
+2012-06-23  Andreas Schwab  <address@hidden>
+
+       * configure.in: Don't use AC_CHECK_FUNCS_ONCE, which doesn't use
+       the correct CFLAGS and LIBS.
+
 2012-06-22  Paul Eggert  <address@hidden>
 
        Support higher-resolution time stamps (Bug#9000).

=== modified file 'configure.in'
--- a/configure.in      2012-06-22 21:17:42 +0000
+++ b/configure.in      2012-06-23 09:55:13 +0000
@@ -2660,7 +2660,7 @@
 AC_SUBST(BLESSMAIL_TARGET)
 
 
-AC_CHECK_FUNCS_ONCE(gethostname \
+AC_CHECK_FUNCS(gethostname \
 rename closedir mkdir rmdir getrusage get_current_dir_name \
 random lrand48 logb frexp fmod rint cbrt setsid \
 strerror fpathconf select euidaccess getpagesize setlocale \
@@ -2691,10 +2691,10 @@
 AC_FUNC_GETPGRP
 
 # UNIX98 PTYs.
-AC_CHECK_FUNCS_ONCE(grantpt)
+AC_CHECK_FUNCS(grantpt)
 
 # PTY-related GNU extensions.
-AC_CHECK_FUNCS_ONCE(getpt)
+AC_CHECK_FUNCS(getpt)
 
 # Check this now, so that we will NOT find the above functions in ncurses.
 # That is because we have not set up to link ncurses in lib-src.
@@ -2951,7 +2951,7 @@
 AC_SUBST(DESLIB)
 AC_SUBST(KRB4LIB)
 
-AC_CHECK_FUNCS_ONCE(tzset)
+AC_CHECK_FUNCS(tzset)
 AC_MSG_CHECKING(whether localtime caches TZ)
 AC_CACHE_VAL(emacs_cv_localtime_cache,
 [if test x$ac_cv_func_tzset = xyes; then
@@ -3018,7 +3018,7 @@
 
 AC_FUNC_FORK
 
-AC_CHECK_FUNCS_ONCE(snprintf)
+AC_CHECK_FUNCS(snprintf)
 
 dnl Adapted from Haible's version.
 AC_CACHE_CHECK([for nl_langinfo and CODESET], emacs_cv_langinfo_codeset,


reply via email to

[Prev in Thread] Current Thread [Next in Thread]