summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Fix deprecated things in ax_prototype.m4bogdro2022-03-301-10/+14
| |/ / | | | | | | Fix deprecated things in ax_prototype.m4, other small changes.
* | | Merge pull request #250 from agbuckley/ax_python_devel-safe-pyversionPeter Simons2022-04-251-4/+28
|\ \ \ | | | | | | | | Fix Python version-string comparisons in ax_devel_python.m4
| * | | Add a shim class to ax_devel_python.m4 to make the Python version-string ↵Andy Buckley2022-04-051-4/+28
| |/ / | | | | | | | | | comparisons evaluate correctly between < .10 and >= .10 micro version numbers
* | | Merge pull request #248 from heitbaum/AX_CC_MAXOPTPeter Simons2022-04-250-0/+0
|\ \ \ | | | | | | | | AX_CC_MAXOPT: Fix nvhpc case
| * | | AX_CC_MAXOPT: Fix nvhpc caseRudi Heitbaum2022-02-271-0/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | Missing ;; in the ax_cv_c_compiler_vendor case statement causing syntax error with libffi configure: line y: syntax error near unexpected token `)' line y: ` gnu)' Signed-off-by: Rudi Heitbaum <rudi@heitbaum.com>
* | | Merge pull request #251 from rrthomas/masterPeter Simons2022-04-251-1/+2
|\ \ \ | |/ / |/| | m4/ax_cc_maxopt.m4: add missing ;; to end of case
| * | m4/ax_cc_maxopt.m4: add missing ;; to end of caseReuben Thomas2022-04-251-1/+2
|/ /
* | maint: post-release administriviaPeter Simons2022-02-113-2/+4
| | | | | | | | | | | | * NEWS: Add header line for next release. * .prev-version: Record previous version. * cfg.mk (old_NEWS_hash): Auto-update.
* | Update copyright headers and bump version for upcoming release.v2022.02.11Peter Simons2022-02-118-13/+13
| |
* | Re-format macros into the canonical format.Peter Simons2022-02-118-16/+15
| |
* | Merge pull request #223 from wferi/patch-1Peter Simons2022-02-110-0/+0
|\ \ | | | | | | ax_pthread.m4: replace deprecated $as_echo with AS_ECHO()
| * | ax_pthread.m4: replace deprecated $as_echo with AS_ECHO()wferi2020-10-251-1/+1
| | | | | | | | | | | | | | | This silences the deprecation warning emitted for $as_echo by the upcoming 2.70 version of Autoconf.
* | | Merge pull request #246 from vapier/masterPeter Simons2022-02-112-31/+11
|\ \ \ | | | | | | | | AX_CC_FOR_BUILD: deprecate in favor of AX_PROG_CC_FOR_BUILD
| * | | AX_CC_FOR_BUILD: deprecate in favor of AX_PROG_CC_FOR_BUILDMike Frysinger2022-01-192-31/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The AX_PROG_CC_FOR_BUILD has seen a lot more updates than AX_CC_FOR_BUILD, and is generally way more complete. The latter hardcoded `gcc` as the native compiler fallback and lacks any of the standard $build- prefix searches. It also uses non-standard cache vars -- it's using the bfd_cv_xxx namespace instead of the ax_cv_xxx namespace everything else does. Otherwise, the macros largely have the same intention: to find a compiler for the build system, and setup the exe extension. So deprecate AX_CC_FOR_BUILD and have it redirect automatically.
* | | | Merge pull request #244 from manxorist/cxx20Peter Simons2022-02-111-4/+48
|\ \ \ \ | | | | | | | | | | AX_CXX_COMPILE_STDCXX: add C++20 support
| * | | | AX_CXX_COMPILE_STDCXX: add C++20 supportJörn Heusipp2021-12-251-4/+48
| |/ / /
* | | | Merge pull request #243 from rmathar/masterPeter Simons2022-02-111-8/+15
|\ \ \ \ | | | | | | | | | | detect qtmake-qt5, moc-qt5 etc in ax_have_qt.m4
| * | | | detect qtmake-qt5, moc-qt5 etc in ax_have_qt.m4mathar2021-12-101-8/+15
| |/ / /
* | | | Merge pull request #242 from ossama-othman/fix-ax-valgrind-checkPeter Simons2022-02-111-8/+8
|\ \ \ \ | | | | | | | | | | AX_VALGRIND_CHECK: Fix "nothing to be done".
| * | | | AX_VALGRIND_CHECK: Bump the M4 serial number.Ossama Othman2021-11-301-1/+1
| | | | |
| * | | | AX_VALGRIND_CHECK: Correct recursive target names.Ossama Othman2021-11-301-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Recursive targets associated with AM_EXTRA_RECURSIVE_TARGETS() macro calls should end with "-local", not "-am". Correct the check-valgrind{-vgtool}-am rules accordingly. This addresses a problem where the calling "make check-valgrind" resulted in "nothing to be done". See the Automake manual Section "Recursing subdirectories" for details: https://www.gnu.org/software/automake/manual/automake.html#Subdirectories
| * | | | AX_VALGRIND_CHECK: Fix recursive rule generation.Ossama Othman2021-11-301-4/+4
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move the AM_EXTRA_RECURSIVE_TARGETS() macro calls inside of the AX_VALGRIND_CHECK definition to force the AM_EXTRA_RECURSIVE_TARGETS() macro calls to be processed as part of AX_VALGRIND_CHECK. The recursive targets were otherwise not generated by Automake when using an installed copy of the `ax_valgrind_check.m4' file (e.g. `/usr/share/aclocal/ax_valgrind_check.m4').
* | | | Merge pull request #241 from earlchew/ax_valgrind_check-addprefixPeter Simons2022-02-111-1/+1
|\ \ \ \ | | | | | | | | | | VALGRIND_CHECK_RULE: Correct spelling of $(addprefix)
| * | | | VALGRIND_CHECK_RULE: Correct spelling of $(addprefix)Earl2021-11-171-1/+1
| |/ / /
* | | | Merge pull request #240 from chuckatkins/detect-nvhpcPeter Simons2022-02-113-4/+25
|\ \ \ \ | | | | | | | | | | AX_COMPILER_VENDOR: Add support for the NVIDIA HPC Compiler
| * | | | AX_COMPILER_VENDOR: Add support for the NVIDIA HPC CompilerChuck Atkins2021-11-053-4/+25
| |/ / / | | | | | | | | | | | | | | | | | | | | This specifically detects the NVIDIA HPC compiler. The "nvhpc" label is explicitly chosen here insted of "nvidia" to distinguish from other NVIDIA compilers (cuda, etc.)
* | | | Merge pull request #239 from jpalus/ax_cc_maxopt-autoconf-2.70Peter Simons2022-02-111-2/+2
|\ \ \ \ | | | | | | | | | | AX_CC_MAXOPT: adjust to new way of testing if var is set
| * | | | AX_CC_MAXOPT: adjust to new way of testing if var is setJan Palus2021-08-301-2/+2
| |/ / / | | | | | | | | | | | | | | | | | | | | autoconf 2.70 changed default value set in $ac_test_* from "set" to "y" see https://git.savannah.gnu.org/cgit/autoconf.git/commit/?id=76754e0 instead of checking for specific value, just check if var is empty
* | | | Merge pull request #237 from kiplingw/patch-1Peter Simons2022-02-111-1/+2
|\ \ \ \ | | | | | | | | | | ax_gcc_x86_cpu_supports.m4: Fix AC_LANG clobbered...
| * | | | ax_gcc_x86_cpu_supports.m4: Fix AC_LANG clobbered...Kip2021-08-101-1/+2
| | | | | | | | | | | | | | | AX_GCC_X86_CPU_SUPPORTS expands _AX_GCC_X86_CPU_INIT, which in turn expands an AC_LANG_PUSH([C]) without a corresponding AC_LANG_POP([C])...
* | | | | Merge pull request #236 from bastien-roucaries/fromdebianPeter Simons2022-02-111-405/+331
|\ \ \ \ \ | |_|/ / / |/| | | | path_bdd from debian
| * | | | Modernize ax_path_bdbBastien Roucariès2021-08-091-70/+77
| | | | | | | | | | | | | | | | | | | | Run AC_SUBST on principal variables and clean up
| * | | | Use AS_IF in ax_path_bdb.m4Bastien Roucariès2021-08-091-57/+58
| | | | | | | | | | | | | | | | | | | | Simplify the code and cleaner
| * | | | Improve AX_PATH_BDB_NO_OPTIONSBastien Roucariès2021-08-091-96/+89
| | | | | | | | | | | | | | | | | | | | Run detection of local install even if no crosscompile because we are now cross compile safe
| * | | | Cleanup _AX_PATH_BDB_PATH_FIND_HIGHESTBastien Roucariès2021-08-091-38/+39
| | | | | | | | | | | | | | | | | | | | Improve this function and add tracing.
| * | | | Use _AX_PATH_BDB_ENV_GET_VERSION in local install checkBastien Roucariès2021-08-091-60/+27
| | | | | | | | | | | | | | | | | | | | Do not hardcode test and use generic test that is usuable in cross compile
| * | | | Improve ax_path_bdbBastien Roucariès2021-08-091-20/+17
| | | | | | | | | | | | | | | | | | | | Use default value 0 for minimal version
| * | | | Harden fail path of header detection of ax_path_bdbBastien Roucariès2021-08-091-2/+10
| | | | |
| * | | | Fix ax_path_bdb in case of crosscompileBastien Roucariès2021-08-091-93/+34
| | | | | | | | | | | | | | | | | | | | We could safely run the env test now
| * | | | Simplify detection of versioned libBastien Roucariès2021-08-091-46/+11
| | | | | | | | | | | | | | | | | | | | Use a for loop along lib instead of if else
| * | | | Allow linking in case of cross compileBastien Roucariès2021-08-091-29/+46
| | | | | | | | | | | | | | | | | | | | Check linking even if cross compile
| * | | | Use private name for variableBastien Roucariès2021-08-091-30/+33
| | | | | | | | | | | | | | | | | | | | Follow variable style of autoconf
| * | | | Factorize header test of path bdbBastien Roucariès2021-08-091-87/+99
| | | | |
| * | | | Use AC_COMPUTE_INT for computing db versionBastien Roucariès2021-08-091-27/+22
| | | | | | | | | | | | | | | | | | | | Better portability and better reporting of error
| * | | | Detect header db.h using classical constructBastien Roucariès2021-08-091-75/+94
| |/ / / | | | | | | | | | | | | | | | | Detect header db.h using the classical AC_COMPILE_IFELSE instead of home made test. Will allow latter factorisation in case of cross compile
* | | | Merge pull request #238 from chyla/ax_prog_robot-fix_two_digit_version_issuePeter Simons2021-08-161-2/+2
|\ \ \ \ | |/ / / |/| | | AX_PROG_ROBOT: fix version checking
| * | | AX_PROG_ROBOT: fix version checkingAdam Chyła2021-08-151-2/+2
|/ / / | | | | | | | | | - fix issue when two numbers version (X.Y) is not detected
* | | Merge remote-tracking branch 'github/master'.Peter Simons2021-06-170-0/+0
|\ \ \
| * \ \ Merge pull request #234 from real-or-random/202106_ax_prog_cc_for_buildPeter Simons2021-06-171-1/+17
| |\ \ \ | | | | | | | | | | AX_PROG_CC_FOR_BUILD fixes
| | * | | AX_PROG_CC_FOR_BUILD: Add workaround for ac_cv_c_compiler_gnu issueTim Ruffing2021-06-161-1/+15
| | | | |