# HG changeset patch # User pva@gentoo.org # Date 1294454087 0 # Node ID 4f89666c8d81d39159ddcf40faca98bda4bd150f # Parent a063e2a804ff3f1a115d86ffafb6321c9c8aca29 Make perl bindings respect LDFLAGS. Fixes #12638. committer: John Bailey diff -r a063e2a804ff -r 4f89666c8d81 COPYRIGHT --- a/COPYRIGHT Sat Jan 08 02:16:41 2011 +0000 +++ b/COPYRIGHT Sat Jan 08 02:34:47 2011 +0000 @@ -540,6 +540,7 @@ Andrew Victor Jorge VillaseƱor (Masca) Bjoern Voigt +Peter Volkov Wan Hing Wah Philip Walford Nathan Walp diff -r a063e2a804ff -r 4f89666c8d81 ChangeLog --- a/ChangeLog Sat Jan 08 02:16:41 2011 +0000 +++ b/ChangeLog Sat Jan 08 02:34:47 2011 +0000 @@ -7,6 +7,7 @@ (half of #13095) * Starting multiple video calls and ending one no longer causes the other calls to stop sending audio and video. (Jakub Adam) (#12758) + * Perl bindings now respect LDFLAGS. (Peter Volkov) (#12638) IRC: * Don't send ISON messages longer than 512 bytes. (Jeffrey Honig) (#9692) diff -r a063e2a804ff -r 4f89666c8d81 libpurple/plugins/perl/common/Makefile.PL.in --- a/libpurple/plugins/perl/common/Makefile.PL.in Sat Jan 08 02:16:41 2011 +0000 +++ b/libpurple/plugins/perl/common/Makefile.PL.in Sat Jan 08 02:34:47 2011 +0000 @@ -10,6 +10,7 @@ (ABSTRACT_FROM => '@srcdir@/Purple.pm', # finds $ABSTRACT AUTHOR => 'Purple ') : ()), '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 diff -r a063e2a804ff -r 4f89666c8d81 pidgin/plugins/perl/common/Makefile.PL.in --- a/pidgin/plugins/perl/common/Makefile.PL.in Sat Jan 08 02:16:41 2011 +0000 +++ b/pidgin/plugins/perl/common/Makefile.PL.in Sat Jan 08 02:34:47 2011 +0000 @@ -9,6 +9,7 @@ ('ABSTRACT_FROM' => '@srcdir@/Pidgin.pm', # finds $ABSTRACT 'AUTHOR' => 'Pidgin ') : ()), 'DEFINE' => '@DEBUG_CFLAGS@', + 'dynamic_lib' => { 'OTHERLDFLAGS' => '@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"],