summaryrefslogtreecommitdiff
path: root/gnulib-tool
Commit message (Collapse)AuthorAgeFilesLines
* Avoid quadratic growth in gl_LIBSOURCES.Eric Blake2008-05-141-1/+1
| | | | | | | * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/. Suggested by Bruno Haible. Signed-off-by: Eric Blake <ebb9@byu.net>
* Oops, fix small mistake in last commit.Bruno Haible2008-05-141-1/+1
|
* Reduce number of forks required during autoconf.Eric Blake2008-05-141-10/+27
|
* * gnulib-tool: Fix various comment typos.Eric Blake2008-05-131-9/+9
| | | | Signed-off-by: Eric Blake <ebb9@byu.net>
* Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.Bruno Haible2008-04-111-0/+1
|
* Avoid some more autoconf warnings.Eric Blake2008-04-091-2/+1
| | | | | | | | | | | | | | | | | * m4/acl.m4 (gl_FUNC_ACL): s/AC_HELP_STRING/AS_HELP_STRING/. * m4/afs.m4 (gl_AFS): Likewise. * m4/gc-random.m4 (gl_GC_RANDOM): Likewise. * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): s/AC_FOREACH/m4_foreach_w/. * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED) (gl_INTEGER_TYPE_SUFFIX): Likewise. * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE) (AC_CHECK_DECLS_ONCE): Likewise. Rename file... * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that gnulib-tool requires autoconf 2.59 or better. * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/. Signed-off-by: Eric Blake <ebb9@byu.net>
* gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnosticJim Meyering2008-04-061-2/+2
|
* New options --vc-files, --no-vc-files.Bruno Haible2008-03-241-78/+113
|
* Install files from top/ in the destination directory.Bruno Haible2008-03-231-3/+17
|
* Tweak "gnulib --version" output.Bruno Haible2008-03-231-1/+1
|
* Tweak "gnulib --version" output.Bruno Haible2008-03-231-3/+31
|
* More --version tweaks.Eric Blake2008-03-211-1/+2
| | | | | | | * gnulib-tool (func_version): Obey GNU Coding Standards. Output date of last ChangeLog entry. Signed-off-by: Eric Blake <ebb9@byu.net>
* Bump copyright year in files generated by gnulib-tool.Eric Blake2008-03-141-1/+4
| | | | | | | * gnulib-tool (func_emit_copyright_notice): Extract copyright from gnulib-tool, rather than hard-coding it. Signed-off-by: Eric Blake <ebb9@byu.net>
* Fix 'gnulib-tool --version' output to work with git.Eric Blake2008-03-141-80/+88
| | | | | | | | | | | * gnulib-tool (func_gnulib_dir): New function, extracted from... (startup): ...here. (func_version): Use it to invoke git-version-gen, rather than relying on CVS keyword expansion. Modernize wording. (cvsdatestamp, last_checkin_date, version): Kill unused variables. Signed-off-by: Eric Blake <ebb9@byu.net>
* Fix the value of $auxdir used when generating the tests directory.Bruno Haible2007-12-261-2/+6
|
* Remove unnecessary -l options from LDFLAGS.Bruno Haible2007-12-261-6/+13
|
* Allow circular dependency of separate libtests.aEric Blake2007-12-121-0/+2
| | | | | | | * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS when use_libtests. Signed-off-by: Eric Blake <ebb9@byu.net>
* Avoid link failures with separate libtests.a.Eric Blake2007-12-111-1/+4
| | | | | | | * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd last, to satisfy circular dependencies. Signed-off-by: Eric Blake <ebb9@byu.net>
* Support versions of autoconf prior to 2.59c.Jim Meyering2007-12-111-0/+7
| | | | | * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w if it is not already defined.
* Collect sources for tests-related modules in tests/, compile them to libtests.a.Bruno Haible2007-12-101-67/+246
|
* Fix references to the build-aux directory in the generated tests/Makefile.am.Bruno Haible2007-12-101-1/+2
|
* Remove redundant code.Bruno Haible2007-12-101-5/+0
|
* If --lgpl is not specified, convert copyright headers to GPLv3+.v0.0Bruno Haible2007-10-291-0/+7
|
* Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.Bruno Haible2007-10-281-13/+63
|
* Update after move from cvs to git.Bruno Haible2007-10-211-1/+6
|
* * gnulib-tool (func_get_dependencies): Fix sed script to match only tests.Ralf Wildenhues2007-10-171-1/+1
|
* Change copyright notice from GPLv2+ to GPLv3+.Bruno Haible2007-10-071-5/+4
|
* Synthesize an EXTRA_DIST augmentation also for tests modules.Bruno Haible2007-10-041-0/+12
|
* AC_LIBSOURCES([alloca.c]) must be a no-op, otherwise it breaks the 'alloca-opt'Bruno Haible2007-10-021-5/+9
| | | | module.
* m4 macro indentation.Bruno Haible2007-09-301-10/+14
|
* Enforce that AC_REPLACE_FUNCS files exist.Eric Blake2007-09-281-4/+10
| | | | | | | * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES override check for typos. Signed-off-by: Eric Blake <ebb9@byu.net>
* Make "gnulib-tool --version" work in git-cvsserver checkout.Bruno Haible2007-09-171-2/+4
|
* Try harder to enable the alias for 'sed'.Bruno Haible2007-09-161-1/+12
|
* Allow for modules to show an arbitrary notice.Bruno Haible2007-09-091-2/+50
|
* New options --verbose, --quiet.Bruno Haible2007-09-091-42/+71
|
* Prefer rsync over wget when available.Bruno Haible2007-09-081-2/+10
|
* Care about dangling symbolic links.Bruno Haible2007-08-261-2/+2
|
* Use test -h, not test -L.Bruno Haible2007-08-261-2/+2
|
* Create .cvsignore files when creating a new directory.Bruno Haible2007-07-231-3/+10
|
* Remove pointless error message.Bruno Haible2007-07-191-7/+1
|
* New options --po-base, --po-domain.Bruno Haible2007-07-181-7/+297
|
* Ensure that also files under build-aux/ are distributed.Bruno Haible2007-07-181-1/+12
|
* New gnulib-tool option --more-symlinks.Bruno Haible2007-07-141-8/+21
|
* Handle copying terms "GPLv2+" and "LGPLv2+".Bruno Haible2007-07-131-5/+26
|
* (func_import): Avoid duplication of --avoid statementsSergey Poznyakoff2007-07-101-6/+8
| | | | | (func_dest_tmpfilename,func_create_testdir): Translate `-' in file names to `_' in variable names.
* Determine PATH_SEPARATOR and handle Windows PATH as well.Bruno Haible2007-07-011-12/+45
|
* Untabify the last two commits.Bruno Haible2007-07-011-4/+4
|
* * gnulib-tool (self_abspathname): Fix algorithm to cope withRalf Wildenhues2007-07-011-2/+8
| | | | empty components in $PATH, denoting '.'.
* * gnulib-tool: Fix indentation.Ralf Wildenhues2007-07-011-17/+16
| | | | | (func_create_megatestdir): Likewise. Report by Bruno Haible.
* Don't let the 'mostlyclean' target fail because of a nonempty directory.Bruno Haible2007-06-231-3/+5
|