Guile: Fix `x509-certificate-dn-oid' and related functions.
[gnutls.git] / doc / README.autoconf
blob6f1ce85d5ef84f7cc07553bbedb42bc5f95ad5fe
1 If you want to use the gnutls library in other projects
2 using autoconf/aclocal, put in your 
4 acinclude.m4 or aclocal.m4:
5  include(libgnutls.m4)
7 configure.in:
8  AM_PATH_LIBGNUTLS( 1.0.0,, AC_MSG_ERROR([[
9 ***
10 *** libgnutls was not found. You may want to get it from
11 *** ftp://ftp.gnutls.org/pub/gnutls/
12 ]]))
14 these macros define LIBGNUTLS_LIBS and LIBGNUTLS_CFLAGS. If you want to
15 use the GPL gnutls parts then also add:
17 aclocal.m4:
18  include(libgnutls-extra.m4)
20 configure.in:
21  AM_PATH_LIBGNUTLS_EXTRA( 1.0.0,, AC_MSG_ERROR([[
22 ***
23 *** libgnutls-extra was not found. You may want to get it from
24 *** ftp://ftp.gnutls.org/pub/gnutls/
25 ]]))
27 which define LIBGNUTLS_EXTRA_LIBS and LIBGNUTLS_EXTRA_CFLAGS.