]> git.pld-linux.org Git - packages/libtool.git/commitdiff
- orphaned, outdated
authorJan Rękorajski <baggins@pld-linux.org>
Fri, 21 Apr 2006 23:40:54 +0000 (23:40 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    libtool-ac253.patch -> 1.3
    libtool-cache.patch -> 1.2
    libtool-new-ac.patch -> 1.2
    libtool-nonneg.patch -> 1.2
    libtool-test.patch -> 1.3

libtool-ac253.patch [deleted file]
libtool-cache.patch [deleted file]
libtool-new-ac.patch [deleted file]
libtool-nonneg.patch [deleted file]
libtool-test.patch [deleted file]

diff --git a/libtool-ac253.patch b/libtool-ac253.patch
deleted file mode 100644 (file)
index 3e80a9b..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
---- libtool-1.4.2/libtool.m4.orig      Tue Sep 11 05:16:01 2001
-+++ libtool-1.4.2/libtool.m4   Fri May  3 13:20:45 2002
-@@ -68,8 +68,8 @@
- AC_CHECK_TOOL(RANLIB, ranlib, :)
- AC_CHECK_TOOL(STRIP, strip, :)
--ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)
--ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
-+AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)
-+AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
- enable_win32_dll=yes, enable_win32_dll=no)
- AC_ARG_ENABLE(libtool-lock,
-@@ -113,7 +113,7 @@
-   fi
-   ;;
--ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
-+AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
- [*-*-cygwin* | *-*-mingw* | *-*-pw32*)
-   AC_CHECK_TOOL(DLLTOOL, dlltool, false)
-   AC_CHECK_TOOL(AS, as, false)
diff --git a/libtool-cache.patch b/libtool-cache.patch
deleted file mode 100644 (file)
index 5002e31..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
---- libtool-1.2f/libtool.m4~   Fri Mar 12 13:47:07 1999
-+++ libtool-1.2f/libtool.m4    Fri Mar 26 14:24:18 1999
-@@ -68,7 +68,12 @@
- dnl
- # Check for any special flags to pass to ltconfig.
--libtool_flags="--cache-file=$cache_file"
-+#
-+# the following will cause an existing older ltconfig to fail, so
-+# we ignore this at the expense of the cache file... Checking this 
-+# will just take longer ... bummer!
-+#libtool_flags="--cache-file=$cache_file"
-+#
- test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared"
- test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static"
- test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install"
diff --git a/libtool-new-ac.patch b/libtool-new-ac.patch
deleted file mode 100644 (file)
index 6639ab2..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-Index: libtoolize.in
-===================================================================
-RCS file: /cvsroot/libtool/libtool/libtoolize.in,v
-retrieving revision 1.15.2.1
-diff -u -r1.15.2.1 libtoolize.in
---- libtoolize.in       28 Nov 2001 00:42:30 -0000      1.15.2.1
-+++ libtoolize.in       9 Jan 2002 18:29:57 -0000
-@@ -154,7 +154,7 @@
- files='config.guess config.sub ltmain.sh'
-
- auxdir=.
--auxdirline=`egrep '^AC_CONFIG_AUX_DIR' configure.in 2>/dev/null`
-+auxdirline=`egrep '^AC_CONFIG_AUX_DIR' $configure_ac 2>/dev/null`
- if test -n "$auxdirline"; then
-   # Handle explicit AC_CONFIG_AUX_DIR settings.
-   auxdir=`echo "$auxdirline" | sed 's/^AC_CONFIG_AUX_DIR(\([^)]*\)).*$/\1/'`
-
-
diff --git a/libtool-nonneg.patch b/libtool-nonneg.patch
deleted file mode 100644 (file)
index d21ade8..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
---- libtool-1.3.5/ltmain.in.sopwith    Thu Jul 13 17:34:43 2000
-+++ libtool-1.3.5/ltmain.in    Thu Jul 13 17:36:31 2000
-@@ -1656,7 +1656,7 @@
-       # Check that each of the things are valid numbers.
-       case "$current" in
--      0 | [1-9] | [1-9][0-9]*) ;;
-+      [0-9]*) ;;
-       *)
-         $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
-         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
-@@ -1665,7 +1665,7 @@
-       esac
-       case "$revision" in
--      0 | [1-9] | [1-9][0-9]*) ;;
-+      [0-9]*) ;;
-       *)
-         $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
-         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
-@@ -1674,7 +1674,7 @@
-       esac
-       case "$age" in
--      0 | [1-9] | [1-9][0-9]*) ;;
-+      [0-9]*) ;;
-       *)
-         $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
-         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
diff --git a/libtool-test.patch b/libtool-test.patch
deleted file mode 100644 (file)
index ad13b33..0000000
+++ /dev/null
@@ -1,282 +0,0 @@
---- libtool-1.4.3/ltmain.sh.wiget      Wed Oct 23 04:26:24 2002
-+++ libtool-1.4.3/ltmain.sh    Thu Oct 24 16:55:44 2002
-@@ -1379,7 +1379,7 @@
-       ;;
-     esac
-     for pass in $passes; do
--      if test $linkmode = prog; then
-+      if test "$linkmode" = prog; then
-       # Determine which files to process
-       case $pass in
-       dlopen)
-@@ -1396,11 +1396,11 @@
-       found=no
-       case $deplib in
-       -l*)
--        if test $linkmode = oldlib && test $linkmode = obj; then
-+        if test "$linkmode" = oldlib && test "$linkmode" = obj; then
-           $echo "$modename: warning: \`-l' is ignored for archives/objects: $deplib" 1>&2
-           continue
-         fi
--        if test $pass = conv; then
-+        if test "$pass" = conv; then
-           deplibs="$deplib $deplibs"
-           continue
-         fi
-@@ -1420,7 +1420,7 @@
-             finalize_deplibs="$deplib $finalize_deplibs"
-           else
-             deplibs="$deplib $deplibs"
--            test $linkmode = lib && newdependency_libs="$deplib $newdependency_libs"
-+            test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
-           fi
-           continue
-         fi
-@@ -1429,16 +1429,16 @@
-         case $linkmode in
-         lib)
-           deplibs="$deplib $deplibs"
--          test $pass = conv && continue
-+          test "$pass" = conv && continue
-           newdependency_libs="$deplib $newdependency_libs"
-           newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
-           ;;
-         prog)
--          if test $pass = conv; then
-+          if test "$pass" = conv; then
-             deplibs="$deplib $deplibs"
-             continue
-           fi
--          if test $pass = scan; then
-+          if test "$pass" = scan; then
-             deplibs="$deplib $deplibs"
-             newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
-           else
-@@ -1453,7 +1453,7 @@
-         continue
-         ;; # -L
-       -R*)
--        if test $pass = link; then
-+        if test "$pass" = link; then
-           dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
-           # Make sure the xrpath contains only unique directories.
-           case "$xrpath " in
-@@ -1466,7 +1466,7 @@
-         ;;
-       *.la) lib="$deplib" ;;
-       *.$libext)
--        if test $pass = conv; then
-+        if test "$pass" = conv; then
-           deplibs="$deplib $deplibs"
-           continue
-         fi
-@@ -1489,7 +1489,7 @@
-           continue
-           ;;
-         prog)
--          if test $pass != link; then
-+          if test "$pass" != link; then
-             deplibs="$deplib $deplibs"
-           else
-             compile_deplibs="$deplib $compile_deplibs"
-@@ -1500,7 +1500,7 @@
-         esac # linkmode
-         ;; # *.$libext
-       *.lo | *.$objext)
--        if test $pass = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
-+        if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
-           # If there is no dlopen support or we're linking statically,
-           # we need to preload.
-           newdlprefiles="$newdlprefiles $deplib"
-@@ -1550,13 +1550,13 @@
-       if test "$linkmode,$pass" = "lib,link" ||
-          test "$linkmode,$pass" = "prog,scan" ||
--         { test $linkmode = oldlib && test $linkmode = obj; }; then
-+         { test "$linkmode" = oldlib && test "$linkmode" = obj; }; then
-          # Add dl[pre]opened files of deplib
-         test -n "$dlopen" && dlfiles="$dlfiles $dlopen"
-         test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"
-       fi
--      if test $pass = conv; then
-+      if test "$pass" = conv; then
-         # Only check for convenience libraries
-         deplibs="$lib $deplibs"
-         if test -z "$libdir"; then
-@@ -1577,7 +1577,7 @@
-               fi
-             tmp_libs="$tmp_libs $deplib"
-           done
--        elif test $linkmode != prog && test $linkmode != lib; then
-+        elif test "$linkmode" != prog && test "$linkmode" != lib; then
-           $echo "$modename: \`$lib' is not a convenience library" 1>&2
-           exit 1
-         fi
-@@ -1595,7 +1595,7 @@
-       fi
-       # This library was specified with -dlopen.
--      if test $pass = dlopen; then
-+      if test "$pass" = dlopen; then
-         if test -z "$libdir"; then
-           $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2
-           exit 1
-@@ -1644,7 +1644,7 @@
-       name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
-       # This library was specified with -dlpreopen.
--      if test $pass = dlpreopen; then
-+      if test "$pass" = dlpreopen; then
-         if test -z "$libdir"; then
-           $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2
-           exit 1
-@@ -1663,7 +1663,7 @@
-       if test -z "$libdir"; then
-         # Link the convenience library
--        if test $linkmode = lib; then
-+        if test "$linkmode" = lib; then
-           deplibs="$dir/$old_library $deplibs"
-         elif test "$linkmode,$pass" = "prog,link"; then
-           compile_deplibs="$dir/$old_library $compile_deplibs"
-@@ -1674,7 +1674,7 @@
-         continue
-       fi
--      if test $linkmode = prog && test $pass != link; then
-+      if test "$linkmode" = prog && test "$pass" != link; then
-         newlib_search_path="$newlib_search_path $ladir"
-         deplibs="$lib $deplibs"
-@@ -1713,7 +1713,7 @@
-         # Link against this shared library
-         if test "$linkmode,$pass" = "prog,link" ||
--         { test $linkmode = lib && test $hardcode_into_libs = yes; }; then
-+         { test "$linkmode" = lib && test "$hardcode_into_libs" = yes; }; then
-           # Hardcode the library path.
-           # Skip directories that are in the system default run-time
-           # search path.
-@@ -1735,7 +1735,7 @@
-             esac
-             ;;
-           esac
--          if test $linkmode = prog; then
-+          if test "$linkmode" = prog; then
-             # We need to hardcode the library path
-             if test -n "$shlibpath_var"; then
-               # Make sure the rpath contains only unique directories.
-@@ -1819,7 +1819,7 @@
-           linklib=$newlib
-         fi # test -n $old_archive_from_expsyms_cmds
--        if test $linkmode = prog || test "$mode" != relink; then
-+        if test "$linkmode" = prog || test "$mode" != relink; then
-           add_shlibpath=
-           add_dir=
-           add=
-@@ -1868,7 +1868,7 @@
-             *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
-             esac
-           fi
--          if test $linkmode = prog; then
-+          if test "$linkmode" = prog; then
-             test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
-             test -n "$add" && compile_deplibs="$add $compile_deplibs"
-           else
-@@ -1885,7 +1885,7 @@
-           fi
-         fi
--        if test $linkmode = prog || test "$mode" = relink; then
-+        if test "$linkmode" = prog || test "$mode" = relink; then
-           add_shlibpath=
-           add_dir=
-           add=
-@@ -1907,7 +1907,7 @@
-             add="-l$name"
-           fi
--          if test $linkmode = prog; then
-+          if test "$linkmode" = prog; then
-             test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
-             test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
-           else
-@@ -1915,7 +1915,7 @@
-             test -n "$add" && deplibs="$add $deplibs"
-           fi
-         fi
--      elif test $linkmode = prog; then
-+      elif test "$linkmode" = prog; then
-         if test "$alldeplibs" = yes &&
-            { test "$deplibs_check_method" = pass_all ||
-              { test "$build_libtool_libs" = yes &&
-@@ -1975,9 +1975,9 @@
-         fi
-       fi # link shared/static library?
--      if test $linkmode = lib; then
-+      if test "$linkmode" = lib; then
-         if test -n "$dependency_libs" &&
--           { test $hardcode_into_libs != yes || test $build_old_libs = yes ||
-+           { test "$hardcode_into_libs" != yes || test $build_old_libs = yes ||
-              test $link_static = yes; }; then
-           # Extract -R from dependency_libs
-           temp_deplibs=
-@@ -2009,7 +2009,7 @@
-           tmp_libs="$tmp_libs $deplib"
-         done
--        if test $link_all_deplibs != no; then
-+        if test "$link_all_deplibs" != no; then
-           # Add the search paths of all dependency libraries
-           for deplib in $dependency_libs; do
-             case $deplib in
-@@ -2052,15 +2052,15 @@
-         fi # link_all_deplibs != no
-       fi # linkmode = lib
-       done # for deplib in $libs
--      if test $pass = dlpreopen; then
-+      if test "$pass" = dlpreopen; then
-       # Link the dlpreopened libraries before other libraries
-       for deplib in $save_deplibs; do
-         deplibs="$deplib $deplibs"
-       done
-       fi
--      if test $pass != dlopen; then
--      test $pass != scan && dependency_libs="$newdependency_libs"
--      if test $pass != conv; then
-+      if test "$pass" != dlopen; then
-+      test "$pass" != scan && dependency_libs="$newdependency_libs"
-+      if test "$pass" != conv; then
-         # Make sure lib_search_path contains only unique directories.
-         lib_search_path=
-         for dir in $newlib_search_path; do
-@@ -2118,7 +2118,7 @@
-       deplibs=
-       fi
-     done # for pass
--    if test $linkmode = prog; then
-+    if test "$linkmode" = prog; then
-       dlfiles="$newdlfiles"
-       dlprefiles="$newdlprefiles"
-     fi
-@@ -2473,7 +2473,7 @@
-           ;;
-         *)
-           # Add libc to deplibs on all other systems if necessary.
--          if test $build_libtool_need_lc = "yes"; then
-+          if test "$build_libtool_need_lc" = "yes"; then
-             deplibs="$deplibs -lc"
-           fi
-           ;;
-@@ -2765,7 +2765,7 @@
-       # Test again, we may have decided not to build it any more
-       if test "$build_libtool_libs" = yes; then
--      if test $hardcode_into_libs = yes; then
-+      if test "$hardcode_into_libs" = yes; then
-         # Hardcode the library paths
-         hardcode_libdirs=
-         dep_rpath=
This page took 0.211195 seconds and 4 git commands to generate.