[FFmpeg-cvslog] r17486 - trunk/Makefile

diego subversion
Sat Feb 21 19:41:53 CET 2009


Author: diego
Date: Sat Feb 21 19:41:52 2009
New Revision: 17486

Log:
Bail out if regtest-flashsv is run but zlib is not enabled.

Modified:
   trunk/Makefile

Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile	Sat Feb 21 19:31:38 2009	(r17485)
+++ trunk/Makefile	Sat Feb 21 19:41:52 2009	(r17486)
@@ -289,6 +289,15 @@ swscale-error:
 	@exit 1
 endif
 
+ifneq ($(CONFIG_ZLIB),yes)
+regtest-flashsv codectest: zlib-error
+endif
+zlib-error:
+	@echo
+	@echo "This regression test requires zlib."
+	@echo
+	@exit 1
+
 codectest: $(VSYNTH_REG) $(ROTOZOOM_REG)
 	diff -u -w $(FFMPEG_REFFILE)   $(VSYNTH_REG)
 	diff -u -w $(ROTOZOOM_REFFILE) $(ROTOZOOM_REG)
@@ -346,6 +355,6 @@ tests/seek_test$(EXESUF): tests/seek_tes
 	$(CC) $(FF_LDFLAGS) $(CFLAGS) -o $@ $< $(FF_EXTRALIBS)
 
 
-.PHONY: lib videohook documentation *test regtest-* swscale-error alltools check
+.PHONY: lib videohook documentation *test regtest-* swscale-error zlib-error alltools check
 
 -include $(VHOOK_DEPS)




More information about the ffmpeg-cvslog mailing list