aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-04-29 18:54:08 -0700
committerGlenn Morris2010-04-29 18:54:08 -0700
commit718a19c869d21865f460825fef3c7ccb3aed3123 (patch)
tree7539913f002f0cea81a753782e8a696a8e855409
parentd5096f16c6188a2eaba30d16eabbae9c25906b15 (diff)
downloademacs-718a19c869d21865f460825fef3c7ccb3aed3123.tar.gz
emacs-718a19c869d21865f460825fef3c7ccb3aed3123.zip
Regenerate configure.
-rwxr-xr-xconfigure43
1 files changed, 39 insertions, 4 deletions
diff --git a/configure b/configure
index e261cd0e836..f9c2134d62b 100755
--- a/configure
+++ b/configure
@@ -799,7 +799,10 @@ XMENU_OBJ
799XOBJ 799XOBJ
800WIDGET_OBJ 800WIDGET_OBJ
801TOOLKIT_LIBW 801TOOLKIT_LIBW
802OLDXMENU
803LIBXMENU
802CYGWIN_OBJ 804CYGWIN_OBJ
805OTHER_OBJ
803LTLIBOBJS' 806LTLIBOBJS'
804ac_subst_files='' 807ac_subst_files=''
805ac_user_opts=' 808ac_user_opts='
@@ -13260,7 +13263,7 @@ LIBXMU=-lXmu
13260case "$machine" in 13263case "$machine" in
13261 ## These machines don't supply Xmu. 13264 ## These machines don't supply Xmu.
13262 hpux* | aix4-2 ) 13265 hpux* | aix4-2 )
13263 test "X$ac_cv_lib_Xmu_XmuConvertStandardSelection" = "Xno" && LIBXMU= 13266 test "X$ac_cv_lib_Xmu_XmuConvertStandardSelection" != "Xyes" && LIBXMU=
13264 ;; 13267 ;;
13265esac 13268esac
13266 13269
@@ -26103,20 +26106,43 @@ _ACEOF
26103fi 26106fi
26104 26107
26105 26108
26109TOOLKIT_LIBW=
26106case "$USE_X_TOOLKIT" in 26110case "$USE_X_TOOLKIT" in
26107 MOTIF) TOOLKIT_LIBW="$MOTIF_LIBW" ;; 26111 MOTIF) TOOLKIT_LIBW="$MOTIF_LIBW" ;;
26108 LUCID) TOOLKIT_LIBW="$LUCID_LIBW" ;; 26112 LUCID) TOOLKIT_LIBW="$LUCID_LIBW" ;;
26109 *) TOOLKIT_LIBW= ;; 26113 none) test "x$HAVE_GTK" = "xyes" && TOOLKIT_LIBW="$GTK_LIBS" ;;
26110esac 26114esac
26111 26115
26112 26116
26117## The X Menu stuff is present in the X10 distribution, but missing
26118## from X11. If we have X10, just use the installed library;
26119## otherwise, use our own copy.
26113if test "${HAVE_X11}" = "yes" ; then 26120if test "${HAVE_X11}" = "yes" ; then
26114 26121
26115cat >>confdefs.h <<\_ACEOF 26122cat >>confdefs.h <<\_ACEOF
26116#define HAVE_X11 1 26123#define HAVE_X11 1
26117_ACEOF 26124_ACEOF
26118 26125
26126
26127 if test "$USE_X_TOOLKIT" = "none"; then
26128 OLDXMENU="\${oldXMenudir}libXMenu11.a"
26129 else
26130 OLDXMENU="\${lwlibdir}liblw.a"
26131 fi
26132 LIBXMENU="\$(OLDXMENU)"
26133else
26134 OLDXMENU=
26135 LIBXMENU="-lXMenu"
26119fi 26136fi
26137
26138if test "$HAVE_GTK" = "yes"; then
26139 OLDXMENU=
26140 LIBXMENU=
26141fi
26142
26143
26144
26145
26120if test "${HAVE_MENUS}" = "yes" ; then 26146if test "${HAVE_MENUS}" = "yes" ; then
26121 26147
26122cat >>confdefs.h <<\_ACEOF 26148cat >>confdefs.h <<\_ACEOF
@@ -26139,8 +26165,17 @@ _ACEOF
26139 26165
26140fi 26166fi
26141 26167
26142CYGWIN_OBJ= 26168
26143test "$opsys" = "cygwin" && CYGWIN_OBJ="sheap.o" 26169OTHER_OBJ="\$(gmallocobj) \$(rallocobj)"
26170if test "$opsys" = "cygwin"; then
26171 CYGWIN_OBJ="sheap.o"
26172 ## Cygwin differs because of its unexec().
26173 OTHER_OBJ="$OTHER_OBJ lastfile.o"
26174else
26175 CYGWIN_OBJ=
26176 OTHER_OBJ="lastfile.o $OTHER_OBJ"
26177fi
26178
26144 26179
26145 26180
26146 26181