Lines Matching +full:vcc +full:- +full:p
5 --prefix=/usr
6 --sysconfdir=/etc/ssh
7 --with-pam
8 --with-ssl-dir=/usr
9 --without-tcp-wrappers
10 --with-libedit
11 --with-ssl-engine
12 --without-xauth
15 set -e
21 (cd $openssh && libtoolize --copy && autoheader && autoconf)
24 export CC=$(echo ".include <bsd.lib.mk>" | make -f /dev/stdin -VCC)
25 export CPP=$(echo ".include <bsd.lib.mk>" | make -f /dev/stdin -VCPP)
30 sh configure $configure_args --with-kerberos5=/usr
34 # Generate config.h with built-in security key support
37 # available for configure - add their paths via CFLAGS as a slight hack.
38 # configure.ac is also patched to specify -lprivatecbor and -lprivatefido2
39 # rather than -lcbor and -lfido2.
40 export CFLAGS="-I$openssh/../../contrib/libcbor/src -I$openssh/../../contrib/libfido2/src"
41 sh configure $configure_args --with-security-key-builtin
43 mv config.log config.log.sk-builtin
44 mv config.h config.h.sk-builtin
47 sh configure $configure_args --without-kerberos5 --without-security-key-builtin
50 diff -u config.h.kerberos5 config.h |
51 sed -n '/^-#define/s/^-//p' |
52 grep -Ff /dev/stdin config.h.kerberos5 > krb5_config.h
54 # Extract the difference - SK
55 diff -u config.h.sk-builtin config.h |
56 sed -n '/^-#define/s/^-//p' |
57 grep -Ff /dev/stdin config.h.sk-builtin > sk_config.h