You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sh...@apache.org on 2010/01/28 14:08:27 UTC

svn commit: r904071 - in /webservices/axis2/trunk/c/samples: build.sh configure.ac

Author: shankar
Date: Thu Jan 28 13:08:27 2010
New Revision: 904071

URL: http://svn.apache.org/viewvc?rev=904071&view=rev
Log:
fixing issue AXIS2C-1438

Modified:
    webservices/axis2/trunk/c/samples/build.sh
    webservices/axis2/trunk/c/samples/configure.ac

Modified: webservices/axis2/trunk/c/samples/build.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/build.sh?rev=904071&r1=904070&r2=904071&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/build.sh (original)
+++ webservices/axis2/trunk/c/samples/build.sh Thu Jan 28 13:08:27 2010
@@ -2,7 +2,7 @@
 
 ./autogen.sh
 
-./configure --prefix=${AXIS2C_HOME} --with-axis2=${AXIS2C_HOME}/include/axis2-1.6.0
+./configure --prefix=${AXIS2C_HOME}
 make 
 make install
 

Modified: webservices/axis2/trunk/c/samples/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/configure.ac?rev=904071&r1=904070&r2=904071&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/configure.ac (original)
+++ webservices/axis2/trunk/c/samples/configure.ac Thu Jan 28 13:08:27 2010
@@ -91,7 +91,7 @@
     ;;
   *)
     AC_MSG_RESULT(yes)
-    dnl Find axiom include dir in the path
+    dnl Find axis2 include dir in the path
     if test -d $withval; then
         axis2inc="-I$withval"
     dnl else find the axiom include dir in ${AXIS2C_HOME}/include
@@ -102,6 +102,9 @@
     fi
     ;;
   esac ],
+  if test -d "${AXIS2C_HOME}/include"; then
+  	axis2inc="-I${AXIS2C_HOME}/include/axis2-1.6.0"
+  fi
   AC_MSG_RESULT(no)
 )