diff options
author | 2013-02-16 18:30:45 +0100 | |
---|---|---|
committer | 2013-02-16 18:30:45 +0100 | |
commit | 7d61535076aa1ca484f453594b29e2ca052c2505 (patch) | |
tree | 17c558addadc0ac4f1c9843271ab3f3e678da2ac /src/core/transport/http/sender/ntlm | |
parent | 37268e184e6f5202c34b00be2478f33f8819d0ee (diff) | |
download | axis2c-7d61535076aa1ca484f453594b29e2ca052c2505.tar.gz axis2c-7d61535076aa1ca484f453594b29e2ca052c2505.tar.bz2 |
Fix building with mingw and make sure linking generates proper DLL files
Diffstat (limited to 'src/core/transport/http/sender/ntlm')
3 files changed, 4 insertions, 2 deletions
diff --git a/src/core/transport/http/sender/ntlm/default/Makefile.am b/src/core/transport/http/sender/ntlm/default/Makefile.am index 1457475..a5a6849 100644 --- a/src/core/transport/http/sender/ntlm/default/Makefile.am +++ b/src/core/transport/http/sender/ntlm/default/Makefile.am @@ -20,5 +20,7 @@ libaxis2_ntlm_la_SOURCES = ../ntlm.c \ libaxis2_ntlm_la_LIBADD = $(top_builddir)/util/src/libaxutil.la +libaxis2_ntlm_la_LDFLAGS = $(WIN32_EXTRA_LDFLAGS) + INCLUDES = -I$(top_builddir)/include \ -I$(top_builddir)/util/include diff --git a/src/core/transport/http/sender/ntlm/heimdal/Makefile.am b/src/core/transport/http/sender/ntlm/heimdal/Makefile.am index 05c6239..cadaa44 100644 --- a/src/core/transport/http/sender/ntlm/heimdal/Makefile.am +++ b/src/core/transport/http/sender/ntlm/heimdal/Makefile.am @@ -21,7 +21,7 @@ libaxis2_ntlm_la_SOURCES = ../ntlm.c \ libaxis2_ntlm_la_LIBADD = @NTLM_LDFLAGS@ \ $(top_builddir)/util/src/libaxutil.la -#libaxis2_ntlm_la_LDFLAGS = -version-info $(VERSION_NO) +#libaxis2_ntlm_la_LDFLAGS = -version-info $(VERSION_NO) $(WIN32_EXTRA_LDFLAGS) INCLUDES = -I$(top_builddir)/include \ diff --git a/src/core/transport/http/sender/ntlm/libntlm/Makefile.am b/src/core/transport/http/sender/ntlm/libntlm/Makefile.am index 823c9c8..e9d142e 100644 --- a/src/core/transport/http/sender/ntlm/libntlm/Makefile.am +++ b/src/core/transport/http/sender/ntlm/libntlm/Makefile.am @@ -21,7 +21,7 @@ libaxis2_ntlm_la_SOURCES = ../ntlm.c \ libaxis2_ntlm_la_LIBADD = @NTLM_LDFLAGS@ \ $(top_builddir)/util/src/libaxutil.la -#libaxis2_ntlm_la_LDFLAGS = -version-info $(VERSION_NO) +#libaxis2_ntlm_la_LDFLAGS = -version-info $(VERSION_NO) $(WIN32_EXTRA_LDFLAGS) INCLUDES = -I$(top_builddir)/include \ |