[seed] [libseed] Fix inconsistent argument naming on seed_create_function



commit 80047cc4c1417f6bcb0ffd9664c7b8c44480566e
Author: Tim Horton <hortont424 gmail com>
Date:   Sun Jul 12 17:30:19 2009 -0400

    [libseed] Fix inconsistent argument naming on seed_create_function

 doc/reference/tmpl/seed-nativefuncs.sgml |    4 ++--
 libseed/seed.h                           |    4 ++--
 m4/libtool.m4                            |    3 +++
 3 files changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/doc/reference/tmpl/seed-nativefuncs.sgml b/doc/reference/tmpl/seed-nativefuncs.sgml
index 145d2bb..912eb4b 100644
--- a/doc/reference/tmpl/seed-nativefuncs.sgml
+++ b/doc/reference/tmpl/seed-nativefuncs.sgml
@@ -53,7 +53,7 @@ All native C callbacks should have the prototype of SeedFunctionCallback().
 
 @ctx: 
 @name: 
- callback: 
- object: 
+ func: 
+ obj: 
 
 
diff --git a/libseed/seed.h b/libseed/seed.h
index d4f54b1..e49190f 100644
--- a/libseed/seed.h
+++ b/libseed/seed.h
@@ -248,8 +248,8 @@ typedef SeedValue (*SeedFunctionCallback) (SeedContext ctx,
 					   SeedException * exception);
 
 void seed_create_function (SeedContext ctx,
-			   gchar * name, SeedFunctionCallback callback,
-			   SeedObject object);
+			   gchar * name, SeedFunctionCallback func,
+			   SeedObject obj);
 SeedObject seed_make_function (SeedContext ctx, SeedFunctionCallback func, const gchar *name);
 /* Inconsistent naming? */
 SeedObject seed_make_array (SeedContext ctx, const SeedValue elements,
diff --git a/m4/libtool.m4 b/m4/libtool.m4
index 2ca1c1f..1e7ea47 100644
--- a/m4/libtool.m4
+++ b/m4/libtool.m4
@@ -4261,6 +4261,9 @@ dnl Note also adjust exclude_expsyms for C++ above.
   openbsd*)
     with_gnu_ld=no
     ;;
+  linux* | k*bsd*-gnu)
+    _LT_TAGVAR(link_all_deplibs, $1)=no
+    ;;
   esac
 
   _LT_TAGVAR(ld_shlibs, $1)=yes



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