diff options
| author | Karoly Lorentey | 2007-04-22 12:45:07 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2007-04-22 12:45:07 +0000 |
| commit | 6ca7e0d8570f684ce14f60a6c8fb9545a0c2c935 (patch) | |
| tree | 45771ca4535584e12b5f4886c65f865b61527213 /configure | |
| parent | 9d0799072a0d09bc14a99eaf372b262d1ba61399 (diff) | |
| parent | fcb006c4ee97e3413a794c543367b771f0237495 (diff) | |
| download | emacs-6ca7e0d8570f684ce14f60a6c8fb9545a0c2c935.tar.gz emacs-6ca7e0d8570f684ce14f60a6c8fb9545a0c2c935.zip | |
Merged from emacs@sv.gnu.org
Patches applied:
* emacs@sv.gnu.org/emacs--devo--0--patch-702
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-703
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-704
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-705
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-706
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-707
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-216
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-602
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 14 |
1 files changed, 11 insertions, 3 deletions
| @@ -2996,6 +2996,8 @@ _ACEOF | |||
| 2996 | ;; | 2996 | ;; |
| 2997 | *-sunos5* | *-solaris* ) | 2997 | *-sunos5* | *-solaris* ) |
| 2998 | opsys=sol2-6 | 2998 | opsys=sol2-6 |
| 2999 | ## FIXME: make this into a proper fix that checks the compiler type, | ||
| 3000 | ## rather than relying on path. Or is /usr/ccs/lib/cpp a bad default now? | ||
| 2999 | if [ "x$CC" = x/opt/SUNWspro/bin/cc ]; then | 3001 | if [ "x$CC" = x/opt/SUNWspro/bin/cc ]; then |
| 3000 | ## -Xs prevents spurious whitespace. | 3002 | ## -Xs prevents spurious whitespace. |
| 3001 | NON_GNU_CPP="/opt/SUNWspro/bin/cc -E -Xs" | 3003 | NON_GNU_CPP="/opt/SUNWspro/bin/cc -E -Xs" |
| @@ -12014,7 +12016,7 @@ _ACEOF | |||
| 12014 | fi | 12016 | fi |
| 12015 | fi | 12017 | fi |
| 12016 | 12018 | ||
| 12017 | if test x"${USE_X_TOOLKIT}" = xmaybe; then | 12019 | if test x"${USE_X_TOOLKIT}" = xmaybe || test x"${USE_X_TOOLKIT}" = xLUCID; then |
| 12018 | if test x"${HAVE_X11R5}" = xyes; then | 12020 | if test x"${HAVE_X11R5}" = xyes; then |
| 12019 | { echo "$as_me:$LINENO: checking X11 version 5 with Xaw" >&5 | 12021 | { echo "$as_me:$LINENO: checking X11 version 5 with Xaw" >&5 |
| 12020 | echo $ECHO_N "checking X11 version 5 with Xaw... $ECHO_C" >&6; } | 12022 | echo $ECHO_N "checking X11 version 5 with Xaw... $ECHO_C" >&6; } |
| @@ -12073,9 +12075,15 @@ fi | |||
| 12073 | echo "${ECHO_T}5 or newer, with Xaw; use toolkit by default" >&6; } | 12075 | echo "${ECHO_T}5 or newer, with Xaw; use toolkit by default" >&6; } |
| 12074 | USE_X_TOOLKIT=LUCID | 12076 | USE_X_TOOLKIT=LUCID |
| 12075 | else | 12077 | else |
| 12076 | { echo "$as_me:$LINENO: result: before 5 or no Xaw; do not use toolkit by default" >&5 | 12078 | if test x"${USE_X_TOOLKIT}" = xLUCID; then |
| 12079 | { { echo "$as_me:$LINENO: error: Lucid toolkit requires X11/Xaw include files" >&5 | ||
| 12080 | echo "$as_me: error: Lucid toolkit requires X11/Xaw include files" >&2;} | ||
| 12081 | { (exit 1); exit 1; }; } | ||
| 12082 | else | ||
| 12083 | { echo "$as_me:$LINENO: result: before 5 or no Xaw; do not use toolkit by default" >&5 | ||
| 12077 | echo "${ECHO_T}before 5 or no Xaw; do not use toolkit by default" >&6; } | 12084 | echo "${ECHO_T}before 5 or no Xaw; do not use toolkit by default" >&6; } |
| 12078 | USE_X_TOOLKIT=none | 12085 | USE_X_TOOLKIT=none |
| 12086 | fi | ||
| 12079 | fi | 12087 | fi |
| 12080 | else | 12088 | else |
| 12081 | USE_X_TOOLKIT=none | 12089 | USE_X_TOOLKIT=none |