mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #20616 from matthewbauer/pugixml-darwin
pugixml: fix darwin build
This commit is contained in:
commit
1c0e51e3f8
2 changed files with 23 additions and 1 deletions
|
@ -20,11 +20,14 @@ stdenv.mkDerivation rec {
|
||||||
sed -ire '/PUGIXML_HAS_LONG_LONG/ s/^\/\///' ../src/pugiconfig.hpp
|
sed -ire '/PUGIXML_HAS_LONG_LONG/ s/^\/\///' ../src/pugiconfig.hpp
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
patches = []
|
||||||
|
++ stdenv.lib.optionals stdenv.isDarwin [ ./no-long-long.patch ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Light-weight, simple and fast XML parser for C++ with XPath support";
|
description = "Light-weight, simple and fast XML parser for C++ with XPath support";
|
||||||
homepage = http://pugixml.org/;
|
homepage = http://pugixml.org/;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ pSub ];
|
maintainers = with maintainers; [ pSub ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
19
pkgs/development/libraries/pugixml/no-long-long.patch
Normal file
19
pkgs/development/libraries/pugixml/no-long-long.patch
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
Get rid of long-long feature. This breaks on AppleClang compilers.
|
||||||
|
---
|
||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index 40a7ab0..c84f0f7 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -26,9 +26,9 @@ else()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Enable C++11 long long for compilers that are capable of it
|
||||||
|
-if(NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} STRLESS 3.1)
|
||||||
|
- target_compile_features(pugixml PUBLIC cxx_long_long_type)
|
||||||
|
-endif()
|
||||||
|
+# if(NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} STRLESS 3.1)
|
||||||
|
+# target_compile_features(pugixml PUBLIC cxx_long_long_type)
|
||||||
|
+# endif()
|
||||||
|
|
||||||
|
set_target_properties(pugixml PROPERTIES VERSION 1.7 SOVERSION 1)
|
||||||
|
|
Loading…
Reference in a new issue