]> git.pld-linux.org Git - packages/curl.git/blob - curl-krb5flags.patch
up to 8.7.1 (fixes CVE-2024-2004 CVE-2024-2379 CVE-2024-2398 CVE-2024-2466)
[packages/curl.git] / curl-krb5flags.patch
1 --- curl-7.43.0/configure.ac.orig       2015-06-24 21:11:53.330168712 +0200
2 +++ curl-7.43.0/configure.ac    2015-06-24 21:19:26.686816353 +0200
3 @@ -1193,9 +1193,9 @@
4  
5    if test -z "$GSSAPI_INCS"; then
6       if test -n "$host_alias" -a -f "$GSSAPI_ROOT/bin/$host_alias-krb5-config"; then
7 -        GSSAPI_INCS=`$GSSAPI_ROOT/bin/$host_alias-krb5-config --cflags gssapi`
8 +        GSSAPI_INCS=`CFLAGS= $GSSAPI_ROOT/bin/$host_alias-krb5-config --cflags gssapi`
9       elif test -f "$KRB5CONFIG"; then
10 -        GSSAPI_INCS=`$KRB5CONFIG --cflags gssapi`
11 +        GSSAPI_INCS=`CFLAGS= $KRB5CONFIG --cflags gssapi`
12       elif test "$GSSAPI_ROOT" != "yes"; then
13          GSSAPI_INCS="-I$GSSAPI_ROOT/include"
14       fi
15 @@ -1288,7 +1288,7 @@
16          elif test -f "$KRB5CONFIG"; then
17             dnl krb5-config doesn't have --libs-only-L or similar, put everything
18             dnl into LIBS
19 -           gss_libs=`$KRB5CONFIG --libs gssapi`
20 +           gss_libs=`CFLAGS= $KRB5CONFIG --libs gssapi`
21             LIBS="$gss_libs $LIBS"
22          else
23             case $host in
This page took 0.067078 seconds and 3 git commands to generate.