diff options
author | Andy Wingo <wingo@pobox.com> | 2005-11-14 17:11:55 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2005-11-14 17:11:55 +0000 |
commit | d845b025d88b05d7f1679c9639311471e6e152e6 (patch) | |
tree | 6b7ba124071ad526a212a59e247940adb966e2e4 | |
parent | e54227eca0f167de0e026b29132055d00fc256ba (diff) | |
download | gst-plugins-bad-d845b025d88b05d7f1679c9639311471e6e152e6.tar.gz gst-plugins-bad-d845b025d88b05d7f1679c9639311471e6e152e6.tar.bz2 gst-plugins-bad-d845b025d88b05d7f1679c9639311471e6e152e6.zip |
configure.ac (GST_PLUGIN_LDFLAGS): -no-undefined for better debugging, allows dll builds on windows. Fixes #316076.
Original commit message from CVS:
2005-11-14 Andy Wingo <wingo@pobox.com>
* configure.ac (GST_PLUGIN_LDFLAGS): -no-undefined for better
debugging, allows dll builds on windows. Fixes #316076.
-rw-r--r-- | ChangeLog | 5 | ||||
m--------- | common | 0 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2005-11-14 Andy Wingo <wingo@pobox.com> + + * configure.ac (GST_PLUGIN_LDFLAGS): -no-undefined for better + debugging, allows dll builds on windows. Fixes #316076. + 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org> * configure.ac: back to HEAD diff --git a/common b/common -Subproject c6e5de72d79afdcad7d7b3cf4a35305f7f3ddeb +Subproject 657b549dfb640a76f3d7ab7676e453c801a83dc diff --git a/configure.ac b/configure.ac index ef8fdb40..8c581357 100644 --- a/configure.ac +++ b/configure.ac @@ -282,7 +282,7 @@ dnl =========================================================================== plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR" AC_SUBST(plugindir) -GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '[_]*(gst_|Gst|GST_).*' $GST_LIBS" +GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '[_]*(gst_|Gst|GST_).*' $GST_LIBS -no-undefined" AC_SUBST(GST_PLUGIN_LDFLAGS) dnl these are all the gst plug-ins, compilable without additional libs |