aboutsummaryrefslogtreecommitdiff
path: root/lib/libass
diff options
context:
space:
mode:
authorS. Davilla <davilla@4pi.com>2011-03-18 01:40:24 -0400
committerS. Davilla <davilla@4pi.com>2011-03-18 12:11:12 -0400
commitc01cb8105ef224221ce3c4a6813d6bc2bc1b5cd5 (patch)
tree9d34347f739b11476183aad8f84ee7c005116b14 /lib/libass
parentb629ac398e1e719ce4ed04f7faf6c3c762d82485 (diff)
[osx/ios] banish libass to xxx-depends, this removes the need for an external flag as osx/ios/linux/win are external libass but win is still dyloaded while the others are compile linked
Diffstat (limited to 'lib/libass')
-rw-r--r--lib/libass/xbmc/Makefile.in31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/libass/xbmc/Makefile.in b/lib/libass/xbmc/Makefile.in
deleted file mode 100644
index 13726e7602..0000000000
--- a/lib/libass/xbmc/Makefile.in
+++ /dev/null
@@ -1,31 +0,0 @@
-abs_top_srcdir=@abs_top_srcdir@
-
-ARCH=@ARCH@
-SYSROOT=@SYSROOT@
-
-SYSDIR=$(abs_top_srcdir)/system/players/dvdplayer
-SO=libass-$(ARCH).so
-SLIB=$(SYSDIR)/$(SO)
-DIRS=..
-
-.PHONY: compile
-
-ifeq ($(findstring osx,$(ARCH)), osx)
-$(SLIB): ../libass/.libs/libass.dylib
- $(CC) $(SYSROOT) $(LDFLAGS) -Wl,-alias_list,@abs_top_srcdir@/xbmc/cores/DllLoader/exports/wrapper_mach_alias \
- -bundle -undefined dynamic_lookup -read_only_relocs suppress -lfontconfig -o $@ \
- @abs_top_srcdir@/xbmc/cores/DllLoader/exports/wrapper.o ../libass/.libs/*.o
-
-../libass/.libs/libass.dylib: compile
- $(MAKE) -C ..
-else
-$(SLIB): ../libass/.libs/libass.so
- $(CXX) $(LDFLAGS) -lfontconfig -shared -fPIC -o $(SLIB) ../libass/.libs/*.o \
- `cat ../../../xbmc/cores/DllLoader/exports/wrapper.def` \
- ../../../xbmc/cores/DllLoader/exports/wrapper.o
-
-../libass/.libs/libass.so: compile
- $(MAKE) -C ..
-endif
-
-include $(abs_top_srcdir)/Makefile.include