summaryrefslogtreecommitdiff
path: root/configure1.in
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-04-14 03:44:05 +0000
committerRichard M. Stallman <rms@gnu.org>1994-04-14 03:44:05 +0000
commit7b867ba492ca865e6c5b21352bfd150a507356a0 (patch)
treefbec17f009ba84c0e564a5e4ecd0b2f3d3587514 /configure1.in
parentdd2f4ddd9b69a3efe37346f47c166fe8fbea82fb (diff)
downloademacs-7b867ba492ca865e6c5b21352bfd150a507356a0.tar.gz
(CFLAGS): Exclude ${CFLAGS} from singlequotes.
(printing the choices): Make the toolkit message unconditional. (USE_X_TOOLKIT): Use `none', not `no', if none. (include libsrc_libs): Include config.h, and specify -I for srcdir. Get rid of temp file foofoo1.
Diffstat (limited to 'configure1.in')
-rwxr-xr-xconfigure1.in20
1 files changed, 9 insertions, 11 deletions
diff --git a/configure1.in b/configure1.in
index d0c14ba37db..368613e9214 100755
--- a/configure1.in
+++ b/configure1.in
@@ -1225,7 +1225,7 @@ case "${window_system}" in
echo " Using Open-Look toolkit."
;;
* )
- USE_X_TOOLKIT=no
+ USE_X_TOOLKIT=none
echo " Using Xlib directly."
;;
esac
@@ -1233,13 +1233,13 @@ case "${window_system}" in
x10 )
HAVE_X_WINDOWS=yes
HAVE_X11=no
- USE_X_TOOLKIT=no
+ USE_X_TOOLKIT=none
echo " Using X10."
;;
none )
HAVE_X_WINDOWS=no
HAVE_X11=no
- USE_X_TOOLKIT=no
+ USE_X_TOOLKIT=none
echo " Using no window system."
;;
esac
@@ -1449,7 +1449,7 @@ AC_DEFINE_UNQUOTED(UNEXEC_SRC, ${UNEXEC_SRC})
if [ "${HAVE_X_WINDOWS}" = "yes" ] ; then
] AC_DEFINE(HAVE_X_WINDOWS) [
fi
-if [ "${USE_X_TOOLKIT}" != "no" ] ; then
+if [ "${USE_X_TOOLKIT}" != "none" ] ; then
] AC_DEFINE(USE_X_TOOLKIT) [
fi
if [ "${HAVE_X11}" = "yes" ] ; then
@@ -1534,8 +1534,8 @@ Configured for \`${canonical}'.
What compiler should emacs be built with? ${CC} ${CFLAGS}
Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason}
Should Emacs use the relocating allocator for buffers? ${REL_ALLOC}
- What window system should Emacs use? ${window_system}${x_includes+
- What toolkit should Emacs use? ${USE_X_TOOLKIT}
+ What window system should Emacs use? ${window_system}
+ What toolkit should Emacs use? ${USE_X_TOOLKIT}${x_includes+
Where do we find X Windows header files? }${x_includes}${x_libraries+
Where do we find X Windows libraries? }${x_libraries}
@@ -1586,8 +1586,7 @@ echo creating src/Makefile
[
echo '
-#include "'${srcdir}'/src/'${opsysfile}'"
-#include "'${srcdir}'/src/'${machfile}'"
+#include "config.h"
#ifndef LIBS_MACHINE
#define LIBS_MACHINE
#endif
@@ -1596,10 +1595,9 @@ echo '
#endif
configure___ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM
' > ${tempcname}
-${CPP} -Isrc ${tempcname} \
+eval `${CPP} -Isrc -I${srcdir}/src ${tempcname} \
| grep 'configure___' \
- | sed -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/' > foofoo1
-eval `cat foofoo1`
+ | sed -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/'`
rm ${tempcname}
cat lib-src/Makefile | sed -e "s/@libsrc_libs@/$libsrc_libs/" > lib-src/Makefoo