summaryrefslogtreecommitdiff
path: root/libavcodec/Makefile
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2008-04-07 22:17:47 +0000
committerMåns Rullgård <mans@mansr.com>2008-04-07 22:17:47 +0000
commit8e255b8bda61e99e18d8aed456fa0131012acca6 (patch)
tree7b9db12a10a17cdaa5419f46a5810b132df05d94 /libavcodec/Makefile
parentdbe6c6ff00bf57b709d0705a21efe64927d6e9dc (diff)
replace some ifeq with prettier ifdef
Originally committed as revision 12764 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r--libavcodec/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 3652464c7e..a47f04b70c 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -362,12 +362,12 @@ OBJS-$(HAVE_W32THREADS) += w32thread.o
OBJS-$(HAVE_XVMC) += xvmcvideo.o
-ifneq ($(CONFIG_SWSCALE),yes)
+ifndef CONFIG_SWSCALE
OBJS += imgresample.o
endif
# processor-specific code
-ifeq ($(HAVE_MMX),yes)
+ifdef HAVE_MMX
OBJS += i386/fdct_mmx.o \
i386/cputest.o \
i386/dsputil_mmx.o \