Fix compilation on Windows following 2010-11-23T18:47:23Z!dann@ics.uci.edu.
config.nt (EXTERNALLY_VISIBLE): Define.
This commit is contained in:
parent
b29116efce
commit
628e219faf
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2010-11-23 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* config.nt (EXTERNALLY_VISIBLE): Define.
|
||||
|
||||
2010-10-13 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* INSTALL: Refer to `dynamic-library-alist'.
|
||||
|
|
|
@ -281,6 +281,12 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
#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
|
||||
|
|
Loading…
Add table
Reference in a new issue