]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Remove DLL_VARIABLE declaration.
authorBruno Haible <bruno@clisp.org>
Tue, 9 May 2006 17:38:12 +0000 (17:38 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:13:15 +0000 (12:13 +0200)
gettext-tools/src/ChangeLog
gettext-tools/src/write-mo.h

index 016a6fe2e80bcec778de4a6f3c1ca2747a81a185..ee7a91710311f60a876565071288a96edac3e915 100644 (file)
@@ -1,3 +1,8 @@
+2006-05-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
+
+       * write-mo.h: Remove DLL_VARIABLE declarations, not needed since
+       write-mo.c is not compiled into a shared library.
+
 2006-05-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
 
        * filters.h: Add C++ guards.
index f3c27bc1a040d92c80d308de9b625421a3f3c927..e0e7cec177877298d0514b50097f24706c3e33a1 100644 (file)
@@ -1,5 +1,5 @@
 /* Writing binary .mo files.
-   Copyright (C) 1995-1998, 2000-2003, 2005 Free Software Foundation, Inc.
+   Copyright (C) 1995-1998, 2000-2003, 2005-2006 Free Software Foundation, Inc.
    Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, April 1995.
 
    This program is free software; you can redistribute it and/or modify
 #include "message.h"
 
 /* Alignment of strings in resulting .mo file.  */
-extern DLL_VARIABLE size_t alignment;
+extern size_t alignment;
 
 /* True if writing a .mo file in opposite endianness than the host.  */
-extern DLL_VARIABLE bool byteswap;
+extern bool byteswap;
 
 /* True if no hash table in .mo is wanted.  */
-extern DLL_VARIABLE bool no_hash_table;
+extern bool no_hash_table;
 
 /* Write a GNU mo file.  mlp is a list containing the messages to be output.
    domain_name is the domain name, file_name is the desired file name.