diff options
author | Maxime Hadjinlian <maxime.hadjinlian@gmail.com> | 2016-07-02 17:16:58 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-07-03 10:28:35 +0200 |
commit | e500cc39dda1a7e4a26e938e91b8b0e23a53914b (patch) | |
tree | 06a3ef546f738bc52e1f3bebf579a2d143362c66 /package/tinyxml2/0002-Rename-test-fixed-cmake-warning.patch | |
parent | d0b11058511642d4dc6fd26abbb2419b959a9806 (diff) | |
download | buildroot-e500cc39dda1a7e4a26e938e91b8b0e23a53914b.tar.gz buildroot-e500cc39dda1a7e4a26e938e91b8b0e23a53914b.zip |
package/tinyxml2: bump version to 3.0.0
Remove patches as they were applied upstream:
0001-Use-BUILD_SHARED_LIBS-cmake-standard.patch
https://github.com/leethomason/tinyxml2/commit/c8ec6fcab4eb501cc5bd328c19dcbd4b30722d52
0002-Rename-test-fixed-cmake-warning.patch
https://github.com/leethomason/tinyxml2/commit/0b2c22bd46be95b08f234b8b4cb262f72ab3f0e8
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Diffstat (limited to 'package/tinyxml2/0002-Rename-test-fixed-cmake-warning.patch')
-rw-r--r-- | package/tinyxml2/0002-Rename-test-fixed-cmake-warning.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/package/tinyxml2/0002-Rename-test-fixed-cmake-warning.patch b/package/tinyxml2/0002-Rename-test-fixed-cmake-warning.patch deleted file mode 100644 index 409269ac4b..0000000000 --- a/package/tinyxml2/0002-Rename-test-fixed-cmake-warning.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 77631a9cf500a578338a83bc230c419bf2a05b50 Mon Sep 17 00:00:00 2001 -From: xantares <xantares09@hotmail.com> -Date: Fri, 14 Nov 2014 19:46:18 +0100 -Subject: [PATCH] Rename test, fixed cmake warning. - -Signed-off-by: Romain Naour <romain.naour@openwide.fr> ---- - CMakeLists.txt | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 4375bb9..4a8f91d 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -53,10 +53,10 @@ set_target_properties(tinyxml2 PROPERTIES - VERSION "${GENERIC_LIB_VERSION}"
- SOVERSION "${GENERIC_LIB_SOVERSION}")
-
--add_executable(test xmltest.cpp)
--add_dependencies(test tinyxml2)
--add_dependencies(test ${TARGET_DATA_COPY})
--target_link_libraries(test tinyxml2)
-+add_executable(xmltest xmltest.cpp)
-+add_dependencies(xmltest tinyxml2)
-+add_dependencies(xmltest ${TARGET_DATA_COPY})
-+target_link_libraries(xmltest tinyxml2)
-
-
- install(TARGETS tinyxml2
-@@ -76,4 +76,4 @@ endforeach() - configure_file(tinyxml2.pc.in tinyxml2.pc @ONLY)
- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/tinyxml2.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
-
--#add_test(test ${SAMPLE_NAME} COMMAND $<TARGET_FILE:${SAMPLE_NAME}>)
-+#add_test(xmltest ${SAMPLE_NAME} COMMAND $<TARGET_FILE:${SAMPLE_NAME}>)
--- -1.9.3 - |