]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
ciphersuites tests: add missing includes
authorNikos Mavrogiannopoulos <nmav@redhat.com>
Fri, 5 Dec 2014 08:35:46 +0000 (09:35 +0100)
committerNikos Mavrogiannopoulos <nmav@redhat.com>
Fri, 5 Dec 2014 08:35:46 +0000 (09:35 +0100)
tests/suite/ciphersuite/scan-gnutls.sh

index cd3a2c446ff596ec9a8013e7905e0bfdfffab9af..b1724f5a08f5215eda9f32d5ac167d7fc6d09477 100755 (executable)
@@ -3,7 +3,7 @@
 
 echo 'var gnutls_ciphersuites = {'
 
-cd ../../../lib/algorithms/ && gcc -E ciphersuites.c -I.. -I../../ -DHAVE_CONFIG_H -DHAVE_LIBNETTLE -I../../gl -DENABLE_DHE -DENABLE_ECDHE -DENABLE_PSK -DENABLE_ANON -DENABLE_SRP \
+cd ../../../lib/algorithms/ && gcc -E ciphersuites.c -I.. -I../../ -DHAVE_CONFIG_H -DHAVE_LIBNETTLE -I../../gl -I../includes -DENABLE_DHE -DENABLE_ECDHE -DENABLE_PSK -DENABLE_ANON -DENABLE_SRP \
   | awk '/^static const gnutls_cipher_suite_entry cs_algorithms/, /;/ { print; }' \
   | grep '{' | head -n-1 | tail -n+2 \
   | sed -r -e 's#\{ *0x(..), *0x(..) *\}#0x\1\2#;s# *\{ *"#"#;s#\}##;s#, +# #g' \