diff options
| author | Glenn Morris | 2012-10-08 06:17:36 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-10-08 06:17:36 -0400 |
| commit | 5c0255d90bf07b0fc59a7fe74f35f4b704ebbab4 (patch) | |
| tree | 3eb597845c23486be6878d400fb6f55ea14e1b81 | |
| parent | 8ee4c6ce7699b6e6f5d52a4cd5066dc167f6471b (diff) | |
| download | emacs-5c0255d90bf07b0fc59a7fe74f35f4b704ebbab4.tar.gz emacs-5c0255d90bf07b0fc59a7fe74f35f4b704ebbab4.zip | |
Auto-commit of generated files.
| -rw-r--r-- | autogen/Makefile.in | 2 | ||||
| -rw-r--r-- | autogen/config.in | 3 | ||||
| -rwxr-xr-x | autogen/configure | 160 |
3 files changed, 160 insertions, 5 deletions
diff --git a/autogen/Makefile.in b/autogen/Makefile.in index 14cb3c9c9c1..db60a006a21 100644 --- a/autogen/Makefile.in +++ b/autogen/Makefile.in | |||
| @@ -753,6 +753,8 @@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ | |||
| 753 | UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ | 753 | UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ |
| 754 | VERSION = @VERSION@ | 754 | VERSION = @VERSION@ |
| 755 | VMLIMIT_OBJ = @VMLIMIT_OBJ@ | 755 | VMLIMIT_OBJ = @VMLIMIT_OBJ@ |
| 756 | W32_LIBS = @W32_LIBS@ | ||
| 757 | W32_OBJ = @W32_OBJ@ | ||
| 756 | WARN_CFLAGS = @WARN_CFLAGS@ | 758 | WARN_CFLAGS = @WARN_CFLAGS@ |
| 757 | WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ | 759 | WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ |
| 758 | WERROR_CFLAGS = @WERROR_CFLAGS@ | 760 | WERROR_CFLAGS = @WERROR_CFLAGS@ |
diff --git a/autogen/config.in b/autogen/config.in index 8a8799db1cf..7aaf6650fa0 100644 --- a/autogen/config.in +++ b/autogen/config.in | |||
| @@ -692,6 +692,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 692 | Mac OS X. */ | 692 | Mac OS X. */ |
| 693 | #undef HAVE_NS | 693 | #undef HAVE_NS |
| 694 | 694 | ||
| 695 | /* Define to use native Windows GUI. */ | ||
| 696 | #undef HAVE_NTGUI | ||
| 697 | |||
| 695 | /* Define to 1 if libotf has OTF_get_variation_glyphs. */ | 698 | /* Define to 1 if libotf has OTF_get_variation_glyphs. */ |
| 696 | #undef HAVE_OTF_GET_VARIATION_GLYPHS | 699 | #undef HAVE_OTF_GET_VARIATION_GLYPHS |
| 697 | 700 | ||
diff --git a/autogen/configure b/autogen/configure index 623d93bb39c..163bbaf8719 100755 --- a/autogen/configure +++ b/autogen/configure | |||
| @@ -1204,6 +1204,8 @@ LIB_PTHREAD | |||
| 1204 | VMLIMIT_OBJ | 1204 | VMLIMIT_OBJ |
| 1205 | GMALLOC_OBJ | 1205 | GMALLOC_OBJ |
| 1206 | HAVE_XSERVER | 1206 | HAVE_XSERVER |
| 1207 | W32_LIBS | ||
| 1208 | W32_OBJ | ||
| 1207 | LIB_STANDARD | 1209 | LIB_STANDARD |
| 1208 | NS_OBJC_OBJ | 1210 | NS_OBJC_OBJ |
| 1209 | NS_OBJ | 1211 | NS_OBJ |
| @@ -1362,6 +1364,7 @@ with_toolkit_scroll_bars | |||
| 1362 | with_xaw3d | 1364 | with_xaw3d |
| 1363 | with_xim | 1365 | with_xim |
| 1364 | with_ns | 1366 | with_ns |
| 1367 | with_w32 | ||
| 1365 | with_gpm | 1368 | with_gpm |
| 1366 | with_dbus | 1369 | with_dbus |
| 1367 | with_gconf | 1370 | with_gconf |
| @@ -2081,6 +2084,7 @@ Optional Packages: | |||
| 2081 | --without-xaw3d don't use Xaw3d | 2084 | --without-xaw3d don't use Xaw3d |
| 2082 | --without-xim don't use X11 XIM | 2085 | --without-xim don't use X11 XIM |
| 2083 | --with-ns use NeXTstep (Cocoa or GNUstep) windowing system | 2086 | --with-ns use NeXTstep (Cocoa or GNUstep) windowing system |
| 2087 | --with-w32 use native Windows GUI | ||
| 2084 | --without-gpm don't use -lgpm for mouse support on a GNU/Linux | 2088 | --without-gpm don't use -lgpm for mouse support on a GNU/Linux |
| 2085 | console | 2089 | console |
| 2086 | --without-dbus don't compile with D-Bus support | 2090 | --without-dbus don't compile with D-Bus support |
| @@ -4093,6 +4097,14 @@ else | |||
| 4093 | fi | 4097 | fi |
| 4094 | 4098 | ||
| 4095 | 4099 | ||
| 4100 | # Check whether --with-w32 was given. | ||
| 4101 | if test "${with_w32+set}" = set; then : | ||
| 4102 | withval=$with_w32; | ||
| 4103 | else | ||
| 4104 | with_w32=no | ||
| 4105 | fi | ||
| 4106 | |||
| 4107 | |||
| 4096 | 4108 | ||
| 4097 | # Check whether --with-gpm was given. | 4109 | # Check whether --with-gpm was given. |
| 4098 | if test "${with_gpm+set}" = set; then : | 4110 | if test "${with_gpm+set}" = set; then : |
| @@ -9568,6 +9580,7 @@ $as_echo "#define NS_HAVE_NSINTEGER 1" >>confdefs.h | |||
| 9568 | fi | 9580 | fi |
| 9569 | 9581 | ||
| 9570 | 9582 | ||
| 9583 | |||
| 9571 | INSTALL_ARCH_INDEP_EXTRA=install-etc | 9584 | INSTALL_ARCH_INDEP_EXTRA=install-etc |
| 9572 | ns_self_contained=no | 9585 | ns_self_contained=no |
| 9573 | NS_OBJ= | 9586 | NS_OBJ= |
| @@ -9603,6 +9616,38 @@ CPPFLAGS="$tmp_CPPFLAGS" | |||
| 9603 | 9616 | ||
| 9604 | 9617 | ||
| 9605 | 9618 | ||
| 9619 | HAVE_W32=no | ||
| 9620 | W32_OBJ= | ||
| 9621 | W32_LIBS= | ||
| 9622 | if test "${with_w32}" != no; then | ||
| 9623 | if test "${opsys}" != "cygwin"; then | ||
| 9624 | as_fn_error "Using w32 with an autotools build is only supported for Cygwin." "$LINENO" 5 | ||
| 9625 | fi | ||
| 9626 | ac_fn_c_check_header_mongrel "$LINENO" "windows.h" "ac_cv_header_windows_h" "$ac_includes_default" | ||
| 9627 | if test "x$ac_cv_header_windows_h" = x""yes; then : | ||
| 9628 | HAVE_W32=yes | ||
| 9629 | else | ||
| 9630 | as_fn_error "\`--with-w32' was specified, but windows.h | ||
| 9631 | cannot be found." "$LINENO" 5 | ||
| 9632 | fi | ||
| 9633 | |||
| 9634 | |||
| 9635 | |||
| 9636 | $as_echo "#define HAVE_NTGUI 1" >>confdefs.h | ||
| 9637 | |||
| 9638 | W32_OBJ="w32fns.o w32menu.o w32reg.o w32font.o w32term.o" | ||
| 9639 | W32_OBJ="$W32_OBJ w32xfns.o w32select.o w32uniscribe.o" | ||
| 9640 | W32_LIBS="$W32_LIBS -lkernel32 -luser32 -lgdi32 -lole32 -lcomdlg32" | ||
| 9641 | W32_LIBS="$W32_LIBS -lusp10 -lcomctl32 -lwinspool" | ||
| 9642 | fi | ||
| 9643 | |||
| 9644 | |||
| 9645 | |||
| 9646 | if test "${HAVE_W32}" = "yes"; then | ||
| 9647 | window_system=w32 | ||
| 9648 | with_xft=no | ||
| 9649 | fi | ||
| 9650 | |||
| 9606 | ## $window_system is now set to the window system we will | 9651 | ## $window_system is now set to the window system we will |
| 9607 | ## ultimately use. | 9652 | ## ultimately use. |
| 9608 | 9653 | ||
| @@ -9635,6 +9680,9 @@ case "${window_system}" in | |||
| 9635 | nextstep ) | 9680 | nextstep ) |
| 9636 | term_header=nsterm.h | 9681 | term_header=nsterm.h |
| 9637 | ;; | 9682 | ;; |
| 9683 | w32 ) | ||
| 9684 | term_header=w32term.h | ||
| 9685 | ;; | ||
| 9638 | esac | 9686 | esac |
| 9639 | 9687 | ||
| 9640 | if test -n "${term_header}"; then | 9688 | if test -n "${term_header}"; then |
| @@ -11701,6 +11749,10 @@ if test "${with_toolkit_scroll_bars}" != "no"; then | |||
| 11701 | $as_echo "#define USE_TOOLKIT_SCROLL_BARS 1" >>confdefs.h | 11749 | $as_echo "#define USE_TOOLKIT_SCROLL_BARS 1" >>confdefs.h |
| 11702 | 11750 | ||
| 11703 | USE_TOOLKIT_SCROLL_BARS=yes | 11751 | USE_TOOLKIT_SCROLL_BARS=yes |
| 11752 | elif test "${HAVE_W32}" = "yes"; then | ||
| 11753 | $as_echo "#define USE_TOOLKIT_SCROLL_BARS 1" >>confdefs.h | ||
| 11754 | |||
| 11755 | USE_TOOLKIT_SCROLL_BARS=yes | ||
| 11704 | fi | 11756 | fi |
| 11705 | fi | 11757 | fi |
| 11706 | 11758 | ||
| @@ -12262,6 +12314,99 @@ fi | |||
| 12262 | ### Use -lXpm if available, unless `--with-xpm=no'. | 12314 | ### Use -lXpm if available, unless `--with-xpm=no'. |
| 12263 | HAVE_XPM=no | 12315 | HAVE_XPM=no |
| 12264 | LIBXPM= | 12316 | LIBXPM= |
| 12317 | |||
| 12318 | if test "${HAVE_W32}" = "yes"; then | ||
| 12319 | if test "${with_xpm}" != "no"; then | ||
| 12320 | SAVE_CPPFLAGS="$CPPFLAGS" | ||
| 12321 | SAVE_LDFLAGS="$LDFLAGS" | ||
| 12322 | CPPFLAGS="$CPPFLAGS -I/usr/include/noX" | ||
| 12323 | LDFLAGS="$LDFLAGS -L/usr/lib/noX" | ||
| 12324 | ac_fn_c_check_header_mongrel "$LINENO" "X11/xpm.h" "ac_cv_header_X11_xpm_h" "$ac_includes_default" | ||
| 12325 | if test "x$ac_cv_header_X11_xpm_h" = x""yes; then : | ||
| 12326 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpmReadFileToImage in -lXpm" >&5 | ||
| 12327 | $as_echo_n "checking for XpmReadFileToImage in -lXpm... " >&6; } | ||
| 12328 | if test "${ac_cv_lib_Xpm_XpmReadFileToImage+set}" = set; then : | ||
| 12329 | $as_echo_n "(cached) " >&6 | ||
| 12330 | else | ||
| 12331 | ac_check_lib_save_LIBS=$LIBS | ||
| 12332 | LIBS="-lXpm $LIBS" | ||
| 12333 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | ||
| 12334 | /* end confdefs.h. */ | ||
| 12335 | |||
| 12336 | /* Override any GCC internal prototype to avoid an error. | ||
| 12337 | Use char because int might match the return type of a GCC | ||
| 12338 | builtin and then its argument prototype would still apply. */ | ||
| 12339 | #ifdef __cplusplus | ||
| 12340 | extern "C" | ||
| 12341 | #endif | ||
| 12342 | char XpmReadFileToImage (); | ||
| 12343 | int | ||
| 12344 | main () | ||
| 12345 | { | ||
| 12346 | return XpmReadFileToImage (); | ||
| 12347 | ; | ||
| 12348 | return 0; | ||
| 12349 | } | ||
| 12350 | _ACEOF | ||
| 12351 | if ac_fn_c_try_link "$LINENO"; then : | ||
| 12352 | ac_cv_lib_Xpm_XpmReadFileToImage=yes | ||
| 12353 | else | ||
| 12354 | ac_cv_lib_Xpm_XpmReadFileToImage=no | ||
| 12355 | fi | ||
| 12356 | rm -f core conftest.err conftest.$ac_objext \ | ||
| 12357 | conftest$ac_exeext conftest.$ac_ext | ||
| 12358 | LIBS=$ac_check_lib_save_LIBS | ||
| 12359 | fi | ||
| 12360 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xpm_XpmReadFileToImage" >&5 | ||
| 12361 | $as_echo "$ac_cv_lib_Xpm_XpmReadFileToImage" >&6; } | ||
| 12362 | if test "x$ac_cv_lib_Xpm_XpmReadFileToImage" = x""yes; then : | ||
| 12363 | HAVE_XPM=yes | ||
| 12364 | fi | ||
| 12365 | |||
| 12366 | fi | ||
| 12367 | |||
| 12368 | |||
| 12369 | if test "${HAVE_XPM}" = "yes"; then | ||
| 12370 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpmReturnAllocPixels preprocessor define" >&5 | ||
| 12371 | $as_echo_n "checking for XpmReturnAllocPixels preprocessor define... " >&6; } | ||
| 12372 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | ||
| 12373 | /* end confdefs.h. */ | ||
| 12374 | #include "X11/xpm.h" | ||
| 12375 | #ifndef XpmReturnAllocPixels | ||
| 12376 | no_return_alloc_pixels | ||
| 12377 | #endif | ||
| 12378 | |||
| 12379 | _ACEOF | ||
| 12380 | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | | ||
| 12381 | $EGREP "no_return_alloc_pixels" >/dev/null 2>&1; then : | ||
| 12382 | HAVE_XPM=no | ||
| 12383 | else | ||
| 12384 | HAVE_XPM=yes | ||
| 12385 | fi | ||
| 12386 | rm -f conftest* | ||
| 12387 | |||
| 12388 | |||
| 12389 | if test "${HAVE_XPM}" = "yes"; then | ||
| 12390 | REAL_CPPFLAGS="$REAL_CPPFLAGS -I/usr/include/noX" | ||
| 12391 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | ||
| 12392 | $as_echo "yes" >&6; } | ||
| 12393 | else | ||
| 12394 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | ||
| 12395 | $as_echo "no" >&6; } | ||
| 12396 | CPPFLAGS="$SAVE_CPPFLAGS" | ||
| 12397 | LDFLAGS="$SAVE_LDFLAGS" | ||
| 12398 | fi | ||
| 12399 | fi | ||
| 12400 | fi | ||
| 12401 | |||
| 12402 | if test "${HAVE_XPM}" = "yes"; then | ||
| 12403 | |||
| 12404 | $as_echo "#define HAVE_XPM 1" >>confdefs.h | ||
| 12405 | |||
| 12406 | LIBXPM=-lXpm | ||
| 12407 | fi | ||
| 12408 | fi | ||
| 12409 | |||
| 12265 | if test "${HAVE_X11}" = "yes"; then | 12410 | if test "${HAVE_X11}" = "yes"; then |
| 12266 | if test "${with_xpm}" != "no"; then | 12411 | if test "${with_xpm}" != "no"; then |
| 12267 | ac_fn_c_check_header_mongrel "$LINENO" "X11/xpm.h" "ac_cv_header_X11_xpm_h" "$ac_includes_default" | 12412 | ac_fn_c_check_header_mongrel "$LINENO" "X11/xpm.h" "ac_cv_header_X11_xpm_h" "$ac_includes_default" |
| @@ -12348,10 +12493,11 @@ $as_echo "#define HAVE_XPM 1" >>confdefs.h | |||
| 12348 | fi | 12493 | fi |
| 12349 | 12494 | ||
| 12350 | 12495 | ||
| 12496 | |||
| 12351 | ### Use -ljpeg if available, unless `--with-jpeg=no'. | 12497 | ### Use -ljpeg if available, unless `--with-jpeg=no'. |
| 12352 | HAVE_JPEG=no | 12498 | HAVE_JPEG=no |
| 12353 | LIBJPEG= | 12499 | LIBJPEG= |
| 12354 | if test "${HAVE_X11}" = "yes"; then | 12500 | if test "${HAVE_X11}" = "yes" || test "${HAVE_W32}" = "yes"; then |
| 12355 | if test "${with_jpeg}" != "no"; then | 12501 | if test "${with_jpeg}" != "no"; then |
| 12356 | ac_fn_c_check_header_mongrel "$LINENO" "jerror.h" "ac_cv_header_jerror_h" "$ac_includes_default" | 12502 | ac_fn_c_check_header_mongrel "$LINENO" "jerror.h" "ac_cv_header_jerror_h" "$ac_includes_default" |
| 12357 | if test "x$ac_cv_header_jerror_h" = x""yes; then : | 12503 | if test "x$ac_cv_header_jerror_h" = x""yes; then : |
| @@ -12430,7 +12576,7 @@ fi | |||
| 12430 | ### Use -lpng if available, unless `--with-png=no'. | 12576 | ### Use -lpng if available, unless `--with-png=no'. |
| 12431 | HAVE_PNG=no | 12577 | HAVE_PNG=no |
| 12432 | LIBPNG= | 12578 | LIBPNG= |
| 12433 | if test "${HAVE_X11}" = "yes"; then | 12579 | if test "${HAVE_X11}" = "yes" || test "${HAVE_W32}" = "yes"; then |
| 12434 | if test "${with_png}" != "no"; then | 12580 | if test "${with_png}" != "no"; then |
| 12435 | # Debian unstable as of July 2003 has multiple libpngs, and puts png.h | 12581 | # Debian unstable as of July 2003 has multiple libpngs, and puts png.h |
| 12436 | # in /usr/include/libpng. | 12582 | # in /usr/include/libpng. |
| @@ -12520,7 +12666,7 @@ fi | |||
| 12520 | ### Use -ltiff if available, unless `--with-tiff=no'. | 12666 | ### Use -ltiff if available, unless `--with-tiff=no'. |
| 12521 | HAVE_TIFF=no | 12667 | HAVE_TIFF=no |
| 12522 | LIBTIFF= | 12668 | LIBTIFF= |
| 12523 | if test "${HAVE_X11}" = "yes"; then | 12669 | if test "${HAVE_X11}" = "yes" || test "${HAVE_W32}" = "yes"; then |
| 12524 | if test "${with_tiff}" != "no"; then | 12670 | if test "${with_tiff}" != "no"; then |
| 12525 | ac_fn_c_check_header_mongrel "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default" | 12671 | ac_fn_c_check_header_mongrel "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default" |
| 12526 | if test "x$ac_cv_header_tiffio_h" = x""yes; then : | 12672 | if test "x$ac_cv_header_tiffio_h" = x""yes; then : |
| @@ -12584,7 +12730,8 @@ fi | |||
| 12584 | ### Use -lgif or -lungif if available, unless `--with-gif=no'. | 12730 | ### Use -lgif or -lungif if available, unless `--with-gif=no'. |
| 12585 | HAVE_GIF=no | 12731 | HAVE_GIF=no |
| 12586 | LIBGIF= | 12732 | LIBGIF= |
| 12587 | if test "${HAVE_X11}" = "yes" && test "${with_gif}" != "no"; then | 12733 | if test "${HAVE_X11}" = "yes" && test "${with_gif}" != "no" \ |
| 12734 | || test "${HAVE_W32}" = "yes"; then | ||
| 12588 | ac_fn_c_check_header_mongrel "$LINENO" "gif_lib.h" "ac_cv_header_gif_lib_h" "$ac_includes_default" | 12735 | ac_fn_c_check_header_mongrel "$LINENO" "gif_lib.h" "ac_cv_header_gif_lib_h" "$ac_includes_default" |
| 12589 | if test "x$ac_cv_header_gif_lib_h" = x""yes; then : | 12736 | if test "x$ac_cv_header_gif_lib_h" = x""yes; then : |
| 12590 | # EGifPutExtensionLast only exists from version libungif-4.1.0b1. | 12737 | # EGifPutExtensionLast only exists from version libungif-4.1.0b1. |
| @@ -12805,6 +12952,9 @@ $as_echo "#define NS_IMPL_GNUSTEP 1" >>confdefs.h | |||
| 12805 | OTHER_FILES=ns-app | 12952 | OTHER_FILES=ns-app |
| 12806 | fi | 12953 | fi |
| 12807 | 12954 | ||
| 12955 | if test "${HAVE_W32}" = "yes"; then | ||
| 12956 | HAVE_MENUS=yes | ||
| 12957 | fi | ||
| 12808 | 12958 | ||
| 12809 | ### Use session management (-lSM -lICE) if available | 12959 | ### Use session management (-lSM -lICE) if available |
| 12810 | HAVE_X_SM=no | 12960 | HAVE_X_SM=no |
| @@ -16078,7 +16228,7 @@ fi | |||
| 16078 | 16228 | ||
| 16079 | 16229 | ||
| 16080 | if test "$opsys" = "cygwin"; then | 16230 | if test "$opsys" = "cygwin"; then |
| 16081 | CYGWIN_OBJ="sheap.o" | 16231 | CYGWIN_OBJ="sheap.o cygw32.o" |
| 16082 | ## Cygwin differs because of its unexec(). | 16232 | ## Cygwin differs because of its unexec(). |
| 16083 | PRE_ALLOC_OBJ= | 16233 | PRE_ALLOC_OBJ= |
| 16084 | POST_ALLOC_OBJ=lastfile.o | 16234 | POST_ALLOC_OBJ=lastfile.o |