diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-01-14 18:07:36 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-01-14 18:07:36 +0000 |
commit | ba64106a398cb93898e26a6535b89c592b58ba46 (patch) | |
tree | 8dca322e6693a44dd6012c042a2ada128d2d2d06 /libavcodec/Makefile | |
parent | dd1a74d25decd6eaa7c78a7062fa12edb043efaf (diff) | |
download | ffmpeg-ba64106a398cb93898e26a6535b89c592b58ba46.tar.gz |
Remove redundant --enable-shared-pp configure option and make the PP code
use the standard --enable-shared option.
Originally committed as revision 4858 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index fc91026afd..2d1302a5fe 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -290,7 +290,7 @@ OBJS+= x264.o endif ifeq ($(CONFIG_PP),yes) -ifeq ($(SHARED_PP),yes) +ifeq ($(BUILD_SHARED),yes) EXTRALIBS += -Llibpostproc -lpostproc$(BUILDSUF) else # LIBS += libpostproc/libpostproc.a ... should be fixed |