diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-10-14 21:21:51 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-10-14 21:21:51 +0000 |
commit | f335bac8a38e816c4243474d7c7d186638d3aab4 (patch) | |
tree | 502d5e4a16985ae070e1c1b1ec53c5c581386802 /include | |
parent | 51369753bb65bbe3bb2fc88fdfb701f7ff76c72a (diff) |
Reverted the LIBCURL_VERSION_NUM change from October 6. As Dave Dribin
reported, the define is used by the configure script and is assumed to use
the 0xYYXXZZ format. This made "curl-config --vernum" fail in the 7.15.0
release version.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curlver.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/curl/curlver.h b/include/curl/curlver.h index 0cb6c2337..7f94670f4 100644 --- a/include/curl/curlver.h +++ b/include/curl/curlver.h @@ -51,8 +51,6 @@ and it is always a greater number in a more recent release. It makes comparisons with greater than and less than work. */ -#define LIBCURL_VERSION_NUM ((LIBCURL_VERSION_MAJOR << 16) | \ - (LIBCURL_VERSION_MINOR << 8) | \ - LIBCURL_VERSION_PATCH) +#define LIBCURL_VERSION_NUM 0x070f01 #endif /* __CURL_CURLVER_H */ |