summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar shankar2010-03-03 11:10:02 +0000
committerGravatar shankar2010-03-03 11:10:02 +0000
commit1694bbbd2eb46e5a8d9415d4b761213471ca305c (patch)
tree8b3ed82fb02cb70bc25517d82b0c3519ebe22283 /src
parent48badcb5665355ebe31760399c5898951603afdc (diff)
downloadaxis2c-1694bbbd2eb46e5a8d9415d4b761213471ca305c.tar.gz
axis2c-1694bbbd2eb46e5a8d9415d4b761213471ca305c.tar.bz2
fixing issue AXIS2C-1240
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@918410 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/core/transport/http/sender/Makefile.am7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/transport/http/sender/Makefile.am b/src/core/transport/http/sender/Makefile.am
index 399ed39..71026fc 100644
--- a/src/core/transport/http/sender/Makefile.am
+++ b/src/core/transport/http/sender/Makefile.am
@@ -16,10 +16,12 @@ endif
if AXIS2_SSL_ENABLED
SSL_SOURCES = ssl/ssl_stream.c\
ssl/ssl_utils.c
-SSL_LIBS = -lssl -lcrypto
+SSL_LIBS = @OPENSSLLIB@ -lssl -lcrypto
+SSL_INC = @OPENSSLINC@
else
SSL_SOURCES=
SSL_LIBS=
+SSL_INC =
endif
libaxis2_http_sender_la_SOURCES = http_transport_sender.c \
@@ -48,4 +50,5 @@ INCLUDES = -I$(top_builddir)/include \
-I$(top_builddir)/src/core/engine \
-I$(top_builddir)/src/core/deployment \
-I$(top_builddir)/util/include \
- -I$(top_builddir)/axiom/include
+ -I$(top_builddir)/axiom/include \
+ $(SSL_INC)