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.
This commit is contained in:
Daniel Stenberg 2005-10-14 21:21:51 +00:00
parent 51369753bb
commit f335bac8a3
4 changed files with 10 additions and 5 deletions

View file

@ -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 */