summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* bump serial numbers after recent changesHEADmasterPeter Simons2023-05-0110-12/+12
|
* Merge pull request #277 from chu11/fix_typosPeter Simons2023-05-0110-11/+11
|\ | | | | Fix various typos
| * ax_ext_have_lib.m4: fix typoAlbert Chu2023-04-181-1/+1
| |
| * ax_python_config_var.m4: fix typoAlbert Chu2023-04-181-1/+1
| |
| * ax_path_bdb.m4: fix typoAlbert Chu2023-04-181-1/+1
| |
| * ax_pkg_mico.m4: fix typoAlbert Chu2023-04-181-1/+1
| |
| * ax_cvs.m4: fix typoAlbert Chu2023-04-181-2/+2
| |
| * ax_cc_tentdef.m4: fix typoAlbert Chu2023-04-181-1/+1
| |
| * ax_ms_cpprest.m4: fix typoAlbert Chu2023-04-181-1/+1
| |
| * ax_check_java_plugin.m4: fix typoAlbert Chu2023-04-181-1/+1
| |
| * ax_cc_attrcommon.m4: Fix typoAlbert Chu2023-04-181-1/+1
| |
| * ax_boost_base.m4: fix comment typoAlbert Chu2023-04-181-1/+1
|/
* Re-format macros into canonical format after recent changes.Peter Simons2023-04-133-24/+20
|
* Merge pull request #263 from k4rtik/icuPeter Simons2023-04-131-13/+50
|\ | | | | ax_check_icu: bump serial and update after icu-config deprecation
| * ax_check_icu: bump serial and update after icu-config deprecationKartik Singhal2022-10-171-13/+50
| | | | | | | | | | | | | | The changes in this file are primarily due to @TinoDidriksen and @unhammer that they did for hfst <https://github.com/hfst/hfst> at https://github.com/hfst/hfst/blob/master/m4/ax_check_icu.m4
* | Merge pull request #275 from cstes/ax_cc_tentdefPeter Simons2023-04-132-0/+177
|\ \ | | | | | | ax_cc_tentdef: test for C tentative definitions
| * | ax_cc_tentdef: test for C tentative definitionsstes2023-04-102-0/+177
| | |
* | | Merge pull request #276 from theAeon/masterPeter Simons2023-04-131-3/+3
|\ \ \ | | | | | | | | AX_BLAS: Fix vecLib detection on modern MacOS
| * | | Fix vecLib detection on modern MacOSAndrew Robbins2023-04-121-3/+3
| |/ / | | | | | | For whatever reason Apple's hardened runtime scoping disallows third-party linking to -framework vecLib. Linking -framework Accelerate solves this issue.
* | | Merge pull request #274 from saitofuyuki/topic/netcdfPeter Simons2023-04-131-3/+3
|\ \ \ | |/ / |/| | ax_lib_netcdf4: NF_CONFIG instead of NC_CONFIG for Fortran flags.
| * | ax_lib_netcdf4: NF_CONFIG instead of NC_CONFIG for Fortran flags.SAITO Fuyuki2023-03-081-3/+3
| | | | | | | | | | | | | | | NF_CONFIG is better and safer than NC_CONFIG, for NETCDF4_FFLAGS and NETCDF4_FLIBS configuration.
* | | cfg.mk: use the full fingerprint id to identify my GPG keyPeter Simons2023-03-141-1/+1
|/ /
* | maint: post-release administriviaPeter Simons2023-02-203-2/+4
| | | | | | | | | | | | * NEWS: Add header line for next release. * .prev-version: Record previous version. * cfg.mk (old_NEWS_hash): Auto-update.
* | README, NEWS: update for upcoming releasev2023.02.20Peter Simons2023-02-202-4/+6
| |
* | ax_have_qt: bump serial numberPeter Simons2023-02-201-1/+1
| |
* | Merge pull request #262 from bastien-roucaries/fromdebian20200930Peter Simons2023-02-201-3/+3
|\ \ | | | | | | Fix AX_HAVE_QT
| * | Fix AX_HAVE_QTHelmut Grohne2022-10-011-3/+3
| |/ | | | | | | | | The AX_HAVE_QT macro uses an uninitialized shell variable am_have_qt_qmexe. Fix it.
* | ax_have_qt: bump serial numberPeter Simons2023-02-201-1/+1
| |
* | Merge pull request #266 from netfab/fix-ax_have_qtPeter Simons2023-02-201-1/+2
|\ \ | | | | | | AX_HAVE_QT: remove qmake stash file before rmdir
| * | AX_HAVE_QT: remove qmake stash file before rmdirFabrice Delliaux2022-11-131-1/+2
| |/ | | | | | | | | | | | | | | | | | | Since a long time I'm seeing this when running AX_HAVE_QT : > checking for Qt... Info: creating stash file /tmp/tmp.2FXDo4jy40/.qmake.stash > rmdir: failed to remove '/tmp/tmp.2FXDo4jy40': Directory not empty > $ ls -a /tmp/tmp.2FXDo4jy40/ > . .. .qmake.stash
* | ax_python_devel: bump serial numberPeter Simons2023-02-201-1/+1
| |
* | Merge pull request #267 from bastien-roucaries/fromdebian20221118Peter Simons2023-02-201-1/+1
|\ \ | | | | | | Fix ax_python_devel serial 32 fails with current python3
| * | Fix ax_python_devel serial 32 fails with current python3Jerome Benoit2022-11-181-1/+1
| |/ | | | | | | | | | | | | | | | | | | | | | | The faulty code was introduce in commit df89f6cdaade38f3c1c9987be0c5a57c96fc1730 https://github.com/autoconf-archive/autoconf-archive/commit/df89f6cdaade38f3c1c9987be0c5a57c96fc1730 The current code tuple(sys.version_info) gives the 5-tuple (3, 10, 7, 'final', 0) while the former code sys.version.split()[0] would give the 3-tuple (3, 10, 7). So, at first glance, the current code tuple(sys.version_info) should be replaced by tuple(sys.version_info)[:3]. A patch that applied to the current ax_python_devel serial 32 is attached.
* | ax_add_fortify_source: fix formattingPeter Simons2023-02-201-3/+3
| |
* | ax_check_sign: bump serial numberPeter Simons2023-02-201-1/+1
| |
* | ax_cxx_compile_stdcxx: bump serial numberPeter Simons2023-02-201-1/+1
| |
* | ax_c_restrict: fix formattingPeter Simons2023-02-201-2/+2
| |
* | Merge pull request #268 from omoerbeek/masterPeter Simons2023-02-201-1/+1
|\ \ | | | | | | ax_check_sign: Avoid an unused warning
| * | Avoid an unused warningOtto Moerbeek2022-11-301-1/+1
| |/
* | Merge pull request #269 from rurban/fortify3Peter Simons2023-02-201-3/+44
|\ \ | | | | | | AX_ADD_FORTIFY_SOURCE: add -D_FORTIFY_SOURCE=3 check
| * | AX_ADD_FORTIFY_SOURCE: add -D_FORTIFY_SOURCE=3 checkReinhard Urban2023-01-061-3/+44
| |/
* | Merge pull request #270 from rurban/swigPeter Simons2023-02-201-2/+3
|\ \ | | | | | | fix SWIG_LIB windows newline
| * | fix SWIG_LIB windows newlineReini Urban2023-01-071-2/+3
| |/ | | | | | | | | | | | | | | | | mingw64 swig -swiglib prints a newline after each lib, there are two: SWIG_LIB = C:\msys64\MINGW64\bin\Lib C:/msys64/MINGW64/share/swig/3.0.12 * m4/ax_pkg_swig.m4: strip \r\n in SWIG_LIB
* | Merge pull request #271 from rurban/restrictPeter Simons2023-02-201-0/+62
|\ \ | | | | | | Add ax_c_restrict
| * | Add ax_c_restrictReini Urban2023-01-071-0/+62
| | | | | | | | | | | | to check for broken gcc-5 and clang-6 implementations
* | | Merge pull request #272 from ojwb/fix-AX_CXX_COMPILE_STDCXX-for-MSVC-C++17Peter Simons2023-02-201-3/+12
|\ \ \ | | | | | | | | AX_CXX_COMPILE_STDCXX: Fix MSVC with C++17 or later
| * | | Avoid cache variable name collisionOlly Betts2023-01-211-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | AS_TR_SH maps both `:` and `=` to `_` so -std:c++17 was colliding with -std=c++17. Suffix the cache variable name for the former with _MSVC to avoid this.
| * | | AX_CXX_COMPILE_STDCXX: Fix MSVC with C++17 or laterOlly Betts2023-01-191-2/+3
| | |/ | |/| | | | | | | | | | MSVC defaults to C++14 and needs -std:c++NN to enable support for newer versions so add that to the list of options to try.
* | | Merge pull request #264 from thesamesam/clang-16Peter Simons2023-02-2010-21/+29
|\ \ \ | | | | | | | | Clang 16 fixes
| * | | AX_CHECK_UNAME_SYSCALL: fix -Wstrict-prototypesSam James2022-10-301-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Preparation for Clang 16. Signed-off-by: Sam James <sam@gentoo.org>