./devel/autoconf-archive, Collection of macros for GNU Autoconf

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 2023.02.20, Package name: autoconf-archive-2023.02.20, Maintainer: pkgsrc-users

The GNU Autoconf Archive is a collection of many macros for `GNU
Autoconf that have been contributed as free software by friendly
supporters of the cause from all over the Internet. Every single
one of those macros can be re-used without imposing any restrictions
whatsoever on the licensing of the generated `configure` script.
In particular, it is possible to use all those macros in `configure`
scripts that are meant for non-free software.


Required to build:
[pkgtools/cwrappers]

Master sites: (Expand)

Filesize: 662.289 KB

Version history: (Expand)


CVS history: (Expand)


   2024-02-19 13:49:07 by Thomas Klausner | Files touched by this commit (3) | Package updated
Log message:
autoconf-archive: update to 2023.02.20.

Two years of development.
   2021-12-12 10:33:32 by Thomas Klausner | Files touched by this commit (3) | Package updated
Log message:
autoconf-archive: update to 2021.02.19.

* Noteworthy changes in release 2021.02.19 (2021-02-19) [stable]

  The macros AX_CHECK_PCRE2 and AX_PROG_ROBOT have been added. Many other
  macros have received updates.
   2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016)
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

Could not be committed due to merge conflict:
devel/py-traitlets/distinfo

The following distfiles were unfetchable (note: some may be only fetched
conditionally):

./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
   2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017)
Log message:
devel: Remove SHA1 hashes for distfiles
   2020-12-04 00:01:27 by David H. Gutteridge | Files touched by this commit (2)
Log message:
autoconf-archive & gnome-common: these conflict with each other

Both install the file share/aclocal/ax_check_enable_debug.m4.
   2020-01-19 00:36:14 by Roland Illig | Files touched by this commit (3046)
Log message:
all: migrate several HOMEPAGEs to https

pkglint --only "https instead of http" -r -F

With manual adjustments afterwards since pkglint 19.4.4 fixed a few
indentations in unrelated lines.

This mainly affects projects hosted at SourceForce, as well as
freedesktop.org, CTAN and GNU.
   2019-12-04 06:09:50 by David H. Gutteridge | Files touched by this commit (3) | Package updated
Log message:
autoconf-archive: update to 2019.01.06

Change log:

* Noteworthy changes in release 2019.01.06 (2019-01-06) [stable]

  The Autoconf Archive now has its own organization on Github. Therefore, the
  mirror has moved to https://github.com/autoconf-archive/autoconf-archive. The
  old location, https://github.com/peti/autoconf-archive redirects there.

  The macro AX_CODE_COVERAGE was modified to use AX_ADD_AM_MACRO_STATIC,
  and thus unfortunately usage was changed.

* Noteworthy changes in release 2018.03.13 (2018-03-13) [stable]

  The macros AX_R_PACKAGE and AX_PROG_DATE have been added. Many other macros
  have received updates.

* Noteworthy changes in release 2017.09.28 (2017-09-28) [stable]

  The macros AX_PROG_HELP2MAN, AX_RECURSIVE_EVAL, AX_SUBDIRS_CONFIGURE,
  AX_ELISP, and AX_PROG_EMACS have been added.

  Various macros have received updates. Please check the ChangeLog file or the
  history of the git repository for further details.

* Noteworthy changes in release 2017.03.21 (2017-03-21) [stable]

  Obsolete macros AX_CXX_COMPILER_VENDOR, AX_GCC_LIBRARIES_DIR, AX_GCC_VERSION,
  and AX_HAVE_OPENGL have been removed from the archive.

  AX_DEFINE_SUB_PATH has been marked obsolete as suggested in
  https://github.com/peti/autoconf-archive/pull/97.
   2016-09-18 23:50:22 by Thomas Klausner | Files touched by this commit (3)
Log message:
Updated autoconf-archive to 2016.09.16.

* Noteworthy changes in release 2016.09.16 (2016-09-16) [stable]

  The following macros were added: AX_BUILD_DATE_EPOCH, AX_CHECK_X86_FEATURES,
  AX_GCC_X86_CPU_SUPPORTS, AX_OPEN62541_CHECK_H, AX_OPEN62541_CHECK_LIB, and
  AX_LUAROCKS_ROCK.

  While updating AX_CODE_COVERAGE, the variable CODE_COVERAGE_LDFLAGS was
  renamed to CODE_COVERAGE_LIBS.

  AX_VALGRIND_CHECK has been extended considerably. In this process. the
  undocumented internal rule check-valgrind-tool was removed.

  It checks if the host cpu supports various instruction set: mmx, sse, popcnt,
  avx, avx2, etc. If the instruction were supported, it would export
  HAVE_XXX_INSTRUCTIONS C preprocessor macros and add the instruction set flag to
  X86_FEATURES_CFLAGS variable. By default it would also set CFLAGS, but this can
  be disabled by the ACTION-IF-FOUND hook.

  AX_WITH_CURSES and AX_WITH_CURSES_* macros have been modernized, in line
  with PKG_CHECK_MODULES's style. This change breaks the interface, but
  makes AX_WITH_CURSES compatible and even completely replaceable with the
  interface of PKG_CHECK_MODULES. Ultimately, these macros should be
  replaced in the future by calls to PKG_CHECK_MODULES. Variables in
  AX_WITH_CURSES have been renamed

    CURSES_LIB -> CURSES_LIBS
    CURSES_CPPFLAGS -> CURSES_CFLAGS

  and for the AX_WITH_CURSES_* macros

    PANEL_LIB -> PANEL_LIBS
    MENU_LIB -> MENU_LIBS
    FORM_LIB -> FORM_LIBS

  such that once the variables have been renamed in configure.ac and Makefile.am,
  the calls AX_WITH_CURSES and PKG_CHECK_MODULES([CURSES], [ncurses]) are
  completely interchangeable.