aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Djärv2003-06-26 21:09:11 +0000
committerJan Djärv2003-06-26 21:09:11 +0000
commitcffcede78a72f85e00dd6dea1507eed6f2f14351 (patch)
treec2b7ae64604dc39306fd5e2dfc145dbf71f9157c
parentd54ae3d8465023d40218ebd3b52bf29121d4df2c (diff)
downloademacs-cffcede78a72f85e00dd6dea1507eed6f2f14351.tar.gz
emacs-cffcede78a72f85e00dd6dea1507eed6f2f14351.zip
configure: Regenerate
-rw-r--r--ChangeLog4
-rwxr-xr-xconfigure63
2 files changed, 64 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 54a2e5067bf..14a6a418f46 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12003-06-26 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
2
3 * configure: Regenerate.
4
12003-06-23 Dave Love <fx@gnu.org> 52003-06-23 Dave Love <fx@gnu.org>
2 6
3 * configure.in: Check for sys/_mbstate_t.h. Test 7 * configure.in: Check for sys/_mbstate_t.h. Test
diff --git a/configure b/configure
index 9927b159748..9c3d5403a84 100755
--- a/configure
+++ b/configure
@@ -3397,12 +3397,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3397 (exit $ac_status); }; }; then 3397 (exit $ac_status); }; }; then
3398 for ac_declaration in \ 3398 for ac_declaration in \
3399 ''\ 3399 ''\
3400 '#include <stdlib.h>' \
3400 'extern "C" void std::exit (int) throw (); using std::exit;' \ 3401 'extern "C" void std::exit (int) throw (); using std::exit;' \
3401 'extern "C" void std::exit (int); using std::exit;' \ 3402 'extern "C" void std::exit (int); using std::exit;' \
3402 'extern "C" void exit (int) throw ();' \ 3403 'extern "C" void exit (int) throw ();' \
3403 'extern "C" void exit (int);' \ 3404 'extern "C" void exit (int);' \
3404 'void exit (int);' \ 3405 'void exit (int);'
3405 '#include <stdlib.h>'
3406do 3406do
3407 cat >conftest.$ac_ext <<_ACEOF 3407 cat >conftest.$ac_ext <<_ACEOF
3408#line $LINENO "configure" 3408#line $LINENO "configure"
@@ -5032,10 +5032,11 @@ fi
5032 5032
5033 5033
5034 5034
5035
5035for ac_header in sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \ 5036for ac_header in sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \
5036 linux/version.h sys/systeminfo.h termios.h limits.h string.h stdlib.h \ 5037 linux/version.h sys/systeminfo.h termios.h limits.h string.h stdlib.h \
5037 termcap.h stdio_ext.h fcntl.h strings.h coff.h pty.h sys/mman.h \ 5038 termcap.h stdio_ext.h fcntl.h strings.h coff.h pty.h sys/mman.h \
5038 sys/param.h sys/vlimit.h sys/resource.h locale.h 5039 sys/param.h sys/vlimit.h sys/resource.h locale.h sys/_mbstate_t.h
5039do 5040do
5040as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 5041as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
5041if eval "test \"\${$as_ac_Header+set}\" = set"; then 5042if eval "test \"\${$as_ac_Header+set}\" = set"; then
@@ -8893,6 +8894,62 @@ cat >>confdefs.h <<\_ACEOF
8893#define USE_XIM 1 8894#define USE_XIM 1
8894_ACEOF 8895_ACEOF
8895 8896
8897 cat >conftest.$ac_ext <<_ACEOF
8898#line $LINENO "configure"
8899/* confdefs.h. */
8900_ACEOF
8901cat confdefs.h >>conftest.$ac_ext
8902cat >>conftest.$ac_ext <<_ACEOF
8903/* end confdefs.h. */
8904
8905#include <X11/Xlib.h>
8906#include <X11/Xresource.h>
8907int
8908main ()
8909{
8910Display *display;
8911XrmDatabase db;
8912char *res_name;
8913char *res_class;
8914XIMProc callback;
8915XPointer *client_data;
8916(void)XRegisterIMInstantiateCallback(display, db, res_name, res_class, callback,
8917 client_data);
8918 ;
8919 return 0;
8920}
8921_ACEOF
8922rm -f conftest.$ac_objext
8923if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8924 (eval $ac_compile) 2>&5
8925 ac_status=$?
8926 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8927 (exit $ac_status); } &&
8928 { ac_try='test -s conftest.$ac_objext'
8929 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8930 (eval $ac_try) 2>&5
8931 ac_status=$?
8932 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8933 (exit $ac_status); }; }; then
8934 emacs_cv_arg6_star=yes
8935else
8936 echo "$as_me: failed program was:" >&5
8937sed 's/^/| /' conftest.$ac_ext >&5
8938
8939fi
8940rm -f conftest.$ac_objext conftest.$ac_ext
8941
8942 if test "$emacs_cv_arg6_star" = yes; then
8943 cat >>confdefs.h <<\_ACEOF
8944#define XRegisterIMInstantiateCallback_arg6 XPointer*
8945_ACEOF
8946
8947 else
8948 cat >>confdefs.h <<\_ACEOF
8949#define XRegisterIMInstantiateCallback_arg6 XPointer
8950_ACEOF
8951
8952 fi
8896fi 8953fi
8897 8954
8898### Use -lXpm if available, unless `--with-xpm=no'. 8955### Use -lXpm if available, unless `--with-xpm=no'.