- Increase version to 0.1.9.
authorJustin Pettit <jpettit@nicira.com>
Wed, 19 Mar 2008 21:00:44 +0000 (14:00 -0700)
committerJustin Pettit <jpettit@nicira.com>
Wed, 19 Mar 2008 21:00:44 +0000 (14:00 -0700)
- Remove support for UML.

ChangeLog
configure.ac
datapath/Makefile.am

index b8bcaa3..e5c48f8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
+v0.1.9 - 17 Mar 2008
+--------------------
+    - Added SSL/TLS support
+    - Various bug fixes and tweaks
+
 v0.1.8 - 03 Mar 2008
 --------------------
-    - Added support for cross-compilation.
+    - Added support for cross-compilation
     - Various bug fixes and tweaks
 
 v0.1.7 - 07 Feb 2008
index 4ec1972..11cf529 100644 (file)
@@ -1,5 +1,5 @@
 AC_PREREQ(2.59)
-AC_INIT(openflow, v0.1.8, info@openflowswitch.org)
+AC_INIT(openflow, v0.1.9, info@openflowswitch.org)
 AM_INIT_AUTOMAKE
 
 AC_PROG_CC
@@ -22,7 +22,6 @@ AC_ARG_ENABLE(
 AM_CONDITIONAL([NDEBUG], [test x$ndebug = xtrue])
 
 CHECK_LINUX(l26, 2.6, 2.6, KSRC26, L26_ENABLED)
-CHECK_LINUX(uml, 2.6, 2.6-uml, KSRCUML, UML_ENABLED)
 CHECK_LINUX(l24, 2.4, 2.4, KSRC24, L24_ENABLED)
 
 AC_CHECK_HEADER([linux/netlink.h],
@@ -49,7 +48,6 @@ secchan/Makefile
 datapath/tests/Makefile
 third-party/Makefile
 datapath/linux-2.6/Makefile
-datapath/linux-2.6-uml/Makefile
 datapath/linux-2.4/Makefile])
 
 AC_OUTPUT
index 99c09af..3dda217 100644 (file)
@@ -2,14 +2,11 @@ SUBDIRS = tests
 if L26_ENABLED
 SUBDIRS += linux-2.6
 endif
-if UML_ENABLED
-SUBDIRS += linux-2.6-uml
-endif
 if L24_ENABLED
 SUBDIRS += linux-2.4
 endif
 
-EXTRA_DIST = linux-2.6 linux-2.4 linux-2.6-uml\
+EXTRA_DIST = linux-2.6 linux-2.4\
                        datapath.c snap.h chain.c  crc32.c  crc_t.c\
                        flow.h forward.h table-hash.c table-mac.c\
             unit.c unit.h datapath.h  chain.h  crc32.h\