[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r102491: Fix compilation on Windows f
From: |
Eli Zaretskii |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r102491: Fix compilation on Windows following revno 102488. |
Date: |
Tue, 23 Nov 2010 22:21:16 +0200 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 102491
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Tue 2010-11-23 22:21:16 +0200
message:
Fix compilation on Windows following revno 102488.
config.nt (EXTERNALLY_VISIBLE): Define.
modified:
nt/ChangeLog
nt/config.nt
=== modified file 'nt/ChangeLog'
--- a/nt/ChangeLog 2010-10-13 14:50:06 +0000
+++ b/nt/ChangeLog 2010-11-23 20:21:16 +0000
@@ -1,3 +1,7 @@
+2010-11-23 Eli Zaretskii <address@hidden>
+
+ * config.nt (EXTERNALLY_VISIBLE): Define.
+
2010-10-13 Juanma Barranquero <address@hidden>
* INSTALL: Refer to `dynamic-library-alist'.
=== modified file 'nt/config.nt'
--- a/nt/config.nt 2010-08-02 23:20:48 +0000
+++ b/nt/config.nt 2010-11-23 20:21:16 +0000
@@ -281,6 +281,12 @@
#define INLINE
#endif
+#if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1))
+#define EXTERNALLY_VISIBLE __attribute__((externally_visible))
+#else
+#define EXTERNALLY_VISIBLE
+#endif
+
#undef EMACS_CONFIGURATION
#undef EMACS_CONFIG_OPTIONS
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r102491: Fix compilation on Windows following revno 102488.,
Eli Zaretskii <=