summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-05-14 12:22:51 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-05-14 12:22:51 +0000
commit3d0e8f5cb73a9ae9a364dcf8e4ffcdb226ba1207 (patch)
treecb47c899e4f4e4eee9be39b435f797045d3aef16
parentd279085ae06d1155d4ac54e5ac38fea5d75979b3 (diff)
downloadgnutls-3d0e8f5cb73a9ae9a364dcf8e4ffcdb226ba1207.tar.gz
configure script now prints the library license
-rw-r--r--configure.in14
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 28184fb0f9..852a1d0811 100644
--- a/configure.in
+++ b/configure.in
@@ -331,8 +331,22 @@ AC_CONFIG_COMMANDS([lib/gnutls.h],[[
chmod +x lib/libgnutls-config
]],[[]])
+AC_CONFIG_COMMANDS_POST(
+ echo "*****************"
+if test x$ac_enable_srp = xno && test x$ac_enable_openpgp = xno;then
+ echo "* License: LGPL *"
+else
+ echo "* License: GPL *"
+fi
+ echo "*****************"
+ echo "(see the README file)"
+ echo ""
+)
+
AC_CONFIG_FILES([Makefile src/Makefile lib/Makefile lib/libgnutls-config \
doc/Makefile src/x509/Makefile src/srp/Makefile doc/tex/Makefile \
doc/tex/cover.tex doc/scripts/Makefile src/openpgp/Makefile])
+
+
AC_OUTPUT