diff options
| author | Andreas Schwab | 2012-06-23 11:55:13 +0200 |
|---|---|---|
| committer | Andreas Schwab | 2012-06-23 11:55:13 +0200 |
| commit | 54e8a4185fdfac1dddf1712206cdf232fd5f03f2 (patch) | |
| tree | e6405911021b9c14a2b288c412562d4ec0d5f107 | |
| parent | e8a022046f57aa23f605593e0ccd901da1776c5e (diff) | |
| download | emacs-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-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 10 |
2 files changed, 10 insertions, 5 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-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 | |||
| 1 | 2012-06-22 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2012-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 | |||
| 2660 | AC_SUBST(BLESSMAIL_TARGET) | 2660 | AC_SUBST(BLESSMAIL_TARGET) |
| 2661 | 2661 | ||
| 2662 | 2662 | ||
| 2663 | AC_CHECK_FUNCS_ONCE(gethostname \ | 2663 | AC_CHECK_FUNCS(gethostname \ |
| 2664 | rename closedir mkdir rmdir getrusage get_current_dir_name \ | 2664 | rename closedir mkdir rmdir getrusage get_current_dir_name \ |
| 2665 | random lrand48 logb frexp fmod rint cbrt setsid \ | 2665 | random lrand48 logb frexp fmod rint cbrt setsid \ |
| 2666 | strerror fpathconf select euidaccess getpagesize setlocale \ | 2666 | strerror fpathconf select euidaccess getpagesize setlocale \ |
| @@ -2691,10 +2691,10 @@ AC_FUNC_FSEEKO | |||
| 2691 | AC_FUNC_GETPGRP | 2691 | AC_FUNC_GETPGRP |
| 2692 | 2692 | ||
| 2693 | # UNIX98 PTYs. | 2693 | # UNIX98 PTYs. |
| 2694 | AC_CHECK_FUNCS_ONCE(grantpt) | 2694 | AC_CHECK_FUNCS(grantpt) |
| 2695 | 2695 | ||
| 2696 | # PTY-related GNU extensions. | 2696 | # PTY-related GNU extensions. |
| 2697 | AC_CHECK_FUNCS_ONCE(getpt) | 2697 | AC_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) | |||
| 2951 | AC_SUBST(DESLIB) | 2951 | AC_SUBST(DESLIB) |
| 2952 | AC_SUBST(KRB4LIB) | 2952 | AC_SUBST(KRB4LIB) |
| 2953 | 2953 | ||
| 2954 | AC_CHECK_FUNCS_ONCE(tzset) | 2954 | AC_CHECK_FUNCS(tzset) |
| 2955 | AC_MSG_CHECKING(whether localtime caches TZ) | 2955 | AC_MSG_CHECKING(whether localtime caches TZ) |
| 2956 | AC_CACHE_VAL(emacs_cv_localtime_cache, | 2956 | AC_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 | ||
| 3019 | AC_FUNC_FORK | 3019 | AC_FUNC_FORK |
| 3020 | 3020 | ||
| 3021 | AC_CHECK_FUNCS_ONCE(snprintf) | 3021 | AC_CHECK_FUNCS(snprintf) |
| 3022 | 3022 | ||
| 3023 | dnl Adapted from Haible's version. | 3023 | dnl Adapted from Haible's version. |
| 3024 | AC_CACHE_CHECK([for nl_langinfo and CODESET], emacs_cv_langinfo_codeset, | 3024 | AC_CACHE_CHECK([for nl_langinfo and CODESET], emacs_cv_langinfo_codeset, |