Lines 46-52
EXTRA_LTLIBRARIES = ${extra_ltlibs}
Link Here
|
46 |
include Modules.am |
46 |
include Modules.am |
47 |
|
47 |
|
48 |
if HAVE_PLUGINS |
48 |
if HAVE_PLUGINS |
49 |
LTLIBVLC = -L\$(top_builddir)/src -lvlc |
49 |
LTLIBVLC = \$(top_builddir)/src/libvlc.la |
50 |
|
50 |
|
51 |
AM_LDFLAGS = -rpath '\$(libvlcdir)' -avoid-version \\ |
51 |
AM_LDFLAGS = -rpath '\$(libvlcdir)' -avoid-version \\ |
52 |
-module -no-undefined -shrext \$(LIBEXT) |
52 |
-module -no-undefined -shrext \$(LIBEXT) |
Lines 141-148
EOF
Link Here
|
141 |
lib${mod}_plugin_la_CFLAGS = \`\$(VLC_CONFIG) --cflags plugin ${mod}\` |
141 |
lib${mod}_plugin_la_CFLAGS = \`\$(VLC_CONFIG) --cflags plugin ${mod}\` |
142 |
lib${mod}_plugin_la_CXXFLAGS = \`\$(VLC_CONFIG) --cxxflags plugin ${mod}\` |
142 |
lib${mod}_plugin_la_CXXFLAGS = \`\$(VLC_CONFIG) --cxxflags plugin ${mod}\` |
143 |
lib${mod}_plugin_la_OBJCFLAGS = \`\$(VLC_CONFIG) --objcflags plugin ${mod}\` |
143 |
lib${mod}_plugin_la_OBJCFLAGS = \`\$(VLC_CONFIG) --objcflags plugin ${mod}\` |
144 |
lib${mod}_plugin_la_LDFLAGS = \`\$(VLC_CONFIG) --libs plugin ${mod}\` \$(AM_LDFLAGS) |
144 |
lib${mod}_plugin_la_LDFLAGS = \$(AM_LDFLAGS) |
145 |
lib${mod}_plugin_la_LIBADD = \$(AM_LIBADD) |
145 |
lib${mod}_plugin_la_LIBADD = \$(AM_LIBADD) \`\$(VLC_CONFIG) -Lplugins plugin ${mod}\` |
|
|
146 |
# Need to add _la_DEPENDENCIES manually, else automake gets the VLC_CONFIG stuff wrong |
147 |
lib${mod}_plugin_la_DEPENDENCIES = \$(AM_LIBADD) |
146 |
EOF |
148 |
EOF |
147 |
done |
149 |
done |
148 |
|
150 |
|