mirror of
https://git.freebsd.org/ports.git
synced 2025-06-14 01:00:33 -04:00
since this is unversioned. o Add booktree capture support with patches kindly supplied by "Steve O'Hara-Smith" <steve@sohara.org>. Work is in progress to get these merged back into ffmpeg's CVS repo o Add WITH_MP3 for lame mp3 support o Add WITH_VORBIS for vorbis support o Install shared library for the first time, begin versioning at 0 Reviewed by: freebsd-multimedia mailing list, "Steve O'Hara-Smith" <steve@sohara.org>, Anish Mistry <mistry.7@osu.edu>
22 lines
932 B
Text
22 lines
932 B
Text
--- libavcodec/Makefile.orig Sun Oct 6 12:26:38 2002
|
|
+++ libavcodec/Makefile Wed Oct 9 14:24:34 2002
|
|
@@ -7,8 +7,7 @@
|
|
VPATH=$(SRC_PATH)/libavcodec
|
|
|
|
# NOTE: -I.. is needed to include config.h
|
|
-CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
|
|
-LDFLAGS= -g
|
|
+CFLAGS= $(OPTFLAGS) -Wall -DHAVE_AV_CONFIG_H -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
|
|
|
|
OBJS= common.o utils.o mem.o allcodecs.o \
|
|
mpegvideo.o h263.o jrevdct.o jfdctfst.o jfdctint.o\
|
|
@@ -167,8 +166,7 @@
|
|
install: all
|
|
ifeq ($(BUILD_SHARED),yes)
|
|
install -d $(prefix)/lib
|
|
- install -s -m 755 $(SLIB) $(prefix)/lib/libavcodec-$(VERSION).so
|
|
- ln -sf libavcodec-$(VERSION).so $(prefix)/lib/libavcodec.so
|
|
+ install -s -m 755 $(SLIB) $(prefix)/lib/libavcodec.so
|
|
ldconfig || true
|
|
mkdir -p $(prefix)/include/ffmpeg
|
|
install -m 644 $(VPATH)/avcodec.h $(prefix)/include/ffmpeg/avcodec.h
|