From 1694bbbd2eb46e5a8d9415d4b761213471ca305c Mon Sep 17 00:00:00 2001 From: shankar Date: Wed, 3 Mar 2010 11:10:02 +0000 Subject: fixing issue AXIS2C-1240 git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@918410 13f79535-47bb-0310-9956-ffa450edef68 --- src/core/transport/http/sender/Makefile.am | 7 +++++-- 1 file 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) -- cgit v1.1-32-gdbae