diff options
author | Martin Storsjo <martin@martin.st> | 2013-06-06 15:26:53 +0300 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2013-06-06 23:13:52 +0200 |
commit | 6726fd437ea22b06b78a1d8d8f9b73ae3163e311 (patch) | |
tree | 200c56e87abbc20b85589be8aab77c725616255a /lib/Makefile.am | |
parent | 765c617e2e740a582441facb2c1dd34114047920 (diff) | |
download | gnutls-6726fd437ea22b06b78a1d8d8f9b73ae3163e311.tar.gz |
Add NETTLE_CFLAGS in makefiles
This is required for using nettle/memxor.h, which now is included
implicitly via gnutls_int.h, if the nettle include directories
aren't in one of the compiler standard paths.
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 006f695995..790cdb1da1 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -27,7 +27,7 @@ endif localedir = $(datadir)/locale -AM_CFLAGS = $(WERROR_CFLAGS) $(WSTACK_CFLAGS) $(WARN_CFLAGS) +AM_CFLAGS = $(WERROR_CFLAGS) $(WSTACK_CFLAGS) $(WARN_CFLAGS) $(NETTLE_CFLAGS) AM_CPPFLAGS = \ -DLOCALEDIR=\"$(localedir)\" \ -I$(srcdir)/../gl \ |