diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-07-28 09:27:30 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-07-28 09:27:30 -0700 |
commit | 70c2e72ae5368e39277de78a414c9d42292886c5 (patch) | |
tree | dc2f35bb271058a7dc728ef970da93db9a48b2ff /configure.in | |
parent | f13cae31f1beecc4f3fd39e4aa4bcb9fc8d9e7c1 (diff) | |
parent | 58e9b49a90338bf979b86951b6d85e60308ecc3e (diff) | |
download | emacs-70c2e72ae5368e39277de78a414c9d42292886c5.tar.gz |
Merge from trunk.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/configure.in b/configure.in index 1952dc90895..fe77a40ac27 100644 --- a/configure.in +++ b/configure.in @@ -1094,7 +1094,7 @@ if test "x$crt_files" != x; then dnl first there is no point asking gcc. crt_gcc=no - test -e $CRT_DIR/$file || crt_missing="$crt_missing $file" + test -e $CRT_DIR/$file || crt_missing="$crt_missing $file" done # $crt_files test "x$crt_missing" = x || \ @@ -1214,7 +1214,7 @@ fi dnl checks for header files AC_CHECK_HEADERS(sys/select.h sys/time.h unistd.h utime.h \ - linux/version.h sys/systeminfo.h limits.h \ + linux/version.h sys/systeminfo.h \ stdio_ext.h fcntl.h coff.h pty.h sys/mman.h \ sys/vlimit.h sys/resource.h locale.h sys/_mbstate_t.h \ sys/utsname.h pwd.h utmp.h dirent.h util.h) @@ -1233,7 +1233,6 @@ fi dnl On Solaris 8 there's a compilation warning for term.h because dnl it doesn't define `bool'. AC_CHECK_HEADERS(term.h, , , -) -AC_HEADER_STDC AC_HEADER_TIME AC_CHECK_DECLS([sys_siglist]) if test $ac_cv_have_decl_sys_siglist != yes; then @@ -2705,10 +2704,10 @@ rename closedir mkdir rmdir sysinfo getrusage get_current_dir_name \ random lrand48 logb frexp fmod rint cbrt ftime setsid \ strerror fpathconf select euidaccess getpagesize tzset setlocale \ utimes getrlimit setrlimit setpgid getcwd getwd shutdown getaddrinfo \ -__fpending mblen mbrlen mbsinit strsignal setitimer ualarm strchr strrchr \ +__fpending mblen mbrlen mbsinit strsignal setitimer ualarm \ sendto recvfrom getsockopt setsockopt getsockname getpeername \ -gai_strerror mkstemp getline getdelim mremap memmove fsync sync \ -memset memcmp difftime memcpy mempcpy mblen mbrlen posix_memalign \ +gai_strerror mkstemp getline getdelim mremap fsync sync \ +difftime mempcpy mblen mbrlen posix_memalign \ cfmakeraw cfsetspeed isnan copysign __executable_start) dnl Cannot use AC_CHECK_FUNCS @@ -3107,8 +3106,6 @@ dnl and macros for terminal control.]) dnl AC_DEFINE(HAVE_TCATTR, 1, [Define to 1 if you have tcgetattr and tcsetattr.]) dnl fi -dnl Fixme: Use AC_FUNC_MEMCMP since memcmp is used. (Needs libobj replacement.) - # Set up the CFLAGS for real compilation, so we can substitute it. CFLAGS="$REAL_CFLAGS" CPPFLAGS="$REAL_CPPFLAGS" @@ -3586,14 +3583,6 @@ AH_BOTTOM([ #include <string.h> #include <stdlib.h> -#ifndef HAVE_STRCHR -#define strchr(a, b) index (a, b) -#endif - -#ifndef HAVE_STRRCHR -#define strrchr(a, b) rindex (a, b) -#endif - #if defined __GNUC__ && (__GNUC__ > 2 \ || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5)) #define NO_RETURN __attribute__ ((__noreturn__)) |