diff options
author | David Craven <david@craven.ch> | 2016-08-20 15:54:18 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-08-22 01:49:52 +0200 |
commit | 984ad832e21ac8683766e93a31c1e2039705fc0d (patch) | |
tree | 0a07766110a890b1d815f22d7f677cd4fa961fd9 /gnu/packages | |
parent | a0919cad5fb3ac3691f1d23a2a761d6aed6ca28d (diff) | |
download | patches-984ad832e21ac8683766e93a31c1e2039705fc0d.tar patches-984ad832e21ac8683766e93a31c1e2039705fc0d.tar.gz |
gnu: pinentry-qt: Build with gnu++11.
* gnu/packages/gnupg.scm (pinentry-qt)[arguments]: Add configure-flag.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnupg.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index 7bc46ab3e7..d6ca78e209 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -645,6 +645,8 @@ passphrase when @code{gpg} or @code{gpg2} is run and needs it."))) (inputs `(("qtbase" ,qtbase) ,@(package-inputs pinentry-tty))) + (arguments + `(#:configure-flags '("CXXFLAGS=-std=gnu++11"))) (description "Pinentry provides a console and a Qt GUI that allows users to enter a passphrase when @code{gpg} or @code{gpg2} is run and needs it."))) |