This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Libtool".
The branch, master has been updated
via e0c817e5108fd6d1ac19defac06d8d16fd22426b (commit)
from 66c97302adc03fc1aa507ccccd8ecd6ddb86392e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit e0c817e5108fd6d1ac19defac06d8d16fd22426b
Author: Philip Allison <[email protected]>
Date: Tue Jun 15 20:09:48 2010 +0200
Avoid GCC -Wall compiler warning in dlopen self test.
* libltdl/m4/libtool.m4 (_LT_TRY_DLOPEN_SELF): Fix unused
variable warning in test program.
* THANKS: Update.
Signed-off-by: Ralf Wildenhues <[email protected]>
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 7 +++++++
THANKS | 1 +
libltdl/m4/libtool.m4 | 4 ++--
3 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index a17d9aa..bfa340c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-06-15 Philip Allison <[email protected]> (tiny change)
+
+ Avoid GCC -Wall compiler warning in dlopen self test.
+ * libltdl/m4/libtool.m4 (_LT_TRY_DLOPEN_SELF): Fix unused
+ variable warning in test program.
+ * THANKS: Update.
+
2010-06-15 Ralf Wildenhues <[email protected]>
Fix cleaning of uninstalled w32 shell wrapper in subdirs.
diff --git a/THANKS b/THANKS
index 08445f1..8a866a4 100644
--- a/THANKS
+++ b/THANKS
@@ -145,6 +145,7 @@
Peter Fritzsche [email protected]
Peter Jeremy [email protected]
Peter Kjellerstedt [email protected]
+ Philip Allison [email protected]
Rainer Emrich [email protected]
Rainer Orth [email protected]
Rainer Tammer [email protected]
diff --git a/libltdl/m4/libtool.m4 b/libltdl/m4/libtool.m4
index 22924a8..d35aab0 100644
--- a/libltdl/m4/libtool.m4
+++ b/libltdl/m4/libtool.m4
@@ -1658,10 +1658,10 @@ else
/* When -fvisbility=hidden is used, assume the code has been annotated
correspondingly for the symbols needed. */
#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) ||
(__GNUC__ > 3))
-void fnord () __attribute__((visibility("default")));
+int fnord () __attribute__((visibility("default")));
#endif
-void fnord () { int i=42; }
+int fnord () { return 42; }
int main ()
{
void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
hooks/post-receive
--
GNU Libtool