You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rampart-dev@ws.apache.org by du...@apache.org on 2007/05/04 13:23:03 UTC

svn commit: r535178 - in /webservices/rampart/trunk/c: INSTALL build/win32/configure.in build/win32/deploy_rampart.bat samples/client/sec_echo/deploy_client_repo.bat

Author: dumindu
Date: Fri May  4 04:23:02 2007
New Revision: 535178

URL: http://svn.apache.org/viewvc?view=rev&rev=535178
Log:
Fixed win32 build

Modified:
    webservices/rampart/trunk/c/INSTALL
    webservices/rampart/trunk/c/build/win32/configure.in
    webservices/rampart/trunk/c/build/win32/deploy_rampart.bat
    webservices/rampart/trunk/c/samples/client/sec_echo/deploy_client_repo.bat

Modified: webservices/rampart/trunk/c/INSTALL
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/INSTALL?view=diff&rev=535178&r1=535177&r2=535178
==============================================================================
--- webservices/rampart/trunk/c/INSTALL (original)
+++ webservices/rampart/trunk/c/INSTALL Fri May  4 04:23:02 2007
@@ -40,7 +40,11 @@
 
 2. Extract the source package and build the source.
 	Unzip the source package.
-	Go to the root of the distribution.
+	Go to the "build\win32" directory of the distribution.
+	Set the parameters of the configure.in
+		AXIS2_BIN_DIR = <path/to/where/you/have/installed/axis2>
+		OPENSSL_BIN_DIR = <path/to/where/you/have/installed/openssl>
+		DEBUG = <1 if enabled, 0 otherwise>
 	Run "nmake install"
 
 3. Engage Rampart/C with Axis2/C as described in the "Engaging Rampart/C with axis2/C" section.

Modified: webservices/rampart/trunk/c/build/win32/configure.in
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/build/win32/configure.in?view=diff&rev=535178&r1=535177&r2=535178
==============================================================================
--- webservices/rampart/trunk/c/build/win32/configure.in (original)
+++ webservices/rampart/trunk/c/build/win32/configure.in Fri May  4 04:23:02 2007
@@ -1,6 +1,8 @@
-AXIS2_BIN_DIR = E:\axis2c-bin-1.0.0-win32
-OPENSSL_BIN_DIR = E:\OpenSSL
+AXIS2_BIN_DIR = D:\axis2c-bin-1.0.0-win32
+OPENSSL_BIN_DIR = D:\OpenSSL
 DEBUG = 1
-
+MAJOR_VER = 0
+MINOR_VER = 90
+PATCH_VER =
 
 

Modified: webservices/rampart/trunk/c/build/win32/deploy_rampart.bat
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/build/win32/deploy_rampart.bat?view=diff&rev=535178&r1=535177&r2=535178
==============================================================================
--- webservices/rampart/trunk/c/build/win32/deploy_rampart.bat (original)
+++ webservices/rampart/trunk/c/build/win32/deploy_rampart.bat Fri May  4 04:23:02 2007
@@ -1,6 +1,6 @@
 md %AXIS2C_HOME%\modules\rampart\
-copy rampart\mod_rampart.dll %AXIS2C_HOME%\modules\rampart\
-copy rampart\module.xml %AXIS2C_HOME%\modules\rampart\
+copy modules\rampart\mod_rampart.dll %AXIS2C_HOME%\modules\rampart\
+copy modules\rampart\module.xml %AXIS2C_HOME%\modules\rampart\
 
 md %AXIS2C_HOME%\services\sec_echo\
 copy bin\samples\services\sec_echo\sec_echo.dll %AXIS2C_HOME%\services\sec_echo\
@@ -18,4 +18,4 @@
 copy bin\samples\callback\pwcb.dll %AXIS2C_HOME%\bin\samples\rampart\callback\
 
 md %AXIS2C_HOME%\bin\samples\rampart\credential_provider
-copy bin\samples\credential_provider\cred_provider.dll %AXIS2C_HOME%\bin\samples\rampart\cred_provider\
\ No newline at end of file
+copy bin\samples\credential_provider\cred_provider.dll %AXIS2C_HOME%\bin\samples\rampart\credential_provider\
\ No newline at end of file

Modified: webservices/rampart/trunk/c/samples/client/sec_echo/deploy_client_repo.bat
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/samples/client/sec_echo/deploy_client_repo.bat?view=diff&rev=535178&r1=535177&r2=535178
==============================================================================
--- webservices/rampart/trunk/c/samples/client/sec_echo/deploy_client_repo.bat (original)
+++ webservices/rampart/trunk/c/samples/client/sec_echo/deploy_client_repo.bat Fri May  4 04:23:02 2007
@@ -1,7 +1,7 @@
 echo off
 
 rem if your client repository is different, change the value.
-set CLIENT_REPO=%AXIS2C_HOME%\clientrepo
+set CLIENT_REPO=%AXIS2C_HOME%\client_repo
 
 echo Start creating a client repository at %CLIENT_REPO%