summaryrefslogtreecommitdiff
path: root/games-arcade/asteroid/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
commit0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch)
tree07815070629c7c11000a7f51ceb8ccbccb49a809 /games-arcade/asteroid/files
parent1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'games-arcade/asteroid/files')
-rw-r--r--games-arcade/asteroid/files/asteroid-1.2.1-libm.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/games-arcade/asteroid/files/asteroid-1.2.1-libm.patch b/games-arcade/asteroid/files/asteroid-1.2.1-libm.patch
deleted file mode 100644
index cb6e7aaafe29..000000000000
--- a/games-arcade/asteroid/files/asteroid-1.2.1-libm.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 4efc7fc0a1246f023d6f96b94081678e302ab430 Mon Sep 17 00:00:00 2001
-From: Charles Lindsay <chaz@chazomatic.us>
-Date: Mon, 23 May 2016 18:50:34 -0700
-Subject: [PATCH] Add libm to link command
-
-Without it, some systems (and now mine!) would give a linker error about
-missing libm.
----
- CMakeLists.txt | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 29fd714..ab9a7ec 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -39,7 +39,7 @@ include_directories("${PROJECT_BINARY_DIR}/include")
- file(GLOB asteroid_SRCS "src/*.c")
- add_executable(asteroid ${asteroid_SRCS})
- include_directories(${OPENGL_INCLUDE_DIR} ${GLUT_INCLUDE_DIR})
--target_link_libraries(asteroid ${OPENGL_LIBRARIES} ${GLUT_LIBRARIES})
-+target_link_libraries(asteroid m ${OPENGL_LIBRARIES} ${GLUT_LIBRARIES})
- if(Asteroid_BUILD_GTK)
- include_directories(${GTK2_INCLUDE_DIRS})
- target_link_libraries(asteroid ${GTK2_LIBRARIES})