From: Bruno Haible Date: Sun, 25 Jan 2009 22:47:51 +0000 (+0000) Subject: Update from gnulib. X-Git-Tag: v0.18~248 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a96449b095c3cf273ab9149799fa880944f88c86;p=thirdparty%2Fgettext.git Update from gnulib. --- diff --git a/gettext-runtime/intl/ChangeLog b/gettext-runtime/intl/ChangeLog index be0cefa3c..da21dc39f 100644 --- a/gettext-runtime/intl/ChangeLog +++ b/gettext-runtime/intl/ChangeLog @@ -1,3 +1,11 @@ +2009-01-25 Bruno Haible + + * threadlib.c: Include . + +2009-01-25 Bruno Haible + + * threadlib.c (dummy): New declaration. + 2009-01-25 Bruno Haible Don't install charset.alias on MacOS X >= 10.3. diff --git a/gettext-runtime/intl/threadlib.c b/gettext-runtime/intl/threadlib.c index 84a2d0ec6..f62f46c82 100644 --- a/gettext-runtime/intl/threadlib.c +++ b/gettext-runtime/intl/threadlib.c @@ -1,5 +1,5 @@ /* Multithreading primitives. - Copyright (C) 2005-2008 Free Software Foundation, Inc. + Copyright (C) 2005-2009 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published @@ -27,6 +27,7 @@ /* Use the POSIX threads library. */ # include +# include # if PTHREAD_IN_USE_DETECTION_HARD @@ -68,3 +69,7 @@ glthread_in_use (void) #endif /* ========================================================================= */ + +/* This declaration is solely to ensure that after preprocessing + this file is never empty. */ +typedef int dummy;