diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-03-18 20:29:29 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-03-18 20:29:29 +0000 |
commit | da9d12ec46e83a61c10d442925a00c1a3d28542f (patch) | |
tree | 4d120e030738013cb0b0966b6d25af4f2565a330 /media-libs/libmatroska/files | |
parent | Add patch to respect LDFLAGS and CXX. (diff) | |
download | historical-da9d12ec46e83a61c10d442925a00c1a3d28542f.tar.gz historical-da9d12ec46e83a61c10d442925a00c1a3d28542f.tar.bz2 historical-da9d12ec46e83a61c10d442925a00c1a3d28542f.zip |
Add patch to respect LDFLAGS and CXX.
Package-Manager: portage-2.1_pre6-r3
Diffstat (limited to 'media-libs/libmatroska/files')
-rw-r--r-- | media-libs/libmatroska/files/libmatroska-0.8.0-respectflags.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/media-libs/libmatroska/files/libmatroska-0.8.0-respectflags.patch b/media-libs/libmatroska/files/libmatroska-0.8.0-respectflags.patch new file mode 100644 index 000000000000..dcf9de4fbffb --- /dev/null +++ b/media-libs/libmatroska/files/libmatroska-0.8.0-respectflags.patch @@ -0,0 +1,13 @@ +Index: libmatroska-0.8.0/make/linux/Makefile +=================================================================== +--- libmatroska-0.8.0.orig/make/linux/Makefile ++++ libmatroska-0.8.0/make/linux/Makefile +@@ -102,7 +102,7 @@ $(LIBRARY): $(objects) + $(RANLIB) $@ + + $(LIBRARY_SO): $(objects_so) +- $(CXX) -shared -Wl,-soname,$(LIBRARY_SO_VER) -o $(LIBRARY_SO_VER) $(objects_so) -lebml ++ $(CXX) $(LINKFLAGS) -shared -Wl,-soname,$(LIBRARY_SO_VER) -o $(LIBRARY_SO_VER) $(objects_so) -lebml + ln -s $(LIBRARY_SO_VER) $(LIBRARY_SO) + + clean: cleantest |