summaryrefslogtreecommitdiff
path: root/intl
Commit message (Collapse)AuthorAge
* build: use MKDIR_P instead of MKINSTALLDIRSRoss Burton2018-08-11
| | | | Signed-off-by: Theodore Ts'o <tytso@mit.edu>
* Use @AR@ instead of hardcoded 'ar'bjornpagen@gmail.com2018-05-13
| | | | | | | e2fsprogs currently hardcodes 'ar' in one of it's makefiles. This is fixed with this patch: Signed-off-by: Theodore Ts'o <tytso@mit.edu>
* e2fsprogs: fix Free Software Foundation addressLukas Czerner2018-04-19
| | | | | | | | | This is mostly automatic replace of Free Software Foundation address in all our files with the correct address that can be found at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt Signed-off-by: Lukas Czerner <lczerner@redhat.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
* Merge branch 'maint' into nextTheodore Ts'o2017-10-15
|\
| * Fix typos in code comments and developer docsSebastian Rasmussen2017-10-15
| | | | | | | | | | | | Signed-off-by: Sebastian Rasmussen <sebras@gmail.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu> Reviewed-by: Andreas Dilger <adilger@dilger.ca>
* | tests: skip running long test with "make check" and add "make fullcheck"Theodore Ts'o2017-04-26
|/ | | | | | | | | Don't run tests which take longer than 20 seconds to run (especially f_large_dir, whose run time is well over ten minutes) for "make check". The new "make fullcheck" will run all of the regression tests for e2fsprogs. Signed-off-by: Theodore Ts'o <tytso@mit.edu>
* misc: create better-packaged static analysis reportsDarrick J. Wong2014-05-11
| | | | | | | | Fix some minor bugs relating to passing CFLAGS to cppcheck, and package the cppcheck output into nicer looking reports. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
* all: Introduce cppcheck static checking for make C=1Darrick J. Wong2014-03-14
| | | | | | | Introduce more static checking via cppcheck. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Add coverage testing using gcovTheodore Ts'o2014-02-23
| | | | | | | | | | | | | To check the coverage of e2fsprogs's regression test, do the following: configure --enable-gcov make -j8 ; make -j8 check ; make coverage.txt The coverage information will be the coverage.txt and *.gcov files in the build directories. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* configure: fix --with-diet-libcTheodore Ts'o2014-01-05
| | | | | | | | | | | | | | | Newer versions of autoconf pull in AC_PROG_GCC as part of AC_CANONICAL_HOST. So we need check for WITH_DIET_LIBC earlier in configure.in. Also, e2fsprogs now needs functions which are found in diet libc's compat library. So add support for autoconf's LIBS function, and automatically set libs to include -lcompat. Finally, disable compiling e4defrag by deault if --with-diet-libc is specified because the program has too many glibc dependencies. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* e2fsprogs: add (optional) sparse checking to the buildDarrick J. Wong2013-10-11
| | | | | | | | | | Run sparse against source files when building e2fsprogs with 'make C=1'. If instead C=2, it configures basic ext2 types for bitwise checking with sparse, which can help find the (many many) spots where conversion errors are (possibly) happening. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Shorten compile commands run by the build systemTheodore Ts'o2011-09-18
| | | | | | | | | | | | | | | The DEFS line in MCONFIG had gotten so long that it exceeded 4k, and this was starting to cause some tools heartburn. It also made "make V=1" almost useless, since trying to following the individual commands run by make was lost in the noise of all of the defines. So fix this by putting the configure-generated defines in lib/config.h and the directory pathnames to lib/dirpaths.h. In addition, clean up some vestigal defines in configure.in and in the Makefiles to further shorten the cc command lines. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Fix intl/ build: add E/Q/V macros, process intl/libgnuintl.hMatthias Andree2009-07-18
| | | | | | | These were found necessary to build on FreeBSD 6.4. Signed-off-by: Matthias Andree <matthias.andree@gmx.de> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
* Add support for configure --enable-verbose-makecmdsTheodore Ts'o2009-07-02
| | | | | | | | | | | | | | | | | Some people don't want to see the concise "kernel-style" make output. This configure option allows build engines that want to see the full set of commands executed by the makefile to get what they want. Most people will find this more distracting than useful, unless they need to debug the Makefiles. (It is not necessary to rerun configure to enable this verbose make output temprarily; if a developer wants to do a quick debug of a directory's makefile, he or she can simply edit the definition of the $(E) and $(Q) variables in the Makefile; instructions can be found in the MCONFIG file which is included in at the beginning of every Makefile.) Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* remove useless if-before-free testsJim Meyering2009-03-08
| | | | | | | | | | | | | | | | | | | In case you're wondering about whether this change is safe from a portability standpoint, fear not. This has been beaten to death in other forums. Here are a few threads: http://thread.gmane.org/gmane.comp.version-control.git/74187 http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/12712 http://thread.gmane.org/gmane.emacs.devel/98144 http://thread.gmane.org/gmane.comp.lib.glibc.alpha/13092 There has been debate about whether it's a good idea from a performance standpoint, too, but imho you'll have a hard time finding an instance where this sort of change induces a measurable performance penalty. If you do, please let me know. Signed-off-by: Jim Meyering <meyering@redhat.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
* Fix compiling under diet libcTheodore Ts'o2008-09-12
| | | | | | | | Some recent changes had caused diet libc support to bitrot. Fix up missing header files and other portability fixups needed for dietlibc. (Many of these changes also improve general portability.) Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Remove trailing whitespace for the entire source treeTheodore Ts'o2008-08-27
| | | | Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Remove Changelog files since they're not used after the git migrationTheodore Ts'o2007-07-08
| | | | Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Update Release Notes, Changelogs, version.h, etc. for 1.40 releaseTheodore Ts'o2007-06-24
| | | | Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Add datarootdir definition for compatibility with autoconf 2.60Theodore Ts'o2006-10-22
| | | | Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
* Update for e2fsprogs 1.38 release.Theodore Ts'o2005-06-30
|
* Update for the e2fsprogs 1.37 release.Theodore Ts'o2005-03-21
|
* Update for release of e2fsprogs 1.36.Theodore Ts'o2005-02-05
|
* Fix "make uninstall" to make sure it removes everything that is installed.Theodore Ts'o2005-01-26
|
* Remove libgnuintl.h file, since it is a generated file.Theodore Ts'o2005-01-19
|
* Add install-strip and install-shlibs-strip targetsTheodore Ts'o2004-12-15
| | | | | | | Use Linux-kernel-style makefile output for "make install" Update intl/Makefile.in to version from gettext 0.14.1
* Make make distclean remove all generated files. Theodore Ts'o2004-11-30
| | | | | | Update the po and intl changelog files to indicate that we updated to gettext 0.14.1
* Update to use gettext 0.14.1 and autoconf 2.50+Theodore Ts'o2004-11-30
|
* Remove .cvsignore files; they were out of date, and causes lintianTheodore Ts'o2004-05-05
| | | | | to flame about their presence in the source tarball.
* Update version number for e2fsprogs 1.35 release.Theodore Ts'o2004-02-28
|
* Update for 1.34 release.Theodore Ts'o2003-07-26
|
* Add Czech translation.Theodore Ts'o2003-05-03
| | | | | | | | Remove "NYC" translation. Add Czech translation from Miloslav Trmac <mitr@volny.cz> Random NLS and other display fixes from Miloslav.
* Update to gettext 0.11.5. We now enable NLS support by default.Theodore Ts'o2003-05-03
| | | | | Fixed up support for using the internal intl library.
* Update for 1.33 release.Theodore Ts'o2003-04-21
| | | | | | | | | Fix typo's in README.subset Change debian control file so it doesn't bomb out if the EVMS FSIM is not there, since it is not built on the Hurd. Resolves Debian bug #189687.
* Update files for 1.32 release.Theodore Ts'o2002-11-09
|
* Update files for 1.31 release.Theodore Ts'o2002-11-08
|
* Update files for 1.30 release.Theodore Ts'o2002-11-01
|
* Update for 1.29 release.Theodore Ts'o2002-09-24
|
* Update changelogs for 1.28 releaseTheodore Ts'o2002-08-31
|
* Update for 1.27 release.Theodore Ts'o2002-03-08
|
* Update files for 1.26 release.Theodore Ts'o2002-02-03
|
* Update changelogs for 1.25 release.Theodore Ts'o2001-09-20
|
* Update for 1.24a releaseTheodore Ts'o2001-09-04
|
* Update for 1.24 release.Theodore Ts'o2001-08-31
|
* Add missing log entry showing when we released e2fsprogs 1.23Theodore Ts'o2001-08-27
|
* Update changelogs for 1.22.Theodore Ts'o2001-06-23
|
* ChangeLog:Theodore Ts'o2001-06-16
| | | | | Update for 1.21 release.
* e2fsprogs.lsm, version.h:Theodore Ts'o2001-05-25
| | | | | | | Update version string for 1.20 release ChangeLog: Update Changelogs for 1.20 release.
* configure.in:Theodore Ts'o2000-07-13
| | | | | | | | | | | | | | | | | | | | Commit this file for future use; contains a configure.in script for when libuuid gets separtead out into its own package. libext2fs.texinfo: Update version numbers for 1.19 release. TODO: Commit TODO list for 1.19 release. README: Update file for 1.19 release. ChangeLog, e2fsprogs.spec: e2fsprogs.spec: Merge in a few changes from the Red Hat 6.2 spec file, now that we're using a modern rpm to build e2fsprogs. Also updated version number to 1.19. version.h: Update version number for 1.19 release. ChangeLog: Check in changes for 1.19 release.
* .cvsignore:Theodore Ts'o2000-05-25
| | | | | Supress build files when builddir==srcdir