summaryrefslogtreecommitdiffstats
path: root/nanohttp
diff options
context:
space:
mode:
authorGravatar m0gg2006-03-06 13:28:21 +0000
committerGravatar m0gg2006-03-06 13:28:21 +0000
commit7a47bd6164a6d1806af7557daedb2be5db064140 (patch)
treef37e2463548c3773fa32f370c684e10dc83c0136 /nanohttp
parent4a2a6386c54d911f3162b95698d7467226d4b38e (diff)
downloadcsoap-7a47bd6164a6d1806af7557daedb2be5db064140.tar.gz
csoap-7a47bd6164a6d1806af7557daedb2be5db064140.tar.bz2
Buildsystem cleanup
Diffstat (limited to 'nanohttp')
-rw-r--r--nanohttp/Makefile.am52
-rwxr-xr-xnanohttp/todo.txt19
2 files changed, 11 insertions, 60 deletions
diff --git a/nanohttp/Makefile.am b/nanohttp/Makefile.am
index 2ad1fb8..48f9364 100644
--- a/nanohttp/Makefile.am
+++ b/nanohttp/Makefile.am
@@ -1,46 +1,16 @@
-## Source directory
-
-
-h_sources = nanohttp-common.h\
-nanohttp-socket.h\
-nanohttp-client.h\
-nanohttp-server.h\
-nanohttp-stream.h\
-nanohttp-mime.h\
-nanohttp-request.h\
-nanohttp-response.h\
-nanohttp-base64.h\
-nanohttp-ssl.h
-
-
-cc_sources = nanohttp-common.c\
-nanohttp-socket.c\
-nanohttp-client.c\
-nanohttp-server.c\
-nanohttp-stream.c\
-nanohttp-mime.c\
-nanohttp-request.c\
-nanohttp-response.c\
-nanohttp-base64.c\
-nanohttp-ssl.c
-
-
-
-library_includedir=$(includedir)/$(NANOHTTP_LIBRARY_NAME)-$(NANOHTTP_API_VERSION)/$(NANOHTTP_LIBRARY_NAME)
-library_include_HEADERS = $(h_sources)
-
-INCLUDES = -I$(top_srcdir)
-
-# GENERIC_API_VERSION is 1.0
-lib_LTLIBRARIES= libnanohttp-1.0.la
-libnanohttp_1_0_la_SOURCES= $(h_sources) $(cc_sources)
-libnanohttp_1_0_la_LDFLAGS= -version-info $(NANOHTTP_LIBRARY_VERSION) -release $(NANOHTTP_RELEASE)
-
-
-
-
+lib_LTLIBRARIES=libnanohttp.la
+libnanohttp_ladir=$(includedir)/nanohttp-@nanohttp_release@/nanohttp
+libnanohttp_la_SOURCES=nanohttp-common.c nanohttp-socket.c nanohttp-client.c \
+ nanohttp-server.c nanohttp-stream.c nanohttp-mime.c \
+ nanohttp-request.c nanohttp-response.c \
+ nanohttp-base64.c nanohttp-ssl.c
+libnanohttp_la_HEADERS=nanohttp-common.h nanohttp-socket.h nanohttp-client.h \
+ nanohttp-server.h nanohttp-stream.h nanohttp-mime.h \
+ nanohttp-request.h nanohttp-response.h \
+ nanohttp-base64.h nanohttp-ssl.h
+libnanohttp_la_LDFLAGS= -version-info @nanohttp_version@ -release @nanohttp_release@
diff --git a/nanohttp/todo.txt b/nanohttp/todo.txt
deleted file mode 100755
index 3cf9981..0000000
--- a/nanohttp/todo.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-------------------------------------------------------------
-ERROR HANDLING !!!!
-------------------------------------------------------------
-
-Merge
-
-
-mime_message_t *
-mime_message_parse(http_input_stream_t *in,
- const char* root_id, const char* boundary,
- const char* dest_dir);
-
-and try to optimize mime API
-
-------------------------------------------------------------
-check socket API again
-
-