Mercurial > libavcodec.hg
changeset 6569:c8f1eeb9298a libavcodec
replace some ifeq with prettier ifdef
author | mru |
---|---|
date | Mon, 07 Apr 2008 22:17:47 +0000 |
parents | abe82c91bd42 |
children | 51a4d1e4d70a |
files | Makefile |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Mon Apr 07 22:17:44 2008 +0000 +++ b/Makefile Mon Apr 07 22:17:47 2008 +0000 @@ -362,12 +362,12 @@ 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 \