diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2017-10-03 20:35:46 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-10-04 00:03:46 +0200 |
commit | e80237ebb123c7c9a5344d203e96d2c927572b84 (patch) | |
tree | f06aaea431be2796081a90d7103227845f43ebf6 /dev-games | |
parent | www-apps/rt: fix loading of Date::Manip w/ Factory TZ. (diff) | |
download | gentoo-e80237ebb123c7c9a5344d203e96d2c927572b84.tar.gz gentoo-e80237ebb123c7c9a5344d203e96d2c927572b84.tar.bz2 gentoo-e80237ebb123c7c9a5344d203e96d2c927572b84.zip |
dev-games/aseprite: remove unused patches.
Closes: https://github.com/gentoo/gentoo/pull/5852
Diffstat (limited to 'dev-games')
-rw-r--r-- | dev-games/aseprite/files/aseprite-0.9.5-as-needed.patch | 38 | ||||
-rw-r--r-- | dev-games/aseprite/files/aseprite-0.9.5-underlinking.patch | 21 |
2 files changed, 0 insertions, 59 deletions
diff --git a/dev-games/aseprite/files/aseprite-0.9.5-as-needed.patch b/dev-games/aseprite/files/aseprite-0.9.5-as-needed.patch deleted file mode 100644 index 9f50c25979ba..000000000000 --- a/dev-games/aseprite/files/aseprite-0.9.5-as-needed.patch +++ /dev/null @@ -1,38 +0,0 @@ -Description: fix FTBFS with --as-needed linker option - Libraries must be placed after object files in command line. -Author: Ilya Barygin <randomaction@ubuntu.com> - ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -135,6 +135,10 @@ - # All libraries for .exe files - set(all_libs ${aseprite_libraries} ${libs3rdparty} ${sys_libs}) - -+if(LIBALLEGRO4_LINK_FLAGS) -+ set(all_libs ${all_libs} ${LIBALLEGRO4_LINK_FLAGS}) -+endif() -+ - ###################################################################### - # ASEPRITE libraries - -@@ -405,10 +409,6 @@ - - add_executable(aseprite WIN32 main.cpp ${win32_resources} ${x11_resources}) - target_link_libraries(aseprite ${all_libs}) --if(LIBALLEGRO4_LINK_FLAGS) -- set_target_properties(aseprite -- PROPERTIES LINK_FLAGS ${LIBALLEGRO4_LINK_FLAGS}) --endif() - - install(TARGETS aseprite - RUNTIME DESTINATION bin) -@@ -450,8 +450,7 @@ - endif() - - if(LIBALLEGRO4_LINK_FLAGS) -- set_target_properties(${testname} -- PROPERTIES LINK_FLAGS ${LIBALLEGRO4_LINK_FLAGS}) -+ target_link_libraries(${testname} ${LIBALLEGRO4_LINK_FLAGS}) - endif() - - if(extra_definitions) diff --git a/dev-games/aseprite/files/aseprite-0.9.5-underlinking.patch b/dev-games/aseprite/files/aseprite-0.9.5-underlinking.patch deleted file mode 100644 index 8f3027d4baf7..000000000000 --- a/dev-games/aseprite/files/aseprite-0.9.5-underlinking.patch +++ /dev/null @@ -1,21 +0,0 @@ -From 169edeaa69cce2670213c39232a249a487670883 Mon Sep 17 00:00:00 2001 -From: hasufell <hasufell@hasufell.de> -Date: Sun, 2 Nov 2014 16:58:33 +0100 -Subject: [PATCH] Fix underlinking with USE_SHARED_ALLEGRO4=ON - ---- - src/CMakeLists.txt | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index 21c3352..0ce11d2 100644 ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -58,6 +58,7 @@ if(USE_SHARED_ALLEGRO4) - OUTPUT_VARIABLE LIBALLEGRO4_LINK_FLAGS - OUTPUT_STRIP_TRAILING_WHITESPACE) - -+ set(LIBALLEGRO4_LINK_FLAGS ${LIBALLEGRO4_LINK_FLAGS} ${PLATFORM_LIBS}) - include_directories(${LIBALLEGRO4_INCLUDE_DIR}) - else() - add_definitions(-DALLEGRO4_WITH_RESIZE_PATCH) |