Commit f7b14a31 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Libass can now disable test.

And clean it. Only Git revision is interested. You can't build contribs without Git.
parent d7ba3f3f
...@@ -2495,26 +2495,11 @@ DISTCLEAN_PKG += schroedinger-$(SCHROED_VERSION).tar.gz ...@@ -2495,26 +2495,11 @@ DISTCLEAN_PKG += schroedinger-$(SCHROED_VERSION).tar.gz
libass-$(ASS_VERSION).tar.bz2: libass-$(ASS_VERSION).tar.bz2:
$(WGET) $(ASS_URL) $(WGET) $(ASS_URL)
ifdef GIT
libass: libass:
$(GIT) clone $(ASS_GIT) $(GIT) clone $(ASS_GIT)
ifneq ($(HOST),$(BUILD))
patch -p0 < Patches/libass-cross.patch
endif
(cd $@; autoreconf -ivf)
else
# mplayer patches up to August 8, 2008 are included
libass: libass-$(ASS_VERSION).tar.bz2
$(EXTRACT_BZ2)
(cd $@; patch -p1 < ../Patches/libass_mplayer_updates.patch)
ifneq ($(HOST),$(BUILD))
patch -p0 < Patches/libass-cross.patch
(cd $@; autoreconf -ivf)
endif
endif
.libass: libass .png .libass: libass
(cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="$(CFLAGS) -O3" && make && make install) (cd $<; $(HOSTCC) ./configure --disable-png $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="$(CFLAGS) -O3" && make && make install)
touch $@ touch $@
CLEAN_FILE += .libass CLEAN_FILE += .libass
......
--- libass/Makefile.am.orig 2009-07-26 00:32:35.000000000 +0200
+++ libass/Makefile.am 2009-07-26 00:34:32.000000000 +0200
@@ -9,5 +9,5 @@
test = test
endif
-SUBDIRS = libass $(test)
+SUBDIRS = libass
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment