2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 22:12:27 +00:00

git: remove openssl dependency, -static is a linker flag

openssl is only used for git-imap-send, which can use libcurl instead
since curl 7.34.0.
This commit is contained in:
Owen Rafferty 2022-07-17 23:34:47 -05:00
parent c106c75d1a
commit 366dfa3489
No known key found for this signature in database
GPG Key ID: A68B10E2554DEBCB
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh -e #!/bin/sh -e
export CFLAGS="$CFLAGS -static" export LDFLAGS="$LDFLAGS -static"
cat > config.mak <<EOF cat > config.mak <<EOF
NO_GETTEXT=YesPlease NO_GETTEXT=YesPlease
@ -13,6 +13,7 @@ NO_PERL=YesPlease
NO_SYS_POLL_H=1 NO_SYS_POLL_H=1
NO_CROSS_DIRECTORY_HARDLINKS=1 NO_CROSS_DIRECTORY_HARDLINKS=1
NO_INSTALL_HARDLINKS=1 NO_INSTALL_HARDLINKS=1
NO_OPENSSL=YesPlease
EOF EOF
./configure \ ./configure \

View File

@ -1,3 +1,2 @@
curl make curl make
openssl make
zlib make zlib make