diff options
author | Yang Tse <yangsita@gmail.com> | 2012-12-21 13:00:00 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-12-21 13:00:00 +0100 |
commit | d738adc1fbda9e2e545185f9d1b0551fd2d669e6 (patch) | |
tree | f9067c9dc79a8f265f0f77cdab203df23ad88bec /src/Makefile.am | |
parent | c691037517a969891592e9dbae0a6ed615041881 (diff) | |
download | curl-d738adc1fbda9e2e545185f9d1b0551fd2d669e6.tar.gz |
configure: LIBMETALINK_CFLAGS actually is LIBMETALINK_CPPFLAGS
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 6de750114..d6fd36c12 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -52,7 +52,7 @@ endif include Makefile.inc # This might hold -Werror -CFLAGS += @CURL_CFLAG_EXTRAS@ @LIBMETALINK_CFLAGS@ +CFLAGS += @CURL_CFLAG_EXTRAS@ # Prevent LIBS from being used for all link targets LIBS = $(BLANK_AT_MAKETIME) @@ -64,7 +64,9 @@ curl_LDADD = $(top_builddir)/lib/libcurl.la @LIBMETALINK_LIBS@ @ZLIB_LIBS@ @CURL endif curl_LDFLAGS = @LIBMETALINK_LDFLAGS@ +curl_CPPFLAGS = $(AM_CPPFLAGS) $(LIBMETALINK_CPPFLAGS) curl_DEPENDENCIES = $(top_builddir)/lib/libcurl.la + BUILT_SOURCES = hugehelp.c CLEANFILES = hugehelp.c # Use the C locale to ensure that only ASCII characters appear in the |