Mercurial > hg > xemacs-beta
changeset 92:6a43545367ac r20-0test1
Import from CVS: tag r20-0test1
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:11:39 +0200 |
parents | 96295c945003 |
children | 486ff617c2a1 |
files | configure configure.in lisp/version.el |
diffstat | 3 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Mon Aug 13 09:10:53 2007 +0200 +++ b/configure Mon Aug 13 09:11:39 2007 +0200 @@ -1139,7 +1139,7 @@ ;; esac - if [ $opsys = hpux10 ]; then + if test $opsys = hpux10 ; then NON_GNU_CC="cc -Ae" NON_GNU_CPP="cc -Ae -E" fi @@ -1601,7 +1601,7 @@ fi #### Choose a compiler. -if test "x$CC" != x ; then +if test "x$CC" = x ; then cc_specified=1 fi
--- a/configure.in Mon Aug 13 09:10:53 2007 +0200 +++ b/configure.in Mon Aug 13 09:11:39 2007 +0200 @@ -1145,7 +1145,7 @@ ;; esac - if [ $opsys = hpux10 ]; then + if test $opsys = hpux10 ; then NON_GNU_CC="cc -Ae" NON_GNU_CPP="cc -Ae -E" fi @@ -1621,7 +1621,7 @@ fi #### Choose a compiler. -if test "x$CC" != x ; then +if test "x$CC" = x ; then cc_specified=1 fi
--- a/lisp/version.el Mon Aug 13 09:10:53 2007 +0200 +++ b/lisp/version.el Mon Aug 13 09:11:39 2007 +0200 @@ -25,7 +25,7 @@ (defconst emacs-version "20.0" "Version numbers of this version of Emacs.") -(setq emacs-version (purecopy (concat emacs-version " XEmacs Lucid"))) +(setq emacs-version (purecopy (concat emacs-version " XEmacs Lucid (test1)"))) (defconst emacs-major-version (progn (or (string-match "^[0-9]+" emacs-version)