Changeset 92ad9789e7928aa2ac8d3db53bbe8a48d31e7cd7
- Timestamp:
- 07/20/07 15:13:53
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1184937233 +0000
- git-parent:
[88e31f14f1b5bc41d1f2be07e4623b52623b746a]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1184937233 +0000
- Message:
Clean up
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r14b5b5f |
r92ad978 |
|
| 222 | 222 | LTLIBVLC = \$(top_builddir)/src/libvlc.la |
|---|
| 223 | 223 | |
|---|
| | 224 | AM_LDFLAGS = -rpath '\$(libvlcdir)' -avoid-version \\ |
|---|
| | 225 | -module -no-undefined -shrext \$(LIBEXT) \\ |
|---|
| | 226 | -export-symbol-regex ^\$(VLC_ENTRY)\$\$ |
|---|
| | 227 | |
|---|
| 224 | 228 | if USE_LIBTOOL |
|---|
| 225 | | LIBADD = \$(LTLIBVLC) |
|---|
| | 229 | AM_LIBADD = \$(LTLIBVLC) |
|---|
| 226 | 230 | endif |
|---|
| 227 | 231 | if HAVE_WIN32 |
|---|
| 228 | 232 | LIBVLC = \$(top_builddir)/src/libvlc.dll |
|---|
| 229 | | LIBADD = \$(LIBVLC) |
|---|
| 230 | 233 | endif |
|---|
| 231 | 234 | |
|---|
| … | … | |
| 253 | 256 | _plugin.la_plugin\$(LIBEXT): |
|---|
| 254 | 257 | @mod="\$*" ; mod=\$\${mod#lib} ; \ |
|---|
| 255 | | ldfl="\`\$(VLC_CONFIG) --libs plugin \$\$mod\` \$(LIBADD) -u \$(SYMPREF)\$(VLC_ENTRY)" ; \ |
|---|
| | 258 | ldfl="\`\$(VLC_CONFIG) --libs plugin \$\$mod\` \$(LIBVLC) -u \$(SYMPREF)\$(VLC_ENTRY)" ; \ |
|---|
| 256 | 259 | case \`\$(VLC_CONFIG) --linkage \$\$mod\` in \\ |
|---|
| 257 | 260 | c++) ld="\$(CXXLINK)" ;; \ |
|---|
| … | … | |
| 350 | 353 | lib${mod}_plugin_la_CXXFLAGS = \`\$(VLC_CONFIG) --cxxflags plugin ${mod}\` |
|---|
| 351 | 354 | lib${mod}_plugin_la_OBJCFLAGS = \`\$(VLC_CONFIG) --objcflags plugin ${mod}\` |
|---|
| 352 | | lib${mod}_plugin_la_LDFLAGS = \`\$(VLC_CONFIG) --libs plugin ${mod}\` \\ |
|---|
| 353 | | -rpath '\$(libvlcdir)' -avoid-version -module -shrext \$(LIBEXT) \\ |
|---|
| 354 | | -export-symbol-regex ^\$(VLC_ENTRY)\$\$ -no-undefined \$(LIBADD) |
|---|
| | 355 | lib${mod}_plugin_la_LDFLAGS = \`\$(VLC_CONFIG) --libs plugin ${mod}\` \$(AM_LDFLAGS) |
|---|
| | 356 | lib${mod}_plugin_la_LIBADD = $\(AM_LIBADD) |
|---|
| 355 | 357 | EOF |
|---|
| 356 | 358 | done |
|---|