aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-10-18 09:29:54 -0300
committerEuAndreh <eu@euandre.org>2024-10-18 09:29:54 -0300
commit42768c4c7048a68877cd0223f7b6dedcb179a9a9 (patch)
treefbe45467803aa314289c390f5945151eb29d13f2 /src
parentqueue.scm: Remove SQLITE_CORE and -flto (diff)
downloadpackages-42768c4c7048a68877cd0223f7b6dedcb179a9a9.tar.gz
packages-42768c4c7048a68877cd0223f7b6dedcb179a9a9.tar.xz
queue.scm: Adjust scryptkdf flags
Diffstat (limited to 'src')
-rw-r--r--src/org/euandre/queue.scm8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/org/euandre/queue.scm b/src/org/euandre/queue.scm
index cd4fe29..aaf54b5 100644
--- a/src/org/euandre/queue.scm
+++ b/src/org/euandre/queue.scm
@@ -1912,13 +1912,13 @@ SetEnv GIT_CONFIG_GLOBAL=/etc/gitconfig")))
(name "scryptkdf")
(arguments
(substitute-keyword-arguments (package-arguments scrypt)
- ((#:configure-flags flags)
+ ((#:configure-flags flags ''())
#~(append
#$flags
(list
+ "--enable-libscrypt-kdf"
"--disable-shared"
"--enable-static"
- "--enable-libscrypt-kdf"
(string-join
'("CFLAGS="
"-D_POSIX_C_SOURCE=200809L"
@@ -1927,10 +1927,8 @@ SetEnv GIT_CONFIG_GLOBAL=/etc/gitconfig")))
"-O3"
"-march=native"
"-std=c99"
- "-flto"
"-Wvla"
- "-fPIE"))
- "LDFLAGS=--static -flto")))))))
+ "-fPIE")))))))))