summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2003-03-24 06:31:25 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2003-03-24 06:31:25 +0000
commit6de33b40cbb845bd94404f22f2546027230a9c35 (patch)
treefa08768efda299a752d35b2407c7f6ca96d1ff45
parent6e1899339736592acb9cfcf91df49127ba55ccc4 (diff)
downloadgnutls-6de33b40cbb845bd94404f22f2546027230a9c35.tar.gz
last changes for 0.9.3 release.gnutls_0_9_3
-rw-r--r--NEWS2
-rw-r--r--lib/x509/Makefile.am12
2 files changed, 6 insertions, 8 deletions
diff --git a/NEWS b/NEWS
index 260472b973..0d0d819455 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-Version 0.9.3
+Version 0.9.3 (24/03/2003)
- Support for MD2 was dropped.
- Improved the error logging functions, by adding a level, and
by allowing debugging messages just by increasing the level.
diff --git a/lib/x509/Makefile.am b/lib/x509/Makefile.am
index 453bad8cf4..e823c8d068 100644
--- a/lib/x509/Makefile.am
+++ b/lib/x509/Makefile.am
@@ -6,23 +6,21 @@ EXTRA_DIST = dn.h common.h x509.h extensions.h pkcs7.h \
noinst_LTLIBRARIES = libx509.la
#lib_LTLIBRARIES = libgnutls-x509.la
-COBJECTS1 = crl.c dn.c common.c x509.c extensions.c \
- rfc2818_hostname.c verify.c mpi.c privkey.c pkcs7.c
-
-# Extra stuff that will only be put in gnutls-x509 library.
-COBJECTS2 = crq.c xml.c sign.c pkcs5.c privkey_pkcs8.c
+COBJECTS = crl.c dn.c common.c x509.c extensions.c \
+ rfc2818_hostname.c verify.c mpi.c privkey.c pkcs7.c \
+ crq.c xml.c sign.c pkcs5.c privkey_pkcs8.c
COMPAT_OBJECTS = compat.c
-libx509_la_SOURCES = $(COBJECTS1) $(COMPAT_OBJECTS) $(COBJECTS2)
+libx509_la_SOURCES = $(COBJECTS) $(COMPAT_OBJECTS)
#libgnutls_x509_la_SOURCES = $(COBJECTS2)
#libgnutls_x509_la_LIBADD = ../libgnutls.la
#libgnutls_x509_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
-x509-api.tex: $(COBJECTS1) $(COBJECTS2)
+x509-api.tex: $(COBJECTS)
@echo "" > x509-api.tex
@for i in $(COBJECTS); \
do echo -n "Creating documentation for file $$i... " && ../../doc/scripts/gdoc -tex $$i >> x509-api.tex \