| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
Rewrite in Lua for robustness and brevity.
Also make it understand the Lua style of ?-pattern path.
Patch from Gary Vaughan (gary@gnu.org)
|
|
|
|
|
|
|
| |
* m4/ax_lua.m4 (_AX_LUA_CHK_VER): If version pattern match fails
return nil, then treat the "toobig" version number as math.huge.
Signed-off-by: Gary V. Vaughan <gary@gnu.org>
|
|
|
|
|
| |
* m4/ax_lua.m4 ( _AX_LUA_CHK_IS_INTRP): For portability, replace
`&>` with `>/dev/null 2>&1`.
|
|
|
|
| |
* m4/ax_lua.m4 (AX_PROG_LUA): s/package\.cpathd/package.cpath/.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Use Lua interpreter for its own version analysis, for shorter and more
readable code.
Add fallback header support when cross-compiling.
Fix a GNUism in a grep call.
(All via Gary Vaughan <gary@gnu.org>)
|
| |
|
| |
|
|
|
|
|
|
| |
* NEWS: Add header line for next release.
* .prev-version: Record previous version.
* cfg.mk (old_NEWS_hash): Auto-update.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Remove references to earlier AC_PREFIX_CONFIG_H macro, of which the
net no longer has more than the faintest trace. Clarify the purpose at
the start of the documentation, and improve the English a little.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
This changeset will allow AX_ZONEINFO to find the zoneinfo files
on AIX >=6.1.
|
| |
|
|
|
|
|
|
|
|
|
| |
This patch is needed when the python library has been built statically. The
math symbols like sin, cos, etc are left undefined in the .a file so we must
inform the user of the library to link against libm, whose linker
argument (-lm) is defined under SYSLIBS.
Further details are at <https://savannah.gnu.org/patch/?8309>.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The latest version of git-log tracks the origin of a given file through
sub-module commits. The macro AX_ABSOLUTE_HEADER, for instance, used to
have 6 commits attributed to it, but now it has 26:
$ git log --oneline -- m4/ax_absolute_header.m4
27948f4 ALL: update web site URL to http://www.gnu.org/software/autoconf-archive/MACRO-NAME.html
c6b6f51 Assigned all macros a unique serial number.
89b80e0 Augmented the text of the all-permissive license by an express warranty disclaimer.
d722dcd Add AU_ALIAS calls to new files for all recently renamed macros.
6fc99d3 Center the URL at the top of every file and use consistent word-wrapping.
acffb06 Rename gl_TRILINOS_ABSOLUTE_HEADER to AX_ABSOLUTE_HEADER.
054e8ad remove m4 submodule
fa1b1bb m4: update reference to macro branch
548839e m4: update reference to macro branch
d9afb8a m4: update reference to macro branch
8968e9d m4: update reference to macro branch
862b513 Avoid non-ASCII characters in m4 files.
d7160b6 m4: update reference to macro branch
9062013 m4: update reference to macro branch
3cf85b5 m4: update reference to macro branch
49af2e9 m4: update reference to macro branch
950f2a7 m4: update reference to macro branch
c610f41 m4: update reference to macro branch
78d7777 m4: update reference to macro branch
ddd0b53 m4: update reference to macro branch
fcb87e1 m4: update reference to macro branch
702ea3c m4: update reference to macro branch
cee9eea m4: update reference to macro branch
e3df236 m4: update reference to macro branch
3c89e38 m4: update reference to macro branch
3b30002 maint: added initial version of the toolchain
This new behavior means that most of our macros suddenly experience large
bumps in their #serial number for no apparent reason.
To prevent this situation, we limit the version history git-log may
consider to 054e8ad..HEAD, i.e. all commits prior to the sub-module merge
don't count. This gives us the old behavior of git-log back.
|
|
|
|
|
|
| |
On 32-bit platforms, ${host_cpu} corresponds to a specific cpu, such as
i386, i486, i586, i686, while Ubuntu 13.10 assumes that for all 32-bit
platforms libraries are located in lib/i386-gnu-linux folder.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
AX_PROG_JAVADOC. Also fixed a path discrepancy with AX_JAVA_OPTIONS.
The discrepancy is AX_JAVA_OPTIONS sets up a variable JAVAPREFIX
which is described to the user as the "prefix where the Java runtime
is installed". Unfortunately, that directory doesn't contain any
executables, but $JAVAPREFIX/bin does.
This incorrect path was passed in the value-if-not-found parameter
of AC_CHECK_PROGS which is incorrect. I fixed the path and pass it
in to the path parameter.
|
|
|
|
| |
Removed the changequote also.
|
|
|
|
|
|
| |
tests
See <https://savannah.gnu.org/patch/index.php?8287> for further details.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
In cases where we want to require that a macro exists, but not call it,
introduce a new AX_REQUIRE_DEFINED helper. The existing AC_REQUIRE macro
will call its argument and does not allow for passing of additional args
to the macro.
Once we have this in place, cut a few callers over to it to fix bugs where
they'd accidentally call other helpers w/out any flags.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Fixes lib detection on Ubuntu 13.10 x86_64 and likely elsewhere as well.
|