diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-11-24 22:55:09 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-11-24 22:56:39 +0100 |
commit | 4403e82f32de9b339cdacea6989e4a827a7b3a02 (patch) | |
tree | 6a7499d6052d99e88f80817eff4ff8eaa851173b /docs/libcurl/Makefile.am | |
parent | c482e946f7ae003ce54ee05b5cca6d6ce8172f14 (diff) |
symbols.pl: provide LIBCURL_HAS macro for apps
Experience has shown that the symbols-in-versions file is very useful to
applications that want to build with a wide range of libcurl versions.
It is however easy to get it wrong and the source gets a bit messy with
all the fixed numerical comparisions.
The point of this script is to provide an easy-to-use macro for libcurl-
using applications to do preprocessor checks for specific libcurl
defines, and yet make the code clearly show what the macro is used for.
Diffstat (limited to 'docs/libcurl/Makefile.am')
-rw-r--r-- | docs/libcurl/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/Makefile.am b/docs/libcurl/Makefile.am index 45c8fee97..50f1a3b23 100644 --- a/docs/libcurl/Makefile.am +++ b/docs/libcurl/Makefile.am @@ -82,7 +82,7 @@ PDFPAGES = curl_easy_cleanup.pdf curl_easy_getinfo.pdf \ CLEANFILES = $(HTMLPAGES) $(PDFPAGES) EXTRA_DIST = $(man_MANS) $(HTMLPAGES) index.html $(PDFPAGES) libcurl.m4 ABI \ - symbols-in-versions + symbols-in-versions symbols.pl MAN2HTML= roffit --mandir=. < $< >$@ SUFFIXES = .3 .html |