CVS-INFO 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. _ _ ____ _
  2. ___| | | | _ \| |
  3. / __| | | | |_) | |
  4. | (__| |_| | _ <| |___
  5. \___|\___/|_| \_\_____|
  6. CVS-INFO
  7. This file is only present in the CVS - never in release archives. It contains
  8. information about other files and things that the CVS repository keeps in its
  9. inner sanctum.
  10. Compile and build instructions follow below.
  11. CHANGES.0 contains ancient changes.
  12. CHANGES.$year contains changes for the particular year.
  13. Makefile.dist is included as the root Makefile in distribution archives
  14. perl/ is a subdirectory with various perl scripts
  15. To build in environments that support configure, after having extracted
  16. everything from CVS, do this:
  17. ./buildconf
  18. ./configure
  19. make
  20. Daniel uses a ./configure line similar to this for easier development:
  21. ./configure --disable-shared --enable-debug --enable-maintainer-mode
  22. In environments that don't support configure (i.e. Microsoft), do this:
  23. buildconf.bat
  24. REQUIREMENTS
  25. For buildconf (not buildconf.bat) to work, you need the following software
  26. installed:
  27. o autoconf 2.57 (or later)
  28. o automake 1.7 (or later)
  29. o libtool 1.4.2 (or later)
  30. o GNU m4 (required by autoconf)
  31. o nroff + perl
  32. If you don't have nroff and perl and you for some reason don't want to
  33. install them, you can rename the source file src/hugehelp.c.cvs to
  34. src/hugehelp.c and avoid having to generate this file. This will of course
  35. give you an older version of the file that isn't up-to-date. That file was
  36. checked in once and won't be updated very regularly.
  37. MAC OS X
  38. With Mac OS X 10.2 and the associated Developer Tools, the installed versions
  39. of the build tools are adequate. For Mac OS X 10.1 users, Guido Neitzer
  40. wrote the following step-by-step guide:
  41. 1. Install fink (http://fink.sourceforge.net)
  42. 2. Update fink to the newest version (with the installed fink)
  43. 3. Install the latest version of autoconf, automake and m4 with fink
  44. 4. Install version 1.4.1 of libtool - you find it in the "unstable" section
  45. (read the manual to see how to get unstable versions)
  46. 5. Get cURL from the cvs
  47. 6. Build cURL with "./buildconf", "./configure", "make", "sudo make install"