From 72dedae65d3dd5a712e0a880b52732de3d36bb5f Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Mon, 23 Feb 2015 12:24:39 +0100 Subject: [PATCH] validate: Define GST_PLUGIN_LDFLAGS as needed --- validate/configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/validate/configure.ac b/validate/configure.ac index 45a0112de1..0d2f7adb5c 100644 --- a/validate/configure.ac +++ b/validate/configure.ac @@ -266,6 +266,11 @@ dnl LDFLAGS modifier defining exported symbols from built libraries GST_LIB_LDFLAGS="-export-symbols-regex \^[_]?\(gst_\|Gst\|GST_\).*" AC_SUBST(GST_LIB_LDFLAGS) +dnl this really should only contain flags, not libs - they get added before +dnl whatevertarget_LIBS and -L flags here affect the rest of the linking +GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '^[_]*gst_plugin_.*' $GST_ALL_LDFLAGS" +AC_SUBST(GST_PLUGIN_LDFLAGS) + AM_PATH_PYTHON(2.7.0) AS_AC_EXPAND(LIBDIR, $libdir) AC_MSG_NOTICE(Storing library files in $LIBDIR)