libtool-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Libtool branch, master, updated. v2.2.6-182-g7e8be90


From: Ralf Wildenhues
Subject: [SCM] GNU Libtool branch, master, updated. v2.2.6-182-g7e8be90
Date: Sun, 31 Jan 2010 14:36:55 +0000

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  7e8be90f4872b8140a718a0af0a1544d1f9371d9 (commit)
       via  2080fe964906bdb18771b6a461622212063c1a51 (commit)
      from  e4eefcd401b32081fe947b2a731dadcc6bfcd337 (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 7e8be90f4872b8140a718a0af0a1544d1f9371d9
Author: Ralf Wildenhues <address@hidden>
Date:   Sun Jan 31 13:39:48 2010 +0100

    Use --email with gendocs.sh.
    
    * Makefile.maint (web-manual): Pass bug reporting address to
    gendocs.sh.
    
    Signed-off-by: Ralf Wildenhues <address@hidden>

commit 2080fe964906bdb18771b6a461622212063c1a51
Author: Ralf Wildenhues <address@hidden>
Date:   Sun Jan 31 15:31:52 2010 +0100

    Make testsuite code C++ clean again.
    
    * tests/resident.at (resident modules): Fix for C++.
    
    Signed-off-by: Ralf Wildenhues <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog         |    9 +++++++++
 Makefile.maint    |    2 +-
 tests/resident.at |    6 +++++-
 3 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index b25d9d9..f4b4a3f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2010-01-31  Ralf Wildenhues  <address@hidden>
+
+       Use --email with gendocs.sh.
+       * Makefile.maint (web-manual): Pass bug reporting address to
+       gendocs.sh.
+
+       Make testsuite code C++ clean again.
+       * tests/resident.at (resident modules): Fix for C++.
+
 2010-01-29  Peter Rosin  <address@hidden>
            Ralf Wildenhues  <address@hidden>
 
diff --git a/Makefile.maint b/Makefile.maint
index 02284df..b90b31d 100644
--- a/Makefile.maint
+++ b/Makefile.maint
@@ -225,4 +225,4 @@ web-manual:
        $(WGETSGO)'/texinfo/texinfo/util/gendocs.sh' && \
        $(WGETSGO)'/texinfo/texinfo/util/gendocs_template' && \
        chmod 755 gendocs.sh && \
-       ./gendocs.sh libtool "GNU Libtool Manual"
+       ./gendocs.sh --email address@hidden libtool "GNU Libtool Manual"
diff --git a/tests/resident.at b/tests/resident.at
index 8667ca7..c16a72a 100644
--- a/tests/resident.at
+++ b/tests/resident.at
@@ -59,7 +59,7 @@ main (int argc, char* argv[])
        {
          int (*pf) (void);
          printf ("plugin opened successfully!\n");
-         pf = lt_dlsym (plugin_handle, "setup_plugin");
+         pf = (int (*) (void)) lt_dlsym (plugin_handle, "setup_plugin");
          if (pf)
            pf ();
          else
@@ -100,6 +100,7 @@ main (int argc, char* argv[])
 
 AT_DATA([plugin.c],
 [[#include <stdlib.h>
+#include <stdio.h>
 
 void
 bye (void)
@@ -107,6 +108,9 @@ bye (void)
   puts ("called from atexit handler");
 }
 
+#ifdef __cplusplus
+extern "C"
+#endif
 int
 setup_plugin (void)
 {


hooks/post-receive
-- 
GNU Libtool




reply via email to

[Prev in Thread] Current Thread [Next in Thread]