summaryrefslogtreecommitdiff
path: root/m4
AgeCommit message (Collapse)Author
2005-02-21(gl_PREREQ): Require gl_GETHRXTIME.Paul Eggert
Require gl_STRIPSLASH and gl_LINEBUFFER.
2005-02-21(gl_MACROS): Don't check for gethrtime.Paul Eggert
2005-02-21(gl_GETTIME): Check for nanotime.Paul Eggert
2005-02-21Initial revision.Paul Eggert
2005-02-20*** empty log message ***Jim Meyering
2005-02-20*** empty log message ***Jim Meyering
2005-02-11(gl_INTTOSTR): Use AC_LIBSOURCES to list the required source files.Jim Meyering
2005-02-11*** empty log message ***Jim Meyering
2005-02-09*** empty log message ***Jim Meyering
2005-02-09(gl_FUNC_GETCWD_NULL): Use AC_LIBSOURCES to list the required source files.Jim Meyering
2005-02-08Require gl_FUNC_MEMCASECMP.Jim Meyering
2005-02-08*** empty log message ***Jim Meyering
2005-02-08(gl_FUNC_MEMCASECMP): New file and macro.Jim Meyering
2005-02-08remove vestigial `closeout'Jim Meyering
2005-02-07Use AC_REQUIRE where possible, and _ONCE-suffixed versions of macros.Jim Meyering
2005-02-07*** empty log message ***Jim Meyering
2005-02-07(gl_FUNC_FTS): New file and macro.Jim Meyering
2005-02-07Require gl_FUNC_FTS.Jim Meyering
2005-02-06*** empty log message ***Jim Meyering
2005-02-06(gl_PREREQ_CHDIR_LONG): Depend on gl_FUNC_MEMRCHR.Jim Meyering
2005-02-06(gl_FUNC_MEMRCHR): Check for declaration of memrchr.Jim Meyering
2005-02-03* memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.Paul Eggert
2005-02-03(gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.Paul Eggert
2005-01-29Use AC_LIBSOURCES to list corresponding source (.c, .h, .y) filesJim Meyering
so that automake automatically knows to distribute those files. Use AC_LIBOBJ to ensure that automake automatically knows the names of always-compiled source files. Automake already knows the names of conditionally compiled ones, e.g., due to preexisting uses of AC_LIBOBJ and AC_REPLACE_FUNCS. [This is a start. Many still remain to be fixed...]
2005-01-29*** empty log message ***Jim Meyering
2005-01-29Require gl_HASH_PJW and gl_BASENAME.Jim Meyering
2005-01-29*** empty log message ***Jim Meyering
2005-01-27*** empty log message ***Jim Meyering
2005-01-27(gl_BASENAME): New file/macro.Jim Meyering
2005-01-23Use an all-permissive copyright notice, recommended by RMS.Paul Eggert
2005-01-22Remove "m4/" from listed file names.Paul Eggert
2005-01-22Sync from gnulib.Paul Eggert
2005-01-20* save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume it.Paul Eggert
2005-01-20(gl_SAVE_CWD): Remove check for fcntl; we now assume it.Paul Eggert
2005-01-14*** empty log message ***Jim Meyering
2005-01-14*** empty log message ***Jim Meyering
2005-01-14*** empty log message ***Jim Meyering
2005-01-14Work around tests/touch/empty-file failure on a systemJim Meyering
(sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes' NULL-means-set-to-current-time semantics. Remove temporary file immediately, rather than waiting for configure's at-exit trap code to do it.
2005-01-04(gl_FUNC_CHOWN): When cross-compiling, assume that chownJim Meyering
is sane and DOES follow symlinks. Besides, testing 20 different systems found no broken chown implementations.
2005-01-04(gl_FUNC_CHOWN): When cross-compiling, assume that chownJim Meyering
is sane and DOES follow symlinks. Besides, testing 20 different systems found no broken chown implementations.
2005-01-03Update serial number and copyright date.Paul Eggert
2005-01-03* m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.Paul Eggert
* m4/ullong_max.m4: New file. * src/system.h: Undo previous change; we now use Autoconf.
2005-01-03*** empty log message ***Jim Meyering
2005-01-03Remove `.tmp' suffix; mkstemp requires that XXXXXX be a suffix.Jim Meyering
2005-01-03*** empty log message ***Jim Meyering
2005-01-03(gl_FUNC_MKSTEMP): Don't `cd' into the temporaryJim Meyering
subdirectory. That would make the subsequent AC_TRY_RUN macro fail, for lack of the ./confdefs.h file. Instead, use the temporary directory name as a prefix on the template string. Include <unistd.h> for the declaration of close.
2004-12-24* getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.Paul Eggert
2004-12-24(gl_GETDATE): Remove AC_FUNC_ALLOCA.Paul Eggert
2004-12-21*** empty log message ***Jim Meyering
2004-12-21(gl_FUNC_MKSTEMP): Remove temporary directory rightJim Meyering
away, rather than waiting for configure's at-exit trap code to do it. Suggestion from Stepan Kasal.