Commit 56d009ad authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Propagate libvlc move in plugins

parent 238cc870
...@@ -59,7 +59,7 @@ DIST_misc = \ ...@@ -59,7 +59,7 @@ DIST_misc = \
test.html \ test.html \
$(NULL) $(NULL)
LIBRARIES_libvlc = $(top_builddir)/lib/libvlc.a LIBRARIES_libvlc = $(top_builddir)/src/libvlc.a
if BUILD_ACTIVEX if BUILD_ACTIVEX
......
...@@ -3,10 +3,10 @@ import os ...@@ -3,10 +3,10 @@ import os
if os.sys.platform in ('win32', 'darwin'): if os.sys.platform in ('win32', 'darwin'):
# Do not use PIC version on win32 and Mac OS X # Do not use PIC version on win32 and Mac OS X
vlclib='../../lib/libvlc.a' vlclib='../../src/libvlc.a'
picflag='' picflag=''
else: else:
vlclib='../../lib/libvlc_pic.a' vlclib='../../src/libvlc_pic.a'
picflag='pic' picflag='pic'
def get_vlcconfig(): def get_vlcconfig():
......
...@@ -26,6 +26,8 @@ DIST_misc = \ ...@@ -26,6 +26,8 @@ DIST_misc = \
vlcintf.idl \ vlcintf.idl \
$(NULL) $(NULL)
LIBRARIES_libvlc = $(top_builddir)/src/libvlc.a
if BUILD_MOZILLA if BUILD_MOZILLA
# Under Win32, Mozilla plugins need to be named NP******.DLL, but under Unix # Under Win32, Mozilla plugins need to be named NP******.DLL, but under Unix
...@@ -33,7 +35,6 @@ if BUILD_MOZILLA ...@@ -33,7 +35,6 @@ if BUILD_MOZILLA
# under Win32 and npunix.c under Unix. # under Win32 and npunix.c under Unix.
if HAVE_WIN32 if HAVE_WIN32
LIBRARIES_libvlc = $(top_builddir)/lib/libvlc.a
npvlc_DATA = npvlc$(LIBEXT) npvlc_DATA = npvlc$(LIBEXT)
npvlcdir = $(libdir) npvlcdir = $(libdir)
...@@ -52,8 +53,6 @@ LDFLAGS_npvlc = -shared $(LIBRARIES_libvlc) `$(VLC_CONFIG) --libs mozilla vlc bu ...@@ -52,8 +53,6 @@ LDFLAGS_npvlc = -shared $(LIBRARIES_libvlc) `$(VLC_CONFIG) --libs mozilla vlc bu
else else
if HAVE_DARWIN if HAVE_DARWIN
LIBRARIES_libvlc = $(top_builddir)/lib/libvlc.a
npvlc_DATA = npvlc$(LIBEXT) npvlc_DATA = npvlc$(LIBEXT)
npvlcdir = $(libdir) npvlcdir = $(libdir)
...@@ -87,8 +86,6 @@ VLC\ Plugin.plugin: npvlc.rsrc npvlc.dylib ...@@ -87,8 +86,6 @@ VLC\ Plugin.plugin: npvlc.rsrc npvlc.dylib
else else
LIBRARIES_libvlc = $(top_builddir)/lib/libvlc_pic.a
npvlc_DATA = libvlcplugin$(LIBEXT) npvlc_DATA = libvlcplugin$(LIBEXT)
npvlcdir = $(libdir)/mozilla/plugins npvlcdir = $(libdir)/mozilla/plugins
......
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