[vlc-commits] Switch linking order of libcompat for modules
    David Fuhrmann 
    git at videolan.org
       
    Sat Nov  9 16:18:25 CET 2013
    
    
  
vlc | branch: master | David Fuhrmann <david.fuhrmann at googlemail.com> | Sat Nov  9 15:55:00 2013 +0100| [c664aa35a787a541545321a6ea041b03eaf95e16] | committer: David Fuhrmann
Switch linking order of libcompat for modules
This precedes libcompat before the system libraries to be able to use
10.7 compiled binaries on 10.6.
close #9527
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c664aa35a787a541545321a6ea041b03eaf95e16
---
 modules/common.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/common.am b/modules/common.am
index 9f78fb9..9bb5143 100644
--- a/modules/common.am
+++ b/modules/common.am
@@ -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
    
    
More information about the vlc-commits
mailing list