diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2010-08-05 23:53:23 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2010-08-05 23:53:23 +0000 |
commit | 619d81f4189f6201fd6346f4e85cea0a26f9f1d8 (patch) | |
tree | 880ced7df05cf62094d2f3091e2bb9f9deb4246e /net-im/pidgin/files | |
parent | Version bump; improve ebuild to not build tests; add USE flags for debug, min... (diff) | |
download | historical-619d81f4189f6201fd6346f4e85cea0a26f9f1d8.tar.gz historical-619d81f4189f6201fd6346f4e85cea0a26f9f1d8.tar.bz2 historical-619d81f4189f6201fd6346f4e85cea0a26f9f1d8.zip |
Respect LDFLAGS wrt bug #329557
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'net-im/pidgin/files')
-rw-r--r-- | net-im/pidgin/files/pidgin-2.7.2-ldflags.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/net-im/pidgin/files/pidgin-2.7.2-ldflags.patch b/net-im/pidgin/files/pidgin-2.7.2-ldflags.patch new file mode 100644 index 000000000000..1a4cd7ad5313 --- /dev/null +++ b/net-im/pidgin/files/pidgin-2.7.2-ldflags.patch @@ -0,0 +1,25 @@ +Index: pidgin-2.7.2/libpurple/plugins/perl/common/Makefile.PL.in +=================================================================== +--- pidgin-2.7.2.orig/libpurple/plugins/perl/common/Makefile.PL.in ++++ pidgin-2.7.2/libpurple/plugins/perl/common/Makefile.PL.in +@@ -10,6 +10,7 @@ WriteMakefile( + (ABSTRACT_FROM => '@srcdir@/Purple.pm', # finds $ABSTRACT + AUTHOR => 'Purple <http://pidgin.im/>') : ()), + 'DEFINE' => '@DEBUG_CFLAGS@', ++ 'dynamic_lib' => { 'OTHERLDFLAGS' => '@LDFLAGS@' }, + 'INC' => '-I. -I@srcdir@ -I@top_srcdir@ -I@top_srcdir@/libpurple @GLIB_CFLAGS@', + 'OBJECT' => '$(O_FILES)', # link all the C files too + # 'OPTIMIZE' => '-g', # For debugging +Index: pidgin-2.7.2/pidgin/plugins/perl/common/Makefile.PL.in +=================================================================== +--- pidgin-2.7.2.orig/pidgin/plugins/perl/common/Makefile.PL.in ++++ pidgin-2.7.2/pidgin/plugins/perl/common/Makefile.PL.in +@@ -8,7 +8,7 @@ WriteMakefile( + ($] >= 5.005 ? ## Add these new keywords supported since 5.005 + ('ABSTRACT_FROM' => '@srcdir@/Pidgin.pm', # finds $ABSTRACT + 'AUTHOR' => 'Pidgin <http://pidgin.im/>') : ()), +- 'DEFINE' => '@DEBUG_CFLAGS@', ++ 'DEFINE' => '@DEBUG_CFLAGS@ @LDFLAGS@', + 'INC' => '-I. -I@srcdir@ -I@top_srcdir@ -I@top_srcdir@/libpurple -I@top_srcdir@/pidgin @GTK_CFLAGS@', + 'OBJECT' => '$(O_FILES)', # link all the C files too + 'TYPEMAPS' => ["@top_srcdir@/libpurple/plugins/perl/common/typemap"], |