Commit 13962adc authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

7.3 commit

parent 221f1c2c
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
@@ -8,6 +8,18 @@

Version 7.3

Daniel (28 September 2000)
- Removed the base64_krb.[ch] files. They've now replaced the former
  base64.[ch] files.

Daniel (26 September 2000)
- Updated some docs.

- I changed the OpenSSL fix to work with older versions as well. The posted
  patch was only working with 0.9.6 and no older ones.
  
Version 7.3-pre8

Daniel (25 September 2000)
- Erdmut Pfeifer informed us that curl didn't build with OpenSSL 0.9.6 and
  showed us what needed to get patched in order to make it build properly
@@ -33,7 +45,7 @@ Daniel (21 September 2000)
Daniel (20 September 2000)
- Richard Prescott solved another name lookup buffer size problem. I took this
  opportunity to rewrite the GetHost() function. With these large buffer
  sizes, I think keeping them as local arrays quickly turn ugly. I know use
  sizes, I think keeping them as local arrays quickly turn ugly. I now use
  malloc() to get the buffer memory. Thanks to this, I now can realloc() to a
  large buffer in case of demand (errno == ERANGE) in case a solution like
  that would become necessary. I still want to avoid that kind of nastiness.
+3 −0
Original line number Diff line number Diff line
@@ -33,3 +33,6 @@

/* Define if you need the _REENTRANT define for some functions */
#undef NEED_REENTRANT

/* Define if you have the Kerberos4 libraries (including -ldes) */
#undef KRB4
+18 −0
Original line number Diff line number Diff line
@@ -49,6 +49,9 @@
/* Define if you need the _REENTRANT define for some functions */
#undef NEED_REENTRANT

/* Define if you have the Kerberos4 libraries (including -ldes) */
#undef KRB4

/* The number of bytes in a long double.  */
#undef SIZEOF_LONG_DOUBLE

@@ -94,6 +97,9 @@
/* Define if you have the inet_ntoa_r function.  */
#undef HAVE_INET_NTOA_R

/* Define if you have the krb_get_our_ip_for_realm function.  */
#undef HAVE_KRB_GET_OUR_IP_FOR_REALM

/* Define if you have the localtime_r function.  */
#undef HAVE_LOCALTIME_R

@@ -124,6 +130,9 @@
/* Define if you have the stricmp function.  */
#undef HAVE_STRICMP

/* Define if you have the strlcpy function.  */
#undef HAVE_STRLCPY

/* Define if you have the strstr function.  */
#undef HAVE_STRSTR

@@ -145,6 +154,9 @@
/* Define if you have the <crypto.h> header file.  */
#undef HAVE_CRYPTO_H

/* Define if you have the <des.h> header file.  */
#undef HAVE_DES_H

/* Define if you have the <dlfcn.h> header file.  */
#undef HAVE_DLFCN_H

@@ -160,6 +172,9 @@
/* Define if you have the <io.h> header file.  */
#undef HAVE_IO_H

/* Define if you have the <krb.h> header file.  */
#undef HAVE_KRB_H

/* Define if you have the <malloc.h> header file.  */
#undef HAVE_MALLOC_H

@@ -256,6 +271,9 @@
/* Define if you have the nsl library (-lnsl).  */
#undef HAVE_LIBNSL

/* Define if you have the resolv library (-lresolv).  */
#undef HAVE_LIBRESOLV

/* Define if you have the resolve library (-lresolve).  */
#undef HAVE_LIBRESOLVE

+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ dnl $Id$
dnl Process this file with autoconf to produce a configure script.
AC_INIT(lib/urldata.h)
AM_CONFIG_HEADER(config.h src/config.h)
AM_INIT_AUTOMAKE(curl,"7.3-pre8")
AM_INIT_AUTOMAKE(curl,"7.3")
AM_PROG_LIBTOOL

dnl
+1 −0
Original line number Diff line number Diff line
@@ -141,6 +141,7 @@ FAQ
      Solaris (native cc compiler)
      HPUX (native cc compiler)
      SGI IRIX (native cc compiler)
      SCO UNIX (native cc compiler)

    When configuring curl, I specify --with-ssl. OpenSSL is installed in
    /usr/local/ssl Configure reports SSL in /usr/local/ssl, but fails to find
Loading