aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-08-07 06:22:16 +0000
committerChristian Grothoff <christian@grothoff.org>2013-08-07 06:22:16 +0000
commit4251a1cd971538db4893c82c31920273c2199386 (patch)
treeaf0f89f29063d18bd4ac9820a932760da957cfde /src
parent81464b301a53bd915195aedb3b449ac38e03b06f (diff)
downloadlibmicrohttpd-4251a1cd971538db4893c82c31920273c2199386.tar.gz
libmicrohttpd-4251a1cd971538db4893c82c31920273c2199386.zip
Part 1 of 2 - Remove PlibC from autotools files.
Diffstat (limited to 'src')
-rw-r--r--src/examples/Makefile.am5
-rw-r--r--src/include/Makefile.am2
-rw-r--r--src/microhttpd/Makefile.am7
-rw-r--r--src/testcurl/Makefile.am5
-rw-r--r--src/testcurl/https/Makefile.am5
-rw-r--r--src/testzzuf/Makefile.am6
6 files changed, 3 insertions, 27 deletions
diff --git a/src/examples/Makefile.am b/src/examples/Makefile.am
index 6a2f31b5..5dbd52ef 100644
--- a/src/examples/Makefile.am
+++ b/src/examples/Makefile.am
@@ -1,11 +1,6 @@
1SUBDIRS = . 1SUBDIRS = .
2 2
3if USE_PRIVATE_PLIBC_H
4 PLIBC_INCLUDE = -I$(top_srcdir)/src/include/plibc
5endif
6
7AM_CPPFLAGS = \ 3AM_CPPFLAGS = \
8 $(PLIBC_INCLUDE) \
9 -I$(top_srcdir)/src/include \ 4 -I$(top_srcdir)/src/include \
10 @LIBGCRYPT_CFLAGS@ 5 @LIBGCRYPT_CFLAGS@
11 6
diff --git a/src/include/Makefile.am b/src/include/Makefile.am
index cce55616..66761396 100644
--- a/src/include/Makefile.am
+++ b/src/include/Makefile.am
@@ -1,4 +1,4 @@
1SUBDIRS = plibc . 1SUBDIRS = .
2 2
3if ENABLE_SPDY 3if ENABLE_SPDY
4microspdy = microspdy.h 4microspdy = microspdy.h
diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am
index 4ff623ae..b4d8663f 100644
--- a/src/microhttpd/Makefile.am
+++ b/src/microhttpd/Makefile.am
@@ -1,12 +1,7 @@
1if USE_PRIVATE_PLIBC_H
2 PLIBC_INCLUDE = -I$(top_srcdir)/src/include/plibc
3endif
4
5AM_CPPFLAGS = \ 1AM_CPPFLAGS = \
6 $(PLIBC_INCLUDE) \
7 -I$(top_srcdir)/src/include \ 2 -I$(top_srcdir)/src/include \
8 -I$(top_srcdir)/src/daemon \ 3 -I$(top_srcdir)/src/daemon \
9 @LIBGCRYPT_CFLAGS@ 4 @LIBGCRYPT_CFLAGS@
10 5
11EXTRA_DIST = EXPORT.sym 6EXTRA_DIST = EXPORT.sym
12 7
diff --git a/src/testcurl/Makefile.am b/src/testcurl/Makefile.am
index b83983e8..fd4696e7 100644
--- a/src/testcurl/Makefile.am
+++ b/src/testcurl/Makefile.am
@@ -8,12 +8,7 @@ if ENABLE_HTTPS
8 SUBDIRS += https 8 SUBDIRS += https
9endif 9endif
10 10
11if USE_PRIVATE_PLIBC_H
12 PLIBC_INCLUDE = -I$(top_srcdir)/src/include/plibc
13endif
14
15AM_CPPFLAGS = \ 11AM_CPPFLAGS = \
16 $(PLIBC_INCLUDE) \
17-I$(top_srcdir) \ 12-I$(top_srcdir) \
18-I$(top_srcdir)/src/daemon \ 13-I$(top_srcdir)/src/daemon \
19-I$(top_srcdir)/src/include \ 14-I$(top_srcdir)/src/include \
diff --git a/src/testcurl/https/Makefile.am b/src/testcurl/https/Makefile.am
index 1a1cc232..0bcc5569 100644
--- a/src/testcurl/https/Makefile.am
+++ b/src/testcurl/https/Makefile.am
@@ -4,12 +4,7 @@ if USE_COVERAGE
4 AM_CFLAGS = --coverage 4 AM_CFLAGS = --coverage
5endif 5endif
6 6
7if USE_PRIVATE_PLIBC_H
8 PLIBC_INCLUDE = -I$(top_srcdir)/src/include/plibc
9endif
10
11AM_CPPFLAGS = \ 7AM_CPPFLAGS = \
12 $(PLIBC_INCLUDE) \
13 -I$(top_srcdir)/src/include \ 8 -I$(top_srcdir)/src/include \
14 -I$(top_srcdir)/src/microhttpd \ 9 -I$(top_srcdir)/src/microhttpd \
15 $(LIBCURL_CPPFLAGS) 10 $(LIBCURL_CPPFLAGS)
diff --git a/src/testzzuf/Makefile.am b/src/testzzuf/Makefile.am
index 2b72f404..6c908339 100644
--- a/src/testzzuf/Makefile.am
+++ b/src/testzzuf/Makefile.am
@@ -4,11 +4,7 @@ if USE_COVERAGE
4 AM_CFLAGS = -fprofile-arcs -ftest-coverage 4 AM_CFLAGS = -fprofile-arcs -ftest-coverage
5endif 5endif
6 6
7if USE_PRIVATE_PLIBC_H 7INCLUDES = -I$(top_srcdir)/src/include
8 PLIBC_INCLUDE = -I$(top_srcdir)/src/include/plibc
9endif
10
11INCLUDES = $(PLIBC_INCLUDE) -I$(top_srcdir)/src/include
12 8
13EXTRA_DIST = README socat.c 9EXTRA_DIST = README socat.c
14 10