diff options
author | snowdrop | 2004-01-06 08:03:45 +0000 |
---|---|---|
committer | snowdrop | 2004-01-06 08:03:45 +0000 |
commit | 4366cd5474c6e7e8948a7fd86c799a2259f1bf55 (patch) | |
tree | ac571dc41c34075a41b48c91e04b9236719553a4 | |
parent | 9f89c0462109bafa8c79d40275e368c72cb67301 (diff) | |
download | csoap-4366cd5474c6e7e8948a7fd86c799a2259f1bf55.tar.gz csoap-4366cd5474c6e7e8948a7fd86c799a2259f1bf55.tar.bz2 |
removed libxml2 libraries and added LIBSOCKET and LIBNSL (for Solaris)
-rw-r--r-- | examples/nanohttp/Makefile.am | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/examples/nanohttp/Makefile.am b/examples/nanohttp/Makefile.am index 221f469..2901d25 100644 --- a/examples/nanohttp/Makefile.am +++ b/examples/nanohttp/Makefile.am @@ -1,15 +1,17 @@ bin_PROGRAMS=httpget httpgetcb httppost INCLUDES=-I$(top_srcdir)/ +LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) \ + $(LIBSOCKET) $(LIBNSL) httpget_SOURCES=httpget.c -httpget_LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) +httpget_LDFLAGS=$(LDFLAGS) httpgetcb_SOURCES=httpgetcb.c -httpgetcb_LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) +httpgetcb_LDFLAGS=$(LDFLAGS) httppost_SOURCES=httppost.c -httppost_LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) +httppost_LDFLAGS=$(LDFLAGS) |