summaryrefslogtreecommitdiff
path: root/doc/README.autoconf
blob: 102714a63e164a71f79d104e75f0b8b705dcc0e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
If you want to use the gnutls library in other projects
using autoconf/aclocal, put in your 

aclocal.m4:
 include(libgnutls.m4)

configure.in:
 AM_PATH_LIBGNUTLS( 0.4.1,, AC_MSG_ERROR([[
***
*** libgnutls was not found. You may want to get it from
*** ftp://ftp.gnutls.org/pub/gnutls/
]]))


these macros define LIBGNUTLS_LIBS and LIBGNUTLS_CFLAGS.