You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-commits@axis.apache.org by bi...@apache.org on 2018/01/07 01:48:17 UTC

svn commit: r1820433 - in /axis/axis2/c/core/trunk: configure.ac neethi/configure.ac

Author: billblough
Date: Sun Jan  7 01:48:17 2018
New Revision: 1820433

URL: http://svn.apache.org/viewvc?rev=1820433&view=rev
Log:
Fix WRAPPER_DIR contention between libxml2 and guththila

When configuring with --disable-libxml2 AND --enable-guththila, the WRAPPER_DIR
variable gets cleared by --disable-libxml2 even after --enable-guththila has
set it.

JIRA: AXIS2C-1684


Modified:
    axis/axis2/c/core/trunk/configure.ac
    axis/axis2/c/core/trunk/neethi/configure.ac

Modified: axis/axis2/c/core/trunk/configure.ac
URL: http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/configure.ac?rev=1820433&r1=1820432&r2=1820433&view=diff
==============================================================================
--- axis/axis2/c/core/trunk/configure.ac (original)
+++ axis/axis2/c/core/trunk/configure.ac Sun Jan  7 01:48:17 2018
@@ -197,7 +197,6 @@ AC_ARG_ENABLE(libxml2, [  --enable-libxm
 [ case "${enableval}" in
   no)
     AC_MSG_RESULT(no)
-    WRAPPER_DIR=""
     ;;
   *)
     AC_MSG_RESULT(yes)

Modified: axis/axis2/c/core/trunk/neethi/configure.ac
URL: http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/neethi/configure.ac?rev=1820433&r1=1820432&r2=1820433&view=diff
==============================================================================
--- axis/axis2/c/core/trunk/neethi/configure.ac (original)
+++ axis/axis2/c/core/trunk/neethi/configure.ac Sun Jan  7 01:48:17 2018
@@ -95,7 +95,6 @@ AC_ARG_ENABLE(libxml2, [  --enable-libxm
 [ case "${enableval}" in
   no)
     AC_MSG_RESULT(no)
-    WRAPPER_DIR=""
     ;;
   *)
     AC_MSG_RESULT(yes)