]> git.sesse.net Git - vlc/commitdiff
Switch linking order of libcompat for modules
authorDavid Fuhrmann <david.fuhrmann@googlemail.com>
Sat, 9 Nov 2013 14:55:00 +0000 (15:55 +0100)
committerDavid Fuhrmann <david.fuhrmann@googlemail.com>
Sat, 9 Nov 2013 15:18:01 +0000 (16:18 +0100)
This precedes libcompat before the system libraries to be able to use
10.7 compiled binaries on 10.6.

close #9527

modules/common.am

index 9f78fb9a39d77996eb35e4469c219ceaecd0f814..9bb5143547c26e4e7ff6c65576b4e3f20f12025e 100644 (file)
@@ -31,7 +31,7 @@ AM_LDFLAGS = \
        -export-symbols-regex ^vlc_entry \
        -shrext $(LIBEXT) \
        -no-undefined \
-       $(LTLIBVLCCORE) $(top_builddir)/compat/libcompat.la
+       $(top_builddir)/compat/libcompat.la $(LTLIBVLCCORE) 
 if HAVE_WIN32
 AM_LDFLAGS += $(top_builddir)/modules/module.rc.lo
 endif