Hi friends,

Some of my patches are waiting for approvals or comments.
I do understand that it requires time to process them, I
just want to make sure they aren't forgotten :)

- dynamic logs

  http://lists.gnu.org/archive/html/libtool-patches/2009-01/msg00064.html

  here I will probably make a single call to the logs to
  list the supported loaders, which requires a dynamic string.
  Is there any lt_string somewhere I missed?  I have seen placed
  where libltdl has to maintain dynamic strings, that would be
  useful.

- distcc nuisances in the test suite

  http://lists.gnu.org/archive/html/libtool-patches/2009-01/msg00017.html

- nuke warnings in the wrappers

  The patch at the end of

  http://lists.gnu.org/archive/html/libtool/2008-12/msg00069.html

- Bootstrap failures

  http://lists.gnu.org/archive/html/bug-libtool/2008-11/msg00098.html

  I suggest adding the following macros to lt~obsolete.m4 to stop
  the boostrap nightmare.

diff --git a/libltdl/m4/lt-dummies.m4 b/libltdl/m4/lt-dummies.m4
new file mode 100644
index 0000000..7914928
--- /dev/null
+++ b/libltdl/m4/lt-dummies.m4
@@ -0,0 +1,4 @@
+m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS],
+          [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])])
+m4_ifndef([_LT_AC_PROG_CXXCPP],
+          [AC_DEFUN([_LT_AC_PROG_CXXCPP])])


I have also the following patch that I don't remember if I
sent it.

From 64080437c46f605b76917c03aec528884451dbf8 Mon Sep 17 00:00:00 2001
From: Akim Demaille <demai...@gostai.com>
Date: Mon, 5 Jan 2009 11:56:24 +0100
Subject: [PATCH] Fix func_exec_init.

        * tests/defs.m4sh (func_exec_init): Instead of using the undefined
        my_dir, call func_dirname_and_basename and use its result.
        (func_make): For consistency, don't use the useless local variable
        my_dir.
---
 tests/defs.m4sh |   12 +++++-------
 1 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/tests/defs.m4sh b/tests/defs.m4sh
index 27c6f77..58296da 100644
--- a/tests/defs.m4sh
+++ b/tests/defs.m4sh
@@ -2,7 +2,7 @@ AS_INIT[]m4_divert_push([HEADER-COPYRIGHT])dnl
 # @configure_input@
 # defs -- Defines for Libtool testing environment.
 #
-#   Copyright (C) 2003, 2004, 2005, 2007, 2008 Free Software
+#   Copyright (C) 2003, 2004, 2005, 2007, 2008, 2009 Free Software
 #   Foundation, Inc.
 #   Written by Gord Matzigkeit, 1996
 #   Rewritten by Gary V. Vaughan, 2003
@@ -102,7 +102,7 @@ func_get_config ()
     my_build_regex=false
   fi
   my_first=:
-  
+
   for my_varname in $my_varname_list; do
     if $my_build_regex; then
       $my_first || my_regex="$my_regex|"
@@ -247,9 +247,7 @@ func_make ()
     $opt_debug
     my_args=${1+"$@"}
     func_dirname_and_basename "`pwd`"
-    my_dir=$func_basename_result
-
-    func_msg "Running \`$MAKE $my_args' in $my_dir"
+    func_msg "Running \`$MAKE $my_args' in $func_basename_result"
 
     eval $MAKE $my_args || exit $EXIT_FAIL
 }
@@ -288,7 +286,8 @@ func_make_uninstall ()
 func_exec_init ()
 {
     $opt_debug
-    func_msg "Executing $1 programs in $my_dir"
+    func_dirname_and_basename "`pwd`"
+    func_msg "Executing $1 programs in $func_basename_result"
 
     # Windows hosts search for dlls in the command path
     PATH=$prefix/lib:$PATH
@@ -359,4 +358,3 @@ func_msg "Running $progname"
 # sh-indentation:2
 # End:
 ]])
-
-- 
1.6.0.4.790.gaa14a




Thanks!

Reply via email to