diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2003-01-20 05:35:31 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2003-01-20 05:35:31 +0000 |
commit | cd8907963a3c626137711f88b3c34d1b198c0411 (patch) | |
tree | e5a40220c69b73e572c8fdb0f172940083df379d /configure | |
parent | 22174d100dbf907e34919377aa33599efd015968 (diff) | |
download | emacs-cd8907963a3c626137711f88b3c34d1b198c0411.tar.gz |
Fixed --with-gtk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/configure b/configure index 58c410a7c22..d6a030904b9 100755 --- a/configure +++ b/configure @@ -1890,7 +1890,22 @@ case "${canonical}" in machine=pmax opsys=mach-bsd4-3 ;; - ## Motorola Delta m88k + ## Motorola Delta machines + m68k-motorola-sysv* | m68000-motorola-sysv* ) + machine=delta opsys=usg5-3 + if test -z "`type gnucc | grep 'not found'`" + then + if test -s /etc/167config + then CC="gnucc -m68040" + else CC="gnucc -m68881" + fi + else + if test -z "`type gcc | grep 'not found'`" + then CC=gcc + else CC=cc + fi + fi + ;; m88k-motorola-sysv4* ) # jbotte@bnr.ca says that UNIX_System_V <hostName> 4.0 R40V4.3 m88k mc88110 # needs POSIX_SIGNALS and therefore needs usg5-4-2. @@ -8080,7 +8095,7 @@ fi HAVE_GTK=no if test "${with_gtk}" = "yes" || test "$USE_X_TOOLKIT" = "gtk"; then - if test "$USE_X_TOOLKIT" != "none"; then + if test "$USE_X_TOOLKIT" != "none" && test "$USE_X_TOOLKIT" != "maybe"; then { { echo "$as_me:$LINENO: error: Conflicting options, --with-gtk is incompatible with --with-x-toolkit=${with_x_toolkit}" >&5 echo "$as_me: error: Conflicting options, --with-gtk is incompatible with --with-x-toolkit=${with_x_toolkit}" >&2;} { (exit 1); exit 1; }; }; |