README.CVS 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. If you are building from CVS, run the script
  2. ./autogen.sh
  3. first, to make sure that you have all the necessary maintainer tools
  4. are installed and to build the actual configuration files. Then run
  5. ./configure --enable-maintainer-mode
  6. followed by the usual make.
  7. If autogen.sh complains about insufficient versions of the required
  8. tools, or the tools are not installed, you may use environment
  9. variables to override the default tool names:
  10. AUTOMAKE_SUFFIX is used as a suffix for all tools from the automake
  11. package. For example
  12. AUTOMAKE_SUFFIX="-1.7" ./autogen.sh
  13. uses "automake-1.7" and "aclocal-1.7.
  14. AUTOMAKE_PREFIX is used as a prefix for all tools from the automake
  15. page and may be combined with AUTOMAKE_SUFFIX. e.g.:
  16. AUTOMAKE_PREFIX=/usr/foo/bin ./autogen.sh
  17. uses "automake" and "aclocal" in the /usr/foo/bin
  18. directory.
  19. AUTOCONF_SUFFIX is used as a suffix for all tools from the automake
  20. package
  21. AUTOCONF_PREFIX is used as a prefix for all tools from the automake
  22. package
  23. GETTEXT_SUFFIX is used as a suffix for all tools from the gettext
  24. package
  25. GETTEXT_PREFIX is used as a prefix for all tools from the gettext
  26. package
  27. It is also possible to use the variable name AUTOMAKE, AUTOCONF,
  28. ACLOCAL, AUTOHEADER, GETTEXT and MSGMERGE to directly specify the name
  29. of the programs to run. It is however better to use the suffix and
  30. prefix forms as described above because that does not require
  31. knowledge about the actual tools used by autgen.sh.
  32. Please don't use autopoint, libtoolize or autoreconf unless you are
  33. the current maintainer and want to update the standard configuration
  34. files. All those files should be in the CVS and only updated manually
  35. if the maintainer decides that newer versions are required. The
  36. maintainer should also make sure that the required version of automake
  37. et al. are properly indicated at the top of configure.ac and take care
  38. to copy the files and not merely use symlinks.
  39. Copyright 2004 g10 Code GmbH
  40. This file is free software; as a special exception the author gives
  41. unlimited permission to copy and/or distribute it, with or without
  42. modifications, as long as this notice is preserved.
  43. This file is distributed in the hope that it will be useful, but
  44. WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
  45. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  46. PURPOSE.