summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2008-10-07 18:02:25 +0200
committerSimon Josefsson <simon@josefsson.org>2008-10-07 20:09:10 +0200
commitfbdc6734027077b1f3bf9864f3f3efc265cd91d0 (patch)
tree08eda46beca9f1f5f408b5163870eceb7391ee70
parent719fbc3a437076f9bb54bae17d93ea98af1cef74 (diff)
downloadgnutls-fbdc6734027077b1f3bf9864f3f3efc265cd91d0.tar.gz
Fix compilation of `pkcs12-decode' test when using minitasn1.
* tests/pkcs12-decode/Makefile.am (AM_CPPFLAGS)[ENABLE_MINITASN1]: Add `minitasn1' include directory. Signed-off-by: Simon Josefsson <simon@josefsson.org>
-rw-r--r--tests/pkcs12-decode/Makefile.am5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/pkcs12-decode/Makefile.am b/tests/pkcs12-decode/Makefile.am
index 8a62aee767..82202a1cf2 100644
--- a/tests/pkcs12-decode/Makefile.am
+++ b/tests/pkcs12-decode/Makefile.am
@@ -36,3 +36,8 @@ AM_CPPFLAGS = -I$(top_srcdir)/lgl -I$(top_builddir)/lgl \
AM_LDFLAGS = -no-install
LDADD = ../../lib/libgnutls.la ../../gl/libgnu.la ../../lgl/liblgnu.la ../libutils.la
+if ENABLE_MINITASN1
+
+AM_CPPFLAGS += -I$(top_srcdir)/lib/minitasn1
+
+endif