diff options
author | jenkins4kodi <jenkins4kodi@users.noreply.github.com> | 2017-03-22 16:59:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-22 16:59:40 +0100 |
commit | 537227d8e3bc34f0ffd750784a3992d7db7e61d3 (patch) | |
tree | e24673fdc91e9e7222e845dec64e306925569de1 /tools/depends | |
parent | f8ce7d81b8306f1d85624996678a60bb8b567859 (diff) | |
parent | 65c1b41f151545ef55db85d5f27714bbc5016d85 (diff) |
Merge pull request #11881 from stefansaraev/sdl-cleanup
Diffstat (limited to 'tools/depends')
-rw-r--r-- | tools/depends/target/Makefile | 5 | ||||
-rw-r--r-- | tools/depends/target/libsdl2/Makefile | 41 | ||||
-rw-r--r-- | tools/depends/target/libsdl_image/Makefile | 40 |
3 files changed, 1 insertions, 85 deletions
diff --git a/tools/depends/target/Makefile b/tools/depends/target/Makefile index 7a330cc1d7..ebbe097a93 100644 --- a/tools/depends/target/Makefile +++ b/tools/depends/target/Makefile @@ -61,13 +61,11 @@ ifeq ($(NEED_LIBICONV),1) endif ALSA_LIB= -LINUX_SYSTEM_LIBS= ifeq ($(OS),linux) DEPENDS += libuuid #not for raspberry pi ifneq ($(TARGET_PLATFORM),raspberry-pi) - DEPENDS += libsdl2 linux-system-libs - LINUX_SYSTEM_LIBS = linux-system-libs + DEPENDS += linux-system-libs endif DEPENDS += alsa-lib ALSA_LIB = alsa-lib @@ -98,7 +96,6 @@ nettle: gmp pythonmodule-pycryptodome: python27 pythonmodule-setuptools pythonmodule-pil: $(ZLIB) libjpeg-turbo libpng freetype2 python27 pythonmodule-setuptools pythonmodule-setuptools: python27 -libsdl2: $(LINUX_SYSTEM_LIBS) libxslt: libgcrypt libxml2 ffmpeg: $(ICONV) $(ZLIB) bzip2 $(FFMPEG_DEPENDS) platform: p8-platform diff --git a/tools/depends/target/libsdl2/Makefile b/tools/depends/target/libsdl2/Makefile deleted file mode 100644 index 6c6eb5a26a..0000000000 --- a/tools/depends/target/libsdl2/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -include ../../Makefile.include -DEPS= ../../Makefile.include Makefile - -# lib name, version -LIBNAME=SDL2 -VERSION=2.0.3 -SOURCE=$(LIBNAME)-$(VERSION) -ARCHIVE=$(SOURCE).tar.gz - -# configuration settings -CONFIGURE=./configure --prefix=$(PREFIX) --disable-video-directfb -ifneq ($(OS),linux) -CONFIGURE += --without-x --disable-video-x11 -endif - -LIBDYLIB=$(PLATFORM)/build/.libs/lib$(LIBNAME).a - -all: .installed-$(PLATFORM) - -$(TARBALLS_LOCATION)/$(ARCHIVE): - cd $(TARBALLS_LOCATION); $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE) - -$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS) - rm -rf $(PLATFORM); mkdir -p $(PLATFORM) - cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) - cd $(PLATFORM); ./autogen.sh - cd $(PLATFORM); $(CONFIGURE) - -$(LIBDYLIB): $(PLATFORM) - $(MAKE) -C $(PLATFORM) - -.installed-$(PLATFORM): $(LIBDYLIB) - $(MAKE) -C $(PLATFORM) install - touch $@ - -clean: - $(MAKE) -C $(PLATFORM) clean - rm -f .installed-$(PLATFORM) - -distclean:: - rm -rf $(PLATFORM) .installed-$(PLATFORM) diff --git a/tools/depends/target/libsdl_image/Makefile b/tools/depends/target/libsdl_image/Makefile deleted file mode 100644 index 41062476a1..0000000000 --- a/tools/depends/target/libsdl_image/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -NATIVE_BUILD=1 -include ../../Makefile.include -DEPS=Makefile - -# lib name, version -LIBNAME=SDL_image -VERSION=1.2.7 -SOURCE=$(LIBNAME)-$(VERSION) -ARCHIVE=$(SOURCE).tar.gz - -# configuration settings -CONFIGURE=./configure --prefix=$(PREFIX) \ - --disable-jpg-shared --disable-png-shared --disable-tif-shared --disable-sdltest - -LIBDYLIB=$(PLATFORM)/.libs/lib$(LIBNAME).so - -all: .installed-$(PLATFORM) - -$(TARBALLS_LOCATION)/$(ARCHIVE): - $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE) - -$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS) - rm -rf $(PLATFORM); mkdir -p $(PLATFORM) - $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) - echo $(PLATFORM) > .gitignore - cd $(PLATFORM); $(CONFIGURE) - -$(LIBDYLIB): $(PLATFORM) - $(MAKE) -C $(PLATFORM) - -.installed-$(PLATFORM): $(LIBDYLIB) - $(MAKE) -C $(PLATFORM) install - touch $@ - -clean: - $(MAKE) -C $(PLATFORM) clean - rm -f .installed-$(PLATFORM) - -distclean:: - rm -rf $(PLATFORM) .installed-$(PLATFORM) |