Mercurial > hg > xemacs-beta
changeset 2389:df0455455d17
[xemacs-hg @ 2004-11-14 12:31:09 by crestani]
Make pdump default for Cygwin.
author | crestani |
---|---|
date | Sun, 14 Nov 2004 12:31:12 +0000 |
parents | cfff883d4990 |
children | c7cfb09fd1bf |
files | ChangeLog configure configure.in |
diffstat | 3 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sun Nov 14 12:20:00 2004 +0000 +++ b/ChangeLog Sun Nov 14 12:31:12 2004 +0000 @@ -1,3 +1,8 @@ +2004-11-12 Marcus Crestani <crestani@informatik.uni-tuebingen.de> + + * configure: + * configure.in: Make pdump default for Cygwin. + 2004-11-12 Marcus Crestani <crestani@informatik.uni-tuebingen.de> * Makefile.in.in (install-arch-dep): Fix installation for Cygwin.
--- a/configure Sun Nov 14 12:20:00 2004 +0000 +++ b/configure Sun Nov 14 12:31:12 2004 +0000 @@ -1575,7 +1575,7 @@ if test -z "$pdump"; then case "$opsys" in - linux* ) pdump=yes ;; darwin ) pdump=yes ;; * ) pdump=no ;; + linux* ) pdump=yes ;; darwin ) pdump=yes ;; cygwin* ) pdump=yes ;; * ) pdump=no ;; esac fi
--- a/configure.in Sun Nov 14 12:20:00 2004 +0000 +++ b/configure.in Sun Nov 14 12:31:12 2004 +0000 @@ -1598,6 +1598,7 @@ case "$opsys" in linux* ) pdump=yes ;; dnl glibc 2.3.1 seems to hose unexec darwin ) pdump=yes ;; dnl No "native" working dumper available + cygwin* ) pdump=yes ;; dnl unexec is broken * ) pdump=no ;; esac fi