diff options
author | Simon Josefsson <simon@josefsson.org> | 2006-10-21 10:24:46 +0000 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2006-10-21 10:24:46 +0000 |
commit | 96e59289571f54c40d25f3416c8b689cdd16ddf3 (patch) | |
tree | abd91bc4c34a8966d5076771ecc73b1738e50d45 | |
parent | e413e81cf4ca27a5a862de4e0dacbadc4995015c (diff) | |
download | gnutls-96e59289571f54c40d25f3416c8b689cdd16ddf3.tar.gz |
Need gnulib lgl/ in CFLAGS and LIBADD.
-rw-r--r-- | libextra/Makefile.am | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libextra/Makefile.am b/libextra/Makefile.am index 4a78e01629..cdb52120fb 100644 --- a/libextra/Makefile.am +++ b/libextra/Makefile.am @@ -20,7 +20,8 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. -AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_builddir)/gl \ +AM_CPPFLAGS = -I$(top_srcdir)/lgl -I$(top_builddir)/lgl \ + -I$(top_srcdir)/gl -I$(top_builddir)/gl \ -I$(top_srcdir)/lib -I../includes -I$(top_srcdir)/includes \ -I$(top_srcdir)/lib/minitasn1 -I$(srcdir)/openpgp \ $(LIBGCRYPT_CFLAGS) @@ -72,7 +73,8 @@ lib_LTLIBRARIES += libgnutls-openssl.la libgnutls_openssl_la_SOURCES = gnutls_openssl.c openssl_compat.h \ openssl_compat.c -libgnutls_openssl_la_LIBADD = ../lib/libgnutls.la ../gl/libgnu.la +libgnutls_openssl_la_LIBADD = ../lgl/libgnu.la ../gl/libgnu.la \ + ../lib/libgnutls.la libgnutls_openssl_la_LDFLAGS += -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) @@ -124,7 +126,8 @@ libgnutls_extra_la_LDFLAGS += \ libgnutls_extra_la_SOURCES += gnutls_extra.h libgnutls-extra.vers -libgnutls_extra_la_LIBADD += ../lib/libgnutls.la ../gl/libgnu.la +libgnutls_extra_la_LIBADD += ../lgl/libgnu.la ../gl/libgnu.la \ + ../lib/libgnutls.la if HAVE_LD_VERSION_SCRIPT libgnutls_extra_la_LDFLAGS += \ |