mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: htmlcxx: add --std=c++11 to configure flags.
* gnu/packages/web.scm (htmlcxx): add CXXFLAGS to configure-flag. C++17 removed dynamic exception specifications. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
b02e7504b0
commit
6d3169af64
1 changed files with 3 additions and 0 deletions
|
@ -8248,6 +8248,9 @@ (define-public htmlcxx
|
|||
(sha256
|
||||
(base32 "1j3mzjlczjrk4ahc43s6kzpvzypzjmqz4sillnca5yadrwwgjf2x"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
;; ISO C++17 does not allow dynamic exception specifications
|
||||
`(#:configure-flags '("CXXFLAGS=-std=c++11")))
|
||||
(home-page "https://htmlcxx.sourceforge.net/")
|
||||
(synopsis "Simple non-validating CSS1 and HTML parser for C++")
|
||||
(description "htmlcxx is a simple non-validating CSS1 and HTML parser for
|
||||
|
|
Loading…
Reference in a new issue