aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2012-06-23 11:55:13 +0200
committerAndreas Schwab2012-06-23 11:55:13 +0200
commit54e8a4185fdfac1dddf1712206cdf232fd5f03f2 (patch)
treee6405911021b9c14a2b288c412562d4ec0d5f107
parente8a022046f57aa23f605593e0ccd901da1776c5e (diff)
downloademacs-54e8a4185fdfac1dddf1712206cdf232fd5f03f2.tar.gz
emacs-54e8a4185fdfac1dddf1712206cdf232fd5f03f2.zip
* configure.in: Don't use AC_CHECK_FUNCS_ONCE, which doesn't use
the correct CFLAGS and LIBS.
-rw-r--r--ChangeLog5
-rw-r--r--configure.in10
2 files changed, 10 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index c8a763899cc..21072dd6a79 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12012-06-23 Andreas Schwab <schwab@linux-m68k.org>
2
3 * configure.in: Don't use AC_CHECK_FUNCS_ONCE, which doesn't use
4 the correct CFLAGS and LIBS.
5
12012-06-22 Paul Eggert <eggert@cs.ucla.edu> 62012-06-22 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 Support higher-resolution time stamps (Bug#9000). 8 Support higher-resolution time stamps (Bug#9000).
diff --git a/configure.in b/configure.in
index cbd52b13b0b..4c3316a0d3b 100644
--- a/configure.in
+++ b/configure.in
@@ -2660,7 +2660,7 @@ esac
2660AC_SUBST(BLESSMAIL_TARGET) 2660AC_SUBST(BLESSMAIL_TARGET)
2661 2661
2662 2662
2663AC_CHECK_FUNCS_ONCE(gethostname \ 2663AC_CHECK_FUNCS(gethostname \
2664rename closedir mkdir rmdir getrusage get_current_dir_name \ 2664rename closedir mkdir rmdir getrusage get_current_dir_name \
2665random lrand48 logb frexp fmod rint cbrt setsid \ 2665random lrand48 logb frexp fmod rint cbrt setsid \
2666strerror fpathconf select euidaccess getpagesize setlocale \ 2666strerror fpathconf select euidaccess getpagesize setlocale \
@@ -2691,10 +2691,10 @@ AC_FUNC_FSEEKO
2691AC_FUNC_GETPGRP 2691AC_FUNC_GETPGRP
2692 2692
2693# UNIX98 PTYs. 2693# UNIX98 PTYs.
2694AC_CHECK_FUNCS_ONCE(grantpt) 2694AC_CHECK_FUNCS(grantpt)
2695 2695
2696# PTY-related GNU extensions. 2696# PTY-related GNU extensions.
2697AC_CHECK_FUNCS_ONCE(getpt) 2697AC_CHECK_FUNCS(getpt)
2698 2698
2699# Check this now, so that we will NOT find the above functions in ncurses. 2699# Check this now, so that we will NOT find the above functions in ncurses.
2700# That is because we have not set up to link ncurses in lib-src. 2700# That is because we have not set up to link ncurses in lib-src.
@@ -2951,7 +2951,7 @@ AC_SUBST(KRB5LIB)
2951AC_SUBST(DESLIB) 2951AC_SUBST(DESLIB)
2952AC_SUBST(KRB4LIB) 2952AC_SUBST(KRB4LIB)
2953 2953
2954AC_CHECK_FUNCS_ONCE(tzset) 2954AC_CHECK_FUNCS(tzset)
2955AC_MSG_CHECKING(whether localtime caches TZ) 2955AC_MSG_CHECKING(whether localtime caches TZ)
2956AC_CACHE_VAL(emacs_cv_localtime_cache, 2956AC_CACHE_VAL(emacs_cv_localtime_cache,
2957[if test x$ac_cv_func_tzset = xyes; then 2957[if test x$ac_cv_func_tzset = xyes; then
@@ -3018,7 +3018,7 @@ fi
3018 3018
3019AC_FUNC_FORK 3019AC_FUNC_FORK
3020 3020
3021AC_CHECK_FUNCS_ONCE(snprintf) 3021AC_CHECK_FUNCS(snprintf)
3022 3022
3023dnl Adapted from Haible's version. 3023dnl Adapted from Haible's version.
3024AC_CACHE_CHECK([for nl_langinfo and CODESET], emacs_cv_langinfo_codeset, 3024AC_CACHE_CHECK([for nl_langinfo and CODESET], emacs_cv_langinfo_codeset,