mirror of
https://git.freebsd.org/ports.git
synced 2025-06-25 14:40:32 -04:00
o SHLIB version bump: a trick to help detect the problem that ffmpeg will not build with the previous ffmpeg library installed PR: 69210 [1], 74225 [2] Submitted by: ahze [1], Frank Mayhar <frank@exit.com> [2]
13 lines
566 B
Text
13 lines
566 B
Text
--- libavformat/Makefile.orig Thu Sep 11 22:55:10 2003
|
|
+++ libavformat/Makefile Thu Sep 11 23:12:50 2003
|
|
@@ -88,8 +88,8 @@
|
|
install: all
|
|
ifeq ($(BUILD_SHARED),yes)
|
|
install -d $(prefix)/lib
|
|
- install -s -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so
|
|
- ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so
|
|
+ install -s -m 755 $(SLIB) $(prefix)/lib/libavformat.so.1
|
|
+ ln -sf libavformat.so.1 $(prefix)/lib/libavformat.so
|
|
ldconfig || true
|
|
mkdir -p $(prefix)/include/ffmpeg
|
|
install -m 644 $(VPATH)/avformat.h $(prefix)/include/ffmpeg/avformat.h
|