4
0

README-cvs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. -*- outline -*-
  2. These notes intend to help people working on the CVS version of
  3. this package.
  4. * Requirements
  5. Only the sources are installed in the CVS repository (to ease the
  6. maintenance, merges etc.), therefore you will have to get the latest
  7. stable versions of the maintainer tools we depend upon, including:
  8. - Automake <http://www.gnu.org/software/automake/>
  9. - Autoconf <http://www.gnu.org/software/autoconf/>
  10. - Bison <http://www.gnu.org/software/bison/>
  11. - Gettext <http://www.gnu.org/software/gettext/>
  12. - Gzip <http://www.gnu.org/software/gzip/>
  13. - Tar <http://www.gnu.org/software/tar/>
  14. - Wget <http://www.gnu.org/software/wget/>
  15. As of this writing, the latest stable version of Gzip is 1.2.4 but we
  16. suggest using test version 1.3.5 (or later, if one becomes available).
  17. Valgrind <http://valgrind.org/> is also highly recommended, if
  18. Valgrind supports your architecture.
  19. Only building the initial full source tree will be a bit painful,
  20. later, a plain `cvs update -P && make' should be sufficient.
  21. * First CVS checkout
  22. Obviously, if you are reading these notes, you did manage to check out
  23. this package from CVS. The next step is to get other files needed to
  24. build, which are extracted from other source packages:
  25. $ ./bootstrap
  26. And there you are! Just
  27. $ ./configure
  28. $ make
  29. $ make check
  30. At this point, there should be no difference between your local copy,
  31. and the CVS master copy:
  32. $ cvs diff
  33. should output no difference.
  34. Enjoy!
  35. -----
  36. Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation,
  37. Inc.
  38. This program is free software; you can redistribute it and/or modify
  39. it under the terms of the GNU General Public License as published by
  40. the Free Software Foundation; either version 3, or (at your option)
  41. any later version.
  42. This program is distributed in the hope that it will be useful,
  43. but WITHOUT ANY WARRANTY; without even the implied warranty of
  44. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  45. GNU General Public License for more details.
  46. You should have received a copy of the GNU General Public License
  47. along with this program; if not, write to the Free Software
  48. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  49. 02110-1301, USA.