diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2008-04-28 21:12:51 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2008-04-28 21:12:51 +0000 |
commit | 1a48209c551563235122612115f88303d8f9601e (patch) | |
tree | e0972869f11c60297cd45e0f218661a5e5b43bf4 /x11-libs/gtk+/files | |
parent | Remove old versions. (diff) | |
download | gentoo-2-1a48209c551563235122612115f88303d8f9601e.tar.gz gentoo-2-1a48209c551563235122612115f88303d8f9601e.tar.bz2 gentoo-2-1a48209c551563235122612115f88303d8f9601e.zip |
Fix libtool usage for configure stage, bug #213789.
Fix bug #197899 by raising gtk-doc to 1.8 (as per upstream svn).
(Portage version: 2.1.5_rc5)
Diffstat (limited to 'x11-libs/gtk+/files')
-rw-r--r-- | x11-libs/gtk+/files/gtk+-2.12.9-libtool-2.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/x11-libs/gtk+/files/gtk+-2.12.9-libtool-2.patch b/x11-libs/gtk+/files/gtk+-2.12.9-libtool-2.patch new file mode 100644 index 000000000000..b4570cafb10d --- /dev/null +++ b/x11-libs/gtk+/files/gtk+-2.12.9-libtool-2.patch @@ -0,0 +1,25 @@ +############# +# Taken from +# http://www.mail-archive.com/pld-cvs-commit@lists.pld-linux.org/msg135168.html +############# + +--- gtk+-2.12.9/configure.in.orig 2008-03-12 05:17:28.000000000 +0100 ++++ gtk+-2.12.9/configure.in 2008-04-22 14:48:55.434333756 +0200 +@@ -166,6 +166,8 @@ + + AC_LIBTOOL_WIN32_DLL + AM_PROG_LIBTOOL ++dnl when using libtool 2.x create libtool early, because it's used in configure ++m4_ifdef([LT_OUTPUT], [LT_OUTPUT]) + + # Make sure we use 64-bit versions of various file stuff. + AC_SYS_LARGEFILE +@@ -377,7 +379,7 @@ + case $enable_explicit_deps in + auto) + export SED +- deplibs_check_method=`(./libtool --config; echo 'eval echo $deplibs_check_method') | sh` ++ deplibs_check_method=`(./libtool --config; echo 'eval echo \"$deplibs_check_method\"') | sh` + if test "x$deplibs_check_method" '!=' xpass_all || test "x$enable_static" = xyes ; then + enable_explicit_deps=yes + else |