emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r102969: * configure.in: Set CANNOT_D


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r102969: * configure.in: Set CANNOT_DUMP on ia64 hpux (port from emacs-23).
Date: Mon, 24 Jan 2011 19:55:12 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 102969
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Mon 2011-01-24 19:55:12 -0800
message:
  * configure.in: Set CANNOT_DUMP on ia64 hpux (port from emacs-23).
modified:
  ChangeLog
  configure.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2011-01-25 03:47:47 +0000
+++ b/ChangeLog 2011-01-25 03:55:12 +0000
@@ -1,3 +1,7 @@
+2011-01-25  Glenn Morris  <address@hidden>
+
+       * configure.in: Set CANNOT_DUMP on ia64 hpux (port from emacs-23).
+
 2011-01-25  Peter O'Gorman  <address@hidden>  (tiny change)
 
        * configure.in: Add HP-UX on IA64 (Bug#6811).

=== modified file 'configure.in'
--- a/configure.in      2011-01-25 03:47:47 +0000
+++ b/configure.in      2011-01-25 03:55:12 +0000
@@ -517,6 +517,9 @@
 
   ia64*-hp-hpux1[1-9]* )
     machine=hp800 opsys=hpux11
+    ## FIXME.  Peter O'Gorman reports that dumping using unexelf.o doesn't
+    ## work either: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=6811
+    CANNOT_DUMP=yes    
   ;;
 
   hppa*-*-linux-gnu* )
@@ -851,16 +854,16 @@
 CPP=`eval "echo $CPP"`
 
 
-dnl Not used by any currently supported platform.
 dnl The function dump-emacs will not be defined and temacs will do
 dnl (load "loadup") automatically unless told otherwise.
-CANNOT_DUMP=no
+test "x$CANNOT_DUMP" = "x" && CANNOT_DUMP=no
 case "$opsys" in
-  your-opsys-here)
-   CANNOT_DUMP=yes
-   AC_DEFINE(CANNOT_DUMP, 1, [Define if Emacs cannot be dumped on your 
system.])
-  ;;
+  your-opsys-here) CANNOT_DUMP=yes ;;
 esac
+
+test "$CANNOT_DUMP" = "yes" && \
+  AC_DEFINE(CANNOT_DUMP, 1, [Define if Emacs cannot be dumped on your system.])
+
 AC_SUBST(CANNOT_DUMP)
 
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]