Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 157746 | Differences between
and this patch

Collapse All | Expand All

(-)vlc-0.9.0-svn/modules/genmf (-3 / +5 lines)
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
(-)vlc-0.9.0-svn/vlc-config.in.in (-1 / +2 lines)
Lines 193-199 while test $# -gt 0; do Link Here
193
    --objcflags)
193
    --objcflags)
194
      echo_objcflags=yes
194
      echo_objcflags=yes
195
      ;;
195
      ;;
196
    --libs)
196
    --libs|-Lplugins)
197
      echo_libs=yes
197
      echo_libs=yes
198
      ;;
198
      ;;
199
    -*)
199
    -*)
Lines 337-339 if test "${echo_libs}" = yes; then Link Here
337
  fi
337
  fi
338
  echo "${libs} ${ldflags}"
338
  echo "${libs} ${ldflags}"
339
fi
339
fi
340

Return to bug 157746