]> granicus.if.org Git - python/commitdiff
Add checks for setlocale() and <locale.h>
authorGuido van Rossum <guido@python.org>
Wed, 8 Oct 1997 22:47:52 +0000 (22:47 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 8 Oct 1997 22:47:52 +0000 (22:47 +0000)
config.h.in
configure
configure.in

index 15c060b5c66254976aebafa172d0bdaec40bb764..382c46de5b0156210a5a4f232c363bbac929143d 100644 (file)
 /* Define if you have the setgid function.  */
 #undef HAVE_SETGID
 
+/* Define if you have the setlocale function.  */
+#undef HAVE_SETLOCALE
+
 /* Define if you have the setpgid function.  */
 #undef HAVE_SETPGID
 
 /* Define if you have the <limits.h> header file.  */
 #undef HAVE_LIMITS_H
 
+/* Define if you have the <locale.h> header file.  */
+#undef HAVE_LOCALE_H
+
 /* Define if you have the <ncurses.h> header file.  */
 #undef HAVE_NCURSES_H
 
index 18beffbad0ca2603cb3eb41f8a87bd6c99c4eb20..151da7200f5bf3bd695cddb654130ea643595c1d 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 
-# From configure.in Revision: 1.66 
+# From configure.in Revision: 1.67 
 
 # Guess values for system-dependent variables and create Makefiles.
 # Generated automatically using autoconf version 2.12 
@@ -1234,7 +1234,7 @@ EOF
 
 fi
 
-for ac_hdr in dlfcn.h fcntl.h limits.h ncurses.h pthread.h \
+for ac_hdr in dlfcn.h fcntl.h limits.h locale.h ncurses.h pthread.h \
 signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h \
 sys/audioio.h sys/file.h sys/lock.h \
 sys/param.h sys/select.h sys/time.h sys/times.h \
@@ -2483,7 +2483,7 @@ fi
 for ac_func in alarm chown clock dlopen execv flock fork ftime ftruncate \
  gethostname_r getpeername getpgrp getpid getpwent gettimeofday getwd \
  kill link lstat mkfifo nice pause plock putenv readlink \
- select setgid setuid setsid setpgid setpgrp setvbuf \
+ select setgid setlocale setuid setsid setpgid setpgrp setvbuf \
  sigaction siginterrupt sigrelse strftime symlink \
  tcgetpgrp tcsetpgrp times truncate uname waitpid
 do
index 640969ed018417f8d29ff2ac1b9d4106e120fcde..2343f74addd013a7efbe126315a001ebb26e561a 100644 (file)
@@ -167,7 +167,7 @@ AC_MSG_RESULT($cpp_type)
 
 # checks for header files
 AC_HEADER_STDC
-AC_CHECK_HEADERS(dlfcn.h fcntl.h limits.h ncurses.h pthread.h \
+AC_CHECK_HEADERS(dlfcn.h fcntl.h limits.h locale.h ncurses.h pthread.h \
 signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h \
 sys/audioio.h sys/file.h sys/lock.h \
 sys/param.h sys/select.h sys/time.h sys/times.h \
@@ -382,7 +382,7 @@ LIBS="$LIBS -ldl -ldld"], AC_MSG_RESULT(no))
 AC_CHECK_FUNCS(alarm chown clock dlopen execv flock fork ftime ftruncate \
  gethostname_r getpeername getpgrp getpid getpwent gettimeofday getwd \
  kill link lstat mkfifo nice pause plock putenv readlink \
- select setgid setuid setsid setpgid setpgrp setvbuf \
+ select setgid setlocale setuid setsid setpgid setpgrp setvbuf \
  sigaction siginterrupt sigrelse strftime symlink \
  tcgetpgrp tcsetpgrp times truncate uname waitpid)
 AC_REPLACE_FUNCS(dup2 getcwd strdup strerror memmove)