summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-02-01 07:59:46 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-02-01 07:59:46 +0000
commit3b44a3df765318b535ddff9234439b64152fa2fe (patch)
tree9459f0ffe177c7efa67755afc260cce82ccba6cc
parent572c29a4a357dd3a8d3fceae2be9da02383e9e1a (diff)
downloadgnurl-3b44a3df765318b535ddff9234439b64152fa2fe.tar.gz
gnurl-3b44a3df765318b535ddff9234439b64152fa2fe.tar.bz2
gnurl-3b44a3df765318b535ddff9234439b64152fa2fe.zip
7.6.1-pre2curl-7_6_1-pre2
-rw-r--r--CHANGES4
-rw-r--r--include/curl/curl.h2
-rw-r--r--src/version.h2
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index e3398537d..f9e40f4be 100644
--- a/CHANGES
+++ b/CHANGES
@@ -12,6 +12,10 @@ Daniel (31 January 2001)
be able to return -1. The telnet support crashed due to this and there was
a possibility to weird behaviour all over.
+- Added a configure.in check for a working getaddrinfo() if IPv6 is requested.
+ I also made the configure script feature --enable-debug which sets a couple
+ of compiler options when used. It assumes gcc.
+
Daniel (30 January 2001)
- I finally took a stab at the long-term FIXME item I've had on myself, and
now libcurl will properly work when doing a HTTP range-request that follows
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 9568e880c..b038834da 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -452,7 +452,7 @@ char *curl_getenv(char *variable);
char *curl_version(void);
/* This is the version number */
-#define LIBCURL_VERSION "7.6.1-pre1"
+#define LIBCURL_VERSION "7.6.1-pre2"
#define LIBCURL_VERSION_NUM 0x070601
/* linked-list structure for the CURLOPT_QUOTE option (and other) */
diff --git a/src/version.h b/src/version.h
index 00524178c..7457c7c84 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,3 +1,3 @@
#define CURL_NAME "curl"
-#define CURL_VERSION "7.6.1-pre1"
+#define CURL_VERSION "7.6.1-pre2"
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "