aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-10-24 07:22:43 +0000
committerGlenn Morris2008-10-24 07:22:43 +0000
commitea09b8d50e9c0be62ab6ee4e152bfa5a34e6ecd2 (patch)
treeeaf7ba189a5ee5c635e7ad3a0705365d635c7837
parentef913c89bc8ba93058d2493c1068bd0fe595bf25 (diff)
downloademacs-ea09b8d50e9c0be62ab6ee4e152bfa5a34e6ecd2.tar.gz
emacs-ea09b8d50e9c0be62ab6ee4e152bfa5a34e6ecd2.zip
(--without-sync-input, --with-pkg-config-prog): Help strings start
with lower case. (--with-gnustep-conf): New option. (GNUSTEP_CONFIG_FILE): Use, instead of fixed /etc/GNUstep/GNUstep.conf.
-rw-r--r--ChangeLog7
-rw-r--r--configure.in20
2 files changed, 21 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 19459ac6c5f..c7daa40f8d0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
12008-10-24 Glenn Morris <rgm@gnu.org>
2
3 * configure.in (--without-sync-input, --with-pkg-config-prog):
4 Help strings start with lower case.
5 (--with-gnustep-conf): New option.
6 (GNUSTEP_CONFIG_FILE): Use, instead of fixed /etc/GNUstep/GNUstep.conf.
7
12008-10-24 Yavor Doganov <yavor@gnu.org> (tiny change) 82008-10-24 Yavor Doganov <yavor@gnu.org> (tiny change)
2 9
3 * configure.in: Use `.' instead of `source' to source GNUstep.conf. 10 * configure.in: Use `.' instead of `source' to source GNUstep.conf.
diff --git a/configure.in b/configure.in
index e01d9be3132..29f2afe4e04 100644
--- a/configure.in
+++ b/configure.in
@@ -97,7 +97,7 @@ fi
97 97
98OPTION_DEFAULT_ON([sound],[don't compile with sound support]) 98OPTION_DEFAULT_ON([sound],[don't compile with sound support])
99 99
100OPTION_DEFAULT_ON([sync-input],[Process async input synchronously]) 100OPTION_DEFAULT_ON([sync-input],[process async input synchronously])
101if test "$with_sync_input" = yes; then 101if test "$with_sync_input" = yes; then
102 AC_DEFINE(SYNC_INPUT, 1, [Process async input synchronously.]) 102 AC_DEFINE(SYNC_INPUT, 1, [Process async input synchronously.])
103fi 103fi
@@ -162,13 +162,20 @@ variable to specify a compiler.])],,)
162 162
163AC_ARG_WITH([pkg-config-prog],dnl 163AC_ARG_WITH([pkg-config-prog],dnl
164[AS_HELP_STRING([--with-pkg-config-prog=PATH], 164[AS_HELP_STRING([--with-pkg-config-prog=PATH],
165 [Path to pkg-config for finding GTK and librsvg])]) 165 [path to pkg-config for finding GTK and librsvg])])
166if test "X${with_pkg_config_prog}" != X; then 166if test "X${with_pkg_config_prog}" != X; then
167 if test "${with_pkg_config_prog}" != yes; then 167 if test "${with_pkg_config_prog}" != yes; then
168 PKG_CONFIG="${with_pkg_config_prog}" 168 PKG_CONFIG="${with_pkg_config_prog}"
169 fi 169 fi
170fi 170fi
171 171
172AC_ARG_WITH([gnustep-conf],dnl
173[AS_HELP_STRING([--with-gnustep-conf=PATH],[path to GNUstep.conf; default $GNUSTEP_CONFIG_FILE, or /etc/GNUstep/GNUstep.conf])])
174test "X${with_gnustep_conf}" != X && test "${with_gnustep_conf}" != yes && \
175 GNUSTEP_CONFIG_FILE="${with_gnustep_conf}"
176test "X$GNUSTEP_CONFIG_FILE" = "X" && \
177 GNUSTEP_CONFIG_FILE=/etc/GNUstep/GNUstep.conf
178
172AC_ARG_ENABLE(cocoa-experimental-ctrl-g, 179AC_ARG_ENABLE(cocoa-experimental-ctrl-g,
173[AS_HELP_STRING([--enable-cocoa-experimental-ctrl-g], 180[AS_HELP_STRING([--enable-cocoa-experimental-ctrl-g],
174 [enable experimental improved ctrl-g recognition])], 181 [enable experimental improved ctrl-g recognition])],
@@ -1233,15 +1240,16 @@ if test "${with_ns}" != no; then
1233 ns_appbindir=`pwd`/nextstep/Emacs.app/Contents/MacOS 1240 ns_appbindir=`pwd`/nextstep/Emacs.app/Contents/MacOS
1234 ns_appresdir=`pwd`/nextstep/Emacs.app/Contents/Resources 1241 ns_appresdir=`pwd`/nextstep/Emacs.app/Contents/Resources
1235 ns_appsrc=${srcdir}/nextstep/Cocoa/Emacs.base 1242 ns_appsrc=${srcdir}/nextstep/Cocoa/Emacs.base
1236 elif test -f /etc/GNUstep/GNUstep.conf; then 1243 elif test -f $GNUSTEP_CONFIG_FILE; then
1237 NS_IMPL_GNUSTEP=yes 1244 NS_IMPL_GNUSTEP=yes
1238 ns_appdir=`pwd`/nextstep/Emacs.app 1245 ns_appdir=`pwd`/nextstep/Emacs.app
1239 ns_appbindir=`pwd`/nextstep/Emacs.app 1246 ns_appbindir=`pwd`/nextstep/Emacs.app
1240 ns_appresdir=`pwd`/nextstep/Emacs.app/Resources 1247 ns_appresdir=`pwd`/nextstep/Emacs.app/Resources
1241 ns_appsrc=${srcdir}/nextstep/GNUstep/Emacs.base 1248 ns_appsrc=${srcdir}/nextstep/GNUstep/Emacs.base
1242 GNUSTEP_MAKEFILES="$(. /etc/GNUstep/GNUstep.conf; echo $GNUSTEP_MAKEFILES)" 1249 dnl FIXME sourcing this 3 times in subshells seems inefficient.
1243 GNUSTEP_SYSTEM_HEADERS="$(. /etc/GNUstep/GNUstep.conf; echo $GNUSTEP_SYSTEM_HEADERS)" 1250 GNUSTEP_MAKEFILES="$(. $GNUSTEP_CONFIG_FILE; echo $GNUSTEP_MAKEFILES)"
1244 GNUSTEP_SYSTEM_LIBRARIES="$(. /etc/GNUstep/GNUstep.conf; echo $GNUSTEP_SYSTEM_LIBRARIES)" 1251 GNUSTEP_SYSTEM_HEADERS="$(. $GNUSTEP_CONFIG_FILE; echo $GNUSTEP_SYSTEM_HEADERS)"
1252 GNUSTEP_SYSTEM_LIBRARIES="$(. $GNUSTEP_CONFIG_FILE; echo $GNUSTEP_SYSTEM_LIBRARIES)"
1245 CPPFLAGS="$CPPFLAGS -I${GNUSTEP_SYSTEM_HEADERS}" 1253 CPPFLAGS="$CPPFLAGS -I${GNUSTEP_SYSTEM_HEADERS}"
1246 CFLAGS="$CFLAGS -I${GNUSTEP_SYSTEM_HEADERS}" 1254 CFLAGS="$CFLAGS -I${GNUSTEP_SYSTEM_HEADERS}"
1247 REAL_CFLAGS="$REAL_CFLAGS -I${GNUSTEP_SYSTEM_HEADERS}" 1255 REAL_CFLAGS="$REAL_CFLAGS -I${GNUSTEP_SYSTEM_HEADERS}"