diff options
author | EuAndreh <eu@euandre.org> | 2024-10-18 09:29:54 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-10-18 09:29:54 -0300 |
commit | 42768c4c7048a68877cd0223f7b6dedcb179a9a9 (patch) | |
tree | fbe45467803aa314289c390f5945151eb29d13f2 /src/org/euandre/queue.scm | |
parent | queue.scm: Remove SQLITE_CORE and -flto (diff) | |
download | packages-42768c4c7048a68877cd0223f7b6dedcb179a9a9.tar.gz packages-42768c4c7048a68877cd0223f7b6dedcb179a9a9.tar.xz |
queue.scm: Adjust scryptkdf flags
Diffstat (limited to 'src/org/euandre/queue.scm')
-rw-r--r-- | src/org/euandre/queue.scm | 8 |
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"))))))))) |