Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv25609/scripts
Modified Files:
strongswan
Log Message:
- disabled mysql support in strongswan, since it is causing segmentation faults
- updated mysql to 5.5.23
Index: strongswan
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/strongswan,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- strongswan 16 Apr 2012 14:14:23 -0000 1.13
+++ strongswan 4 May 2012 17:57:11 -0000 1.14
@@ -21,9 +21,10 @@
OPTIONS="$OPTIONS --enable-ldap "
fi
-if [ "$CONFIG_MYSQL_CLIENT" = "y" ]; then
- OPTIONS="$OPTIONS --enable-mysql "
-fi
+# this option is currently causing segfaults
+#if [ "$CONFIG_MYSQL_CLIENT" = "y" ]; then
+# OPTIONS="$OPTIONS --enable-mysql "
+#fi
if [ "$CONFIG_SQLITE" = "y" ]; then
OPTIONS="$OPTIONS --enable-sqlite "
|