From 0425aadc78680e53000fd0108b540d6eca048516 Mon Sep 17 00:00:00 2001 From: gmcdonald Date: Sat, 13 Feb 2010 01:32:03 +0000 Subject: Moving axis svn, part of TLP move INFRA-2441 git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@909681 13f79535-47bb-0310-9956-ffa450edef68 --- build/win32/configure.in | 73 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 build/win32/configure.in (limited to 'build/win32/configure.in') diff --git a/build/win32/configure.in b/build/win32/configure.in new file mode 100644 index 0000000..3eae3f9 --- /dev/null +++ b/build/win32/configure.in @@ -0,0 +1,73 @@ +############################################################################# +### Build Details ### +############################################################################# +# +# enables https support +ENABLE_SSL = 0 +# +# build libcurl transport +ENABLE_LIBCURL = 0 +# +# build axis2 with Libxml2 Parser. Axis2/C will be built with embeded guththila # parser by Default. +ENABLE_LIBXML2=0 +# +# build tcp server in addition to http server +WITH_TCP = 1 +# +# build with archive based deployment +WITH_ARCHIVE = 0 +# +# +############################################################################# +### Dependant Binary Locations (Required) ### +############################################################################# +# +# libxml2 binary location ( axis2c is built with libxml2 ) +LIBXML2_BIN_DIR = E:\libxml2-2.6.30.win32 + +# +# iconv binary location +ICONV_BIN_DIR = E:\iconv-1.9.2.win32 +# +# zlib binary location +ZLIB_BIN_DIR= E:\zlib-1.2.3.win32 +# +# +############################################################################# +### Dependant Binary Locations (Optional) ### +############################################################################# +# +# openssl binary location +# required if ENABLE_SSL = 1 +OPENSSL_BIN_DIR = E:\OpenSSL +# +# libcurl binary location, only required if libcurl transport is enabled +LIBCURL_BIN_DIR = E:\libcurl-7.15.1-msvc-win32-ssl-0.9.8a-zlib-1.2.3 +# +# +############################################################################# +### Apache Server module (required when building Axis2/C Apache Module) ### +############################################################################# +# +# apache binary location +APACHE_BIN_DIR = "E:\Apache22" +# +# apache 2 server family +# To use apache 2.2 family, use APACHE_VERSION_IS_2_0_X = 0 +APACHE_VERSION_2_0_X = 0 +# +# +############################################################################# +### Compiler Options ### +############################################################################# +# +# C runtime LIBRARY OPTION ( Use /MD or /MT ) +CRUNTIME = /MT +# +# Embed Manifest Files +EMBED_MANIFEST = 0 +# +# debug symbols +# To build with debug symbols use DEBUG = 1 +DEBUG = 0 +# -- cgit v1.1-32-gdbae