GIT-INFO 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. To build in environments that support configure, after having extracted
  11. everything from git, do this:
  12. autoreconf -fi
  13. ./configure
  14. make
  15. Daniel uses a ./configure line similar to this for easier development:
  16. ./configure --disable-shared --enable-debug --enable-maintainer-mode
  17. In environments that don't support configure (i.e. Microsoft), do this:
  18. buildconf.bat
  19. REQUIREMENTS
  20. For autoreconf and configure (not buildconf.bat) to work, you need the
  21. following software installed:
  22. o autoconf 2.57 (or later)
  23. o automake 1.7 (or later)
  24. o libtool 1.4.2 (or later)
  25. o GNU m4 (required by autoconf)
  26. o nroff + perl
  27. If you don't have nroff and perl and you for some reason don't want to
  28. install them, you can rename the source file src/tool_hugehelp.c.cvs to
  29. src/tool_hugehelp.c and avoid having to generate this file. This will
  30. give you a stubbed version of the file that doesn't contain actual content.