[vlc-commits] Switch linking order of libcompat for modules

David Fuhrmann git at videolan.org
Sun Nov 10 12:13:09 CET 2013


vlc/vlc-2.1 | branch: master | David Fuhrmann <david.fuhrmann at googlemail.com> | Sat Nov  9 15:55:00 2013 +0100| [55c1afb29e9ee951f5c4647affb1fa860765d3fd] | 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
(cherry picked from commit c664aa35a787a541545321a6ea041b03eaf95e16)

Conflicts:
	modules/common.am

> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=55c1afb29e9ee951f5c4647affb1fa860765d3fd
---

 modules/common.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/common.am b/modules/common.am
index 59a68d9..9f9e9f8 100644
--- a/modules/common.am
+++ b/modules/common.am
@@ -32,7 +32,7 @@ AM_LDFLAGS = -rpath '$(libvlcdir)' \
 	-export-symbols-regex ^vlc_entry \
 	-shrext $(LIBEXT) \
 	-no-undefined \
-	$(LTLIBVLCCORE) $(top_builddir)/compat/libcompat.la
+	$(top_builddir)/compat/libcompat.la $(LTLIBVLCCORE) 
 
 include $(srcdir)/Modules.am
 



More information about the vlc-commits mailing list