From 417f3033b7bcbe5f5de9d9dd532703cc83e7c289 Mon Sep 17 00:00:00 2001 From: "Philip M. Gollucci" Date: Thu, 23 Sep 2010 02:35:54 +0000 Subject: The lib_mysqludf_xql library provides an array of functions, which can be used to create XML output directly from MySQL using a single SQL query. This prevents having to convert a MySQL result to XML in a PHP script, Ruby script, etc. The library provides the same functionality as SQL/XML, seen in MS SQL server and Oracle. However it uses normal functions. By using subqueries the same results as SQL/XML can be generated. WWW: http://www.mysqludf.org/lib_mysqludf_xql/index.php PR: ports/142086 Submitted by: Mina R Waheeb --- databases/mysql-xql/files/patch-configure | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 databases/mysql-xql/files/patch-configure (limited to 'databases/mysql-xql/files/patch-configure') diff --git a/databases/mysql-xql/files/patch-configure b/databases/mysql-xql/files/patch-configure new file mode 100644 index 000000000000..06a15e87fd23 --- /dev/null +++ b/databases/mysql-xql/files/patch-configure @@ -0,0 +1,20 @@ +--- configure.org 2009-11-19 14:51:20.000000000 +0000 ++++ configure 2009-12-28 00:24:17.000000000 +0000 +@@ -14555,7 +14555,7 @@ + + + +-if test -n "$MYSQL_PLUGINDIR" && test "$libdir" == '${exec_prefix}/lib' ; then ++if test -n "$MYSQL_PLUGINDIR" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: setting libdir to mysql plugin dir $MYSQL_PLUGINDIR" >&5 + $as_echo "$as_me: setting libdir to mysql plugin dir $MYSQL_PLUGINDIR" >&6;} + libdir=$MYSQL_PLUGINDIR +@@ -14599,6 +14599,8 @@ + for i in /usr /usr/local ; do + if test -f "$i/lib/xml2Conf.sh" ; then + XML2_CONFIG="$i/lib/xml2Conf.sh" ++ elif test -f "$i/etc/xml2Conf.sh" ; then ++ XML2_CONFIG="$i/etc/xml2Conf.sh" + elif test -f "$i/lib/libxml2.so"; then + XML2_DIR="$i" + fi -- cgit v1.2.3