GIT-INFO 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. _ _ ____ _
  2. ___| | | | _ \| |
  3. / __| | | | |_) | |
  4. | (__| |_| | _ <| |___
  5. \___|\___/|_| \_\_____|
  6. GIT-INFO
  7. This file is only present in git - never in release archives. It contains
  8. information about other files and things that the git repository keeps in its
  9. inner sanctum.
  10. Compile and build instructions follow below.
  11. CHANGES.0 contains ancient changes
  12. CHANGES contains the most recent changes
  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 git, 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 give you
  35. a stubbed version of the file that doesn't contain actual content.
  36. MAC OS X
  37. With Mac OS X 10.2 and the associated Developer Tools, the installed versions
  38. of the build tools are adequate. For Mac OS X 10.1 users, Guido Neitzer
  39. wrote the following step-by-step guide:
  40. 1. Install fink (http://fink.sourceforge.net)
  41. 2. Update fink to the newest version (with the installed fink)
  42. 3. Install the latest version of autoconf, automake and m4 with fink
  43. 4. Install version 1.4.1 of libtool - you find it in the "unstable" section
  44. (read the manual to see how to get unstable versions)
  45. 5. Get cURL from git
  46. 6. Build cURL with "./buildconf", "./configure", "make", "sudo make install"