Diff for /embedaddon/libiconv/HACKING between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 22:57:48 version 1.1.1.2, 2021/03/17 13:38:46
Line 1 Line 1
 All you need to know when hacking (modifying) GNU libiconv or when building  All you need to know when hacking (modifying) GNU libiconv or when building
it off the CVS.it off the Git repository.
   
   
 Requirements  Requirements
Line 9  You will need reasonably recent versions of the build  Line 9  You will need reasonably recent versions of the build 
   
   * A C compiler. Such as GNU GCC.    * A C compiler. Such as GNU GCC.
     + Homepage:      + Homepage:
      http://gcc.gnu.org/      https://gcc.gnu.org/
   
   * GNU automake    * GNU automake
     + Homepage:      + Homepage:
      http://www.gnu.org/software/automake/      https://www.gnu.org/software/automake/
   
   * GNU autoconf    * GNU autoconf
     + Homepage:      + Homepage:
      http://www.gnu.org/software/autoconf/      https://www.gnu.org/software/autoconf/
   
   * GNU m4    * GNU m4
     + Homepage:      + Homepage:
      http://www.gnu.org/software/m4/      https://www.gnu.org/software/m4/
   
   * GNU gperf    * GNU gperf
     + Homepage:      + Homepage:
      http://www.gnu.org/software/gperf/      https://www.gnu.org/software/gperf/
   
   * GNU groff 1.17 or newer    * GNU groff 1.17 or newer
     + Homepage:      + Homepage:
      http://www.gnu.org/software/groff/      https://www.gnu.org/software/groff/
   
   * Perl    * Perl
     + Homepage:      + Homepage:
      http://www.perl.org/      https://www.perl.org/
   
   * Either an internet connection or a recent copy of GNU gnulib.    * Either an internet connection or a recent copy of GNU gnulib.
     + Homepage:      + Homepage:
      http://www.gnu.org/software/gnulib/      https://www.gnu.org/software/gnulib/
   
 And, of course, the packages listed in the DEPENDENCIES file.  And, of course, the packages listed in the DEPENDENCIES file.
   
   
Building off the CVSBuilding off the Git repository
===================================================
   
Access to the CVS is described at http://sourceforge.net/cvs/?group_id=51585 .Access to the Git repository is described at
 https://savannah.gnu.org/git/?group=libiconv .
   
After fetching the sources from the CVS, peek at the comments in autogen.sh,After fetching the sources from the Git repository, peek at the comments in
then run "./autogen.sh"; then you can proceed with "./configure" as usual.autogen.sh, then run
   ./gitsub.sh pull
   ./autogen.sh
 Then you can proceed with "./configure" as usual.
 
 Each time you want to update the source, do not only "git pull".  Instead do
   git pull && ./gitsub.sh pull
   ./autogen.sh
   
   
 Adding new encodings  Adding new encodings

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>