summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/lib2geom-link-tests-against-glib.patch
diff options
context:
space:
mode:
authorJakub Kądziołka <[email protected]>2020-06-22 02:56:22 +0200
committerJakub Kądziołka <[email protected]>2020-06-22 02:56:22 +0200
commit43bc7855113bd725d464dd9eaa1e54e78edfaab1 (patch)
tree2655f85e9946ececdb4fb052c2f3e31375c41e0f /gnu/packages/patches/lib2geom-link-tests-against-glib.patch
parent0c4e39c0b025fb23a2e5df46434fc96112bb6d6c (diff)
parentf8a28b6c6d4fe7642b7df35e8518e3c0174ede74 (diff)
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/patches/lib2geom-link-tests-against-glib.patch')
-rw-r--r--gnu/packages/patches/lib2geom-link-tests-against-glib.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/gnu/packages/patches/lib2geom-link-tests-against-glib.patch b/gnu/packages/patches/lib2geom-link-tests-against-glib.patch
deleted file mode 100644
index 2b4f7ca6bf..0000000000
--- a/gnu/packages/patches/lib2geom-link-tests-against-glib.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From f95925afef451755fc1449e57fbfdc2e7277f4b4 Mon Sep 17 00:00:00 2001
-From: Maxim Cournoyer <[email protected]>
-Date: Sat, 11 Jan 2020 00:44:55 -0500
-Subject: [PATCH 1/3] tests: Link against GLib.
-
-This resolves an error about not finding <glib.h> when linking the
-tests that make use of GLib.
-
-* src/tests/CMakeLists.txt[2GEOM_GTESTS_SRC]: Add the glib library to
-the link target libraries.
----
- src/tests/CMakeLists.txt | 6 ++++--
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt
-index 5ddf7f9c..626cfd87 100644
---- a/src/tests/CMakeLists.txt
-+++ b/src/tests/CMakeLists.txt
-@@ -32,8 +32,10 @@ sbasis-test
-
- foreach(source ${2GEOM_GTESTS_SRC})
- add_executable(${source} ${source}.cpp)
-- target_include_directories(${source} PRIVATE ${GSL_INCLUDE_DIRS} ${GTK3_INCLUDE_DIRS})
-- target_link_libraries(${source} 2geom gtest_main gtest ${GSL_LIBRARIES} ${GTK3_LIBRARIES})
-+ target_include_directories(${source} PRIVATE ${GSL_INCLUDE_DIRS}
-+ ${GTK3_INCLUDE_DIRS} ${GLIB_INCLUDE_DIRS})
-+ target_link_libraries(${source} 2geom gtest_main gtest ${GSL_LIBRARIES}
-+ ${GTK3_LIBRARIES} ${GLIB_LIBRARIES})
- add_test(NAME ${source} COMMAND ${source})
- endforeach()
-
---
-2.24.1
-