[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r102263: configure.in: Fix indentatio
From: |
Andreas Schwab |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r102263: configure.in: Fix indentation |
Date: |
Sat, 06 Nov 2010 11:31:56 +0100 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 102263
committer: Andreas Schwab <address@hidden>
branch nick: trunk
timestamp: Sat 2010-11-06 11:31:56 +0100
message:
configure.in: Fix indentation
modified:
ChangeLog
configure
configure.in
src/config.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2010-10-31 23:21:53 +0000
+++ b/ChangeLog 2010-11-06 10:31:56 +0000
@@ -1,3 +1,7 @@
+2010-11-06 Andreas Schwab <address@hidden>
+
+ * configure.in: Fix indentation.
+
2010-10-31 Ken Brown <address@hidden>
* configure.in (checking whether localtime caches TZ): Use
=== modified file 'configure'
--- a/configure 2010-10-31 23:21:53 +0000
+++ b/configure 2010-11-06 10:31:56 +0000
@@ -14986,7 +14986,7 @@
echo " Does Emacs use -ldbus? ${HAVE_DBUS}"
echo " Does Emacs use -lgconf? ${HAVE_GCONF}"
echo " Does Emacs use -lselinux?
${HAVE_LIBSELINUX}"
-echo " Does Emacs use -lgnutls?
${HAVE_GNUTLS}"
+echo " Does Emacs use -lgnutls? ${HAVE_GNUTLS}"
echo " Does Emacs use -lxml2?
${HAVE_LIBXML2}"
echo " Does Emacs use -lfreetype?
${HAVE_FREETYPE}"
=== modified file 'configure.in'
--- a/configure.in 2010-10-31 23:21:53 +0000
+++ b/configure.in 2010-11-06 10:31:56 +0000
@@ -3704,7 +3704,7 @@
echo " Does Emacs use -ldbus? ${HAVE_DBUS}"
echo " Does Emacs use -lgconf? ${HAVE_GCONF}"
echo " Does Emacs use -lselinux?
${HAVE_LIBSELINUX}"
-echo " Does Emacs use -lgnutls?
${HAVE_GNUTLS}"
+echo " Does Emacs use -lgnutls? ${HAVE_GNUTLS}"
echo " Does Emacs use -lxml2?
${HAVE_LIBXML2}"
echo " Does Emacs use -lfreetype?
${HAVE_FREETYPE}"
=== modified file 'src/config.in'
--- a/src/config.in 2010-10-09 01:59:50 +0000
+++ b/src/config.in 2010-11-06 10:31:56 +0000
@@ -1059,6 +1059,9 @@
/* Define to `int' if <sys/types.h> does not define. */
#undef pid_t
+/* Define to `unsigned int' if <sys/types.h> does not define. */
+#undef size_t
+
/* Define to any substitute for sys_siglist. */
#undef sys_siglist
@@ -1097,17 +1100,14 @@
#include config_opsysfile
#include config_machfile
-/* Set up some defines, C and LD flags for NeXTstep interface on GNUstep.
- (There is probably a better place to do this, but right now the Cocoa
- side does this in s/darwin.h and we cannot
- parallel this exactly since GNUstep is multi-OS. */
-#ifdef HAVE_NS
-# ifdef NS_IMPL_GNUSTEP
/* GNUstep needs a bit more pure memory. Of the existing knobs,
-SYSTEM_PURESIZE_EXTRA seems like the least likely to cause problems. */
+ SYSTEM_PURESIZE_EXTRA seems like the least likely to cause problems.
+ (There is probably a better place to do this, but right now the
+ Cocoa side does this in s/darwin.h and we cannot parallel this
+ exactly since GNUstep is multi-OS. */
+#if defined HAVE_NS && defined NS_IMPL_GNUSTEP
# define SYSTEM_PURESIZE_EXTRA 30000
-# endif /* NS_IMPL_GNUSTEP */
-#endif /* HAVE_NS */
+#endif
/* SIGTYPE is the macro we actually use. */
#ifndef SIGTYPE
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r102263: configure.in: Fix indentation,
Andreas Schwab <=