aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-12-10 07:17:35 -0500
committerGlenn Morris2012-12-10 07:17:35 -0500
commit322a542e6c13eb89b8abc302278e77684c1d6479 (patch)
tree239c19b3723ec81b40acf370695bda65a6f3bc64
parent1cf1bbd51e91f02a1d3fabb4f7ea4b1322c4259c (diff)
downloademacs-322a542e6c13eb89b8abc302278e77684c1d6479.tar.gz
emacs-322a542e6c13eb89b8abc302278e77684c1d6479.zip
Auto-commit of generated files.
-rw-r--r--autogen/Makefile.in3
-rwxr-xr-xautogen/configure103
2 files changed, 106 insertions, 0 deletions
diff --git a/autogen/Makefile.in b/autogen/Makefile.in
index db60a006a21..0757284d6d7 100644
--- a/autogen/Makefile.in
+++ b/autogen/Makefile.in
@@ -755,6 +755,8 @@ VERSION = @VERSION@
755VMLIMIT_OBJ = @VMLIMIT_OBJ@ 755VMLIMIT_OBJ = @VMLIMIT_OBJ@
756W32_LIBS = @W32_LIBS@ 756W32_LIBS = @W32_LIBS@
757W32_OBJ = @W32_OBJ@ 757W32_OBJ = @W32_OBJ@
758W32_RES = @W32_RES@
759W32_RES_LINK = @W32_RES_LINK@
758WARN_CFLAGS = @WARN_CFLAGS@ 760WARN_CFLAGS = @WARN_CFLAGS@
759WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ 761WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
760WERROR_CFLAGS = @WERROR_CFLAGS@ 762WERROR_CFLAGS = @WERROR_CFLAGS@
@@ -762,6 +764,7 @@ WIDGET_OBJ = @WIDGET_OBJ@
762WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ 764WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@
763WINDOWS_64_BIT_ST_SIZE = @WINDOWS_64_BIT_ST_SIZE@ 765WINDOWS_64_BIT_ST_SIZE = @WINDOWS_64_BIT_ST_SIZE@
764WINDOW_SYSTEM_OBJ = @WINDOW_SYSTEM_OBJ@ 766WINDOW_SYSTEM_OBJ = @WINDOW_SYSTEM_OBJ@
767WINDRES = @WINDRES@
765WINT_T_SUFFIX = @WINT_T_SUFFIX@ 768WINT_T_SUFFIX = @WINT_T_SUFFIX@
766XFT_CFLAGS = @XFT_CFLAGS@ 769XFT_CFLAGS = @XFT_CFLAGS@
767XFT_LIBS = @XFT_LIBS@ 770XFT_LIBS = @XFT_LIBS@
diff --git a/autogen/configure b/autogen/configure
index 65446c6f184..f3d954bae73 100755
--- a/autogen/configure
+++ b/autogen/configure
@@ -1204,8 +1204,11 @@ LIB_PTHREAD
1204VMLIMIT_OBJ 1204VMLIMIT_OBJ
1205GMALLOC_OBJ 1205GMALLOC_OBJ
1206HAVE_XSERVER 1206HAVE_XSERVER
1207W32_RES_LINK
1208W32_RES
1207W32_LIBS 1209W32_LIBS
1208W32_OBJ 1210W32_OBJ
1211WINDRES
1209LIB_STANDARD 1212LIB_STANDARD
1210NS_OBJC_OBJ 1213NS_OBJC_OBJ
1211NS_OBJ 1214NS_OBJ
@@ -9620,6 +9623,8 @@ CPPFLAGS="$tmp_CPPFLAGS"
9620HAVE_W32=no 9623HAVE_W32=no
9621W32_OBJ= 9624W32_OBJ=
9622W32_LIBS= 9625W32_LIBS=
9626W32_RES=
9627W32_RES_LINK=
9623if test "${with_w32}" != no; then 9628if test "${with_w32}" != no; then
9624 if test "${opsys}" != "cygwin"; then 9629 if test "${opsys}" != "cygwin"; then
9625 as_fn_error "Using w32 with an autotools build is only supported for Cygwin." "$LINENO" 5 9630 as_fn_error "Using w32 with an autotools build is only supported for Cygwin." "$LINENO" 5
@@ -9636,14 +9641,112 @@ fi
9636 9641
9637$as_echo "#define HAVE_NTGUI 1" >>confdefs.h 9642$as_echo "#define HAVE_NTGUI 1" >>confdefs.h
9638 9643
9644 if test -n "$ac_tool_prefix"; then
9645 # Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args.
9646set dummy ${ac_tool_prefix}windres; ac_word=$2
9647{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9648$as_echo_n "checking for $ac_word... " >&6; }
9649if test "${ac_cv_prog_WINDRES+set}" = set; then :
9650 $as_echo_n "(cached) " >&6
9651else
9652 if test -n "$WINDRES"; then
9653 ac_cv_prog_WINDRES="$WINDRES" # Let the user override the test.
9654else
9655as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9656for as_dir in $PATH
9657do
9658 IFS=$as_save_IFS
9659 test -z "$as_dir" && as_dir=.
9660 for ac_exec_ext in '' $ac_executable_extensions; do
9661 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
9662 ac_cv_prog_WINDRES="${ac_tool_prefix}windres"
9663 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9664 break 2
9665 fi
9666done
9667 done
9668IFS=$as_save_IFS
9669
9670fi
9671fi
9672WINDRES=$ac_cv_prog_WINDRES
9673if test -n "$WINDRES"; then
9674 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WINDRES" >&5
9675$as_echo "$WINDRES" >&6; }
9676else
9677 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9678$as_echo "no" >&6; }
9679fi
9680
9681
9682fi
9683if test -z "$ac_cv_prog_WINDRES"; then
9684 ac_ct_WINDRES=$WINDRES
9685 # Extract the first word of "windres", so it can be a program name with args.
9686set dummy windres; ac_word=$2
9687{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9688$as_echo_n "checking for $ac_word... " >&6; }
9689if test "${ac_cv_prog_ac_ct_WINDRES+set}" = set; then :
9690 $as_echo_n "(cached) " >&6
9691else
9692 if test -n "$ac_ct_WINDRES"; then
9693 ac_cv_prog_ac_ct_WINDRES="$ac_ct_WINDRES" # Let the user override the test.
9694else
9695as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9696for as_dir in $PATH
9697do
9698 IFS=$as_save_IFS
9699 test -z "$as_dir" && as_dir=.
9700 for ac_exec_ext in '' $ac_executable_extensions; do
9701 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
9702 ac_cv_prog_ac_ct_WINDRES="windres"
9703 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9704 break 2
9705 fi
9706done
9707 done
9708IFS=$as_save_IFS
9709
9710fi
9711fi
9712ac_ct_WINDRES=$ac_cv_prog_ac_ct_WINDRES
9713if test -n "$ac_ct_WINDRES"; then
9714 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_WINDRES" >&5
9715$as_echo "$ac_ct_WINDRES" >&6; }
9716else
9717 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9718$as_echo "no" >&6; }
9719fi
9720
9721 if test "x$ac_ct_WINDRES" = x; then
9722 WINDRES="as_fn_error "No resource compiler found." "$LINENO" 5"
9723 else
9724 case $cross_compiling:$ac_tool_warned in
9725yes:)
9726{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
9727$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
9728ac_tool_warned=yes ;;
9729esac
9730 WINDRES=$ac_ct_WINDRES
9731 fi
9732else
9733 WINDRES="$ac_cv_prog_WINDRES"
9734fi
9735
9639 W32_OBJ="w32fns.o w32menu.o w32reg.o w32font.o w32term.o" 9736 W32_OBJ="w32fns.o w32menu.o w32reg.o w32font.o w32term.o"
9640 W32_OBJ="$W32_OBJ w32xfns.o w32select.o w32uniscribe.o" 9737 W32_OBJ="$W32_OBJ w32xfns.o w32select.o w32uniscribe.o"
9641 W32_LIBS="$W32_LIBS -lkernel32 -luser32 -lgdi32 -lole32 -lcomdlg32" 9738 W32_LIBS="$W32_LIBS -lkernel32 -luser32 -lgdi32 -lole32 -lcomdlg32"
9642 W32_LIBS="$W32_LIBS -lusp10 -lcomctl32 -lwinspool" 9739 W32_LIBS="$W32_LIBS -lusp10 -lcomctl32 -lwinspool"
9740 W32_RES="emacs.res"
9741 # Tell the linker that emacs.res is an object (which we compile from
9742 # the rc file), not a linker script.
9743 W32_RES_LINK="-Wl,-bpe-i386 -Wl,emacs.res"
9643fi 9744fi
9644 9745
9645 9746
9646 9747
9748
9749
9647if test "${HAVE_W32}" = "yes"; then 9750if test "${HAVE_W32}" = "yes"; then
9648 window_system=w32 9751 window_system=w32
9649 with_xft=no 9752 with_xft=no