diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-01-11 12:33:26 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-01-11 12:33:26 +0000 |
commit | 18ebde6960c93312e193cadda767560bf0a720be (patch) | |
tree | e033a1e8d8d17cff18898178b560f23543ee4444 /docs/INSTALL | |
parent | b0c0e8d815ad06a7f6045f0c0a316da8cc0e0bf8 (diff) |
I successfully compiled on built curl for StrongARM NetBSD
Added other known platforms
Added the faked autoconf and autoheader trick posted about recently
Diffstat (limited to 'docs/INSTALL')
-rw-r--r-- | docs/INSTALL | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/docs/INSTALL b/docs/INSTALL index 71f5be933..420b66a38 100644 --- a/docs/INSTALL +++ b/docs/INSTALL @@ -86,13 +86,28 @@ UNIX If you happen to have autoconf installed, but a version older than 2.12 you will get into trouble. Then you can still build curl by - issuing these commands: (from Ralph Beckmann <rabe@uni-paderborn.de>) + issuing these commands: (from Ralph Beckmann) ./configure [...] cd lib; make; cd .. cd src; make; cd .. cp src/curl elsewhere/bin/ + As suggested by David West, you can make a faked version of autoconf and + autoheader: + + ----start of autoconf---- + #!/bin/bash + #fake autoconf for building curl + if [ "$1" = "--version" ] then + echo "Autoconf version 2.13" + fi + ----end of autoconf---- + + Then make autoheader a symbolic link to the same script and make sure + they're executable and set to appear in the path *BEFORE* the actual (but + obsolete) autoconf and autoheader scripts. + OPTIONS Remember, to force configure to use the standard cc compiler if both @@ -256,18 +271,20 @@ PORTS - PowerPC Mac OS X - Sparc Linux - Sparc Solaris 2.4, 2.5, 2.5.1, 2.6, 7, 8 - - Sparc SunOS 4.1.* + - Sparc SunOS 4.1.X - i386 BeOS - i386 FreeBSD - i386 Linux 1.3, 2.0, 2.2, 2.3, 2.4 - i386 NetBSD - i386 OS/2 - i386 OpenBSD + - i386 SCO unix - i386 Solaris 2.7 - - i386 Windows 95, 98, NT, 2000 + - i386 Windows 95, 98, ME, NT, 2000 - ia64 Linux 2.3.99 - m68k AmigaOS 3 - m68k OpenBSD + - StrongARM NetBSD 1.4.1 OpenSSL ======= |