Commit 935af8b0 authored by Damien Fouilleul's avatar Damien Fouilleul

- bootstrap: quick fix for libtooling modules for mingw

parent 4d417a83
...@@ -221,7 +221,11 @@ EXTRA_LTLIBRARIES = ${extra_ltlibs} ...@@ -221,7 +221,11 @@ EXTRA_LTLIBRARIES = ${extra_ltlibs}
include Modules.am include Modules.am
LTLIBVLC = \$(top_builddir)/src/libvlc.la if HAVE_WIN32
LTLIBVLC = -L\$(top_builddir)/src -lvlc.dll
else
LTLIBVLC = -L\$(top_builddir)/src -lvlc
endif
AM_LDFLAGS = -rpath '\$(libvlcdir)' -avoid-version \\ AM_LDFLAGS = -rpath '\$(libvlcdir)' -avoid-version \\
-module -no-undefined -shrext \$(LIBEXT) \\ -module -no-undefined -shrext \$(LIBEXT) \\
...@@ -229,9 +233,8 @@ AM_LDFLAGS = -rpath '\$(libvlcdir)' -avoid-version \\ ...@@ -229,9 +233,8 @@ AM_LDFLAGS = -rpath '\$(libvlcdir)' -avoid-version \\
if USE_LIBTOOL if USE_LIBTOOL
AM_LIBADD = \$(LTLIBVLC) AM_LIBADD = \$(LTLIBVLC)
endif else
if HAVE_WIN32 LIBVLC = -l\$(top_builddir) -lvlc
LIBVLC = \$(top_builddir)/src/libvlc.dll
endif endif
all: all-modules all: all-modules
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment