summaryrefslogtreecommitdiff
path: root/m4/mbstate_t.m4
Commit message (Collapse)AuthorAgeFilesLines
* update nearly all FSF copyright year lists to include 2010Jim Meyering2010-01-011-1/+1
| | | | | Use the same procedure as for 2009, outlined in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/20081
* update nearly all FSF copyright year lists to include 2009Jim Meyering2009-12-291-1/+1
| | | | | | | | | | | | | | | | | | The files named by the following are exempted: grep -v '^#' config/srclist.txt|grep -v '^$' \ | while read src dst; do test -f "$dst" && { echo "$dst"; continue; } test -d "$dst" || continue echo "$dst"/$(basename "$src") done > exempt git ls-files tests/unictype >> exempt In the remaining files, convert to all-interval notation if - there is already at least one year interval like 2000-2003 - the file is maintained by me - the file is in lib/uni*/, where that style already prevails Otherwise, use update-copyright's default.
* Use spaces for indentation, not tabs.Bruno Haible2009-12-101-8/+8
|
* many *.m4 files: improve m4 quotingJim Meyering2009-01-141-5/+5
| | | | | | | | | | | | | | | | 99% of this change was performed by running the following commands: git ls-files | grep '\.m4$' | xargs perl -pi \ -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \ -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \ -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \ -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g' perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4 The remainder were to add Copyright dates, increment serial numbers, undo some changes in comments, exclude m4/intl.m4, and add quotes around the "1" in ",1" where the unusual spacing prohibited the above regexps from doing the job. For more details, see <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
* Ensure mbstate_t is defined on HP-UX 11.11.Bruno Haible2008-12-201-3/+7
|
* Fix underquoting of AC_LANG_PROGRAM arguments.Bruno Haible2008-04-151-5/+5
|
* Use an all-permissive copyright notice, recommended by RMS.Bruno Haible2005-01-181-5/+3
|
* Update from diffutils-2.8.2.Jim Meyering2002-06-211-20/+23
|
* Quote the first argument in each use of AC_DEFUN.Jim Meyering2001-08-121-2/+2
|
* (AC_MBSTATE_T): Define mbstate_t to be int,Jim Meyering2000-08-071-2/+2
| | | | not char, for compatibility with glibc 2.1.3 strftime.c.
* (AC_MBSTATE_T): Renamed from AC_MBSTATE_T_OBJECT. All uses changed.Jim Meyering2000-07-141-24/+10
| | | | | Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT and mbstate_t, to a single-part test that simply defines mbstate_t.
* (AC_MBSTATE_T_OBJECT): Test for mbstate_tJim Meyering2000-07-061-16/+16
| | | | | | | only if the test for an object-type mbstate_t fails. This prevents us from mistakenly reporting that mbstate_t is a system object type after we "#define mbstate_t int" to work around its lack.
* (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.Jim Meyering2000-07-041-11/+15
| | | | Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
* Also define mbstate_t, if necessary.Jim Meyering2000-07-021-2/+15
|
* Use stdlib.h, not stdio.h. The latter is not includedJim Meyering2000-06-281-4/+7
| | | | by quotearg.c, for which we perform this test. From Bruno Haible.
* Include stdio.h before wchar.h to work aroundJim Meyering2000-06-251-2/+7
| | | | Linux header bug when _XOPEN_SOURCE is defined to 500.
* New file, defining AC_MBSTATE_T_OBJECT.Jim Meyering2000-06-231-0/+18