Commit 5b55f9ec authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Gnter Knauf's NetWare changes.

parent 3417e0b0
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -6,6 +6,10 @@

                                  Changelog

Daniel (17 March 2004)
- Günter Knauf brought patches, code and makefiles to build curl on Novell
  NetWare.

Daniel (15 March 2004)
- Lots of libcurl man pages were updated to contain references to other man
  pages the recognized way so that they appear as nice hyperlinks in the HTML
+3 −1
Original line number Diff line number Diff line
@@ -81,7 +81,9 @@ amiga:
	cd ./lib && make -f makefile.amiga
	cd ./src && make -f makefile.amiga


netware:
        cd lib && make -f Makefile.netware
        cd src && make -f Makefile.netware

unix: all

+2 −1
Original line number Diff line number Diff line
@@ -26,6 +26,7 @@ This release includes the following changes:

This release includes the following bugfixes:

 o builds and runs on Novell NetWare
 o Windows builds now report OS as "i386-pc-win32"
 o received signals during SSL connect is handled better
 o improved PUT/POST with NTLM/Digest authentication
@@ -83,6 +84,6 @@ advice from friends like these:
 Ken Hirsch, Stadler Stephan, Domenico Andreoli, Patrick Smith, Tor Arntsen,
 Andrés García, Tim Baker, Len Krause, Gilad, Ken Rastatter, P R Schaffner,
 Greg Hewgill, Ben Greear, Jeff Lawson, Grigory Entin, Doug Porter, David
 Byron, Andy Serpa, Joe Halpin, Christopher R. Palmer
 Byron, Andy Serpa, Joe Halpin, Christopher R. Palmer, Günter Knauf

        Thanks! (and sorry if I forgot to mention someone)
+1 −0
Original line number Diff line number Diff line
@@ -511,6 +511,7 @@ PORTS
        - i386 HURD
        - i386 Linux 1.3, 2.0, 2.2, 2.3, 2.4
        - i386 NetBSD
        - i386 Novell NetWare
        - i386 OS/2
        - i386 OpenBSD
        - i386 SCO unix
+1 −1
Original line number Diff line number Diff line
@@ -55,10 +55,10 @@
#include <winsock2.h>
#else

#ifdef _AIX
/* HP-UX systems version 9, 10 and 11 lack sys/select.h and so does oldish
   libc5-based Linux systems. Only include it on system that are known to
   require it! */
#if defined(_AIX) || defined(NETWARE)
#include <sys/select.h>
#endif

Loading