Mercurial > mplayer.hg
view libswscale/Makefile @ 19450:185942a2f517
Fix xv and xinerama force on --enable-*
The previous commit changed the conditions of check execution to match Diego's semantics
(execute check only on 'auto'), but the 'else' case forces detection to 'no',
even if previous --enable-* had set it to 'yes'.
author | iive |
---|---|
date | Sat, 19 Aug 2006 19:10:27 +0000 |
parents | 4f71ed7cb512 |
children | b3939dba3c13 |
line wrap: on
line source
include ../config.mak NAME=swscale ifeq ($(BUILD_SHARED),yes) LIBVERSION=$(SWSVERSION) LIBMAJOR=$(SWSMAJOR) EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) endif # NOTE: -I.. is needed to include config.h CFLAGS=-I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil $(OPTFLAGS) \ -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ -D_GNU_SOURCE OBJS= swscale.o rgb2rgb.o yuv2rgb.o ifeq ($(TARGET_ALTIVEC),yes) OBJS+= yuv2rgb_altivec.o endif HEADERS = swscale.h rgb2rgb.h include $(SRC_PATH)/common.mak