mirror of
https://git.freebsd.org/ports.git
synced 2026-06-02 11:08:52 +00:00
974099d0bd
Recent versions of gettext no longer install m4 files in PREFIX/share/aclocal. They have to be installed in the work directory by autopoint for aclocal to find them. Patch devel/autoconf so autoreconf runs autopoint when gettext related macros are used in configure.ac (e.g. AM_ICONV). Previously it only ran autopoint when AM_GNU_GETTEXT_(REQUIRE_)VERSION was used. The following ports now require autopoint (i.e. USES=gettext-tools): benchmarks/sysbench, devel/libhtp, editors/fxite, filesystems/rar2fs, graphics/gd, net/ucarp, news/fidogate, sysutils/cdrdao Other fixes: emulators/mednafen, misc/lifelines: Use older version of gettext macros. ftp/axel: Patch Makefile.am and configure.ac to get gettext working and add NLS option. ftp/wzdftpd: Use autoreconf 2.72. mail/sympa: Remove hack from configure.ac. multimedia/dvdauthor: Use ports autoreconf. net/asterisk-chan_sccp: Drop autoreconf and gettext-tools dependencies. security/pam_pkcs11: Patch configure.ac so autoreconf can find the custom directory with m4 files. sysutils/grub2-efi, sysutils/grub2-pcbsd: Add patch to run autoreconf with -f flag so it updates all files. www/wget2: Patch configure.ac to what autopoint expects. PR: 287167 Exp-run by: antoine
12 lines
264 B
Plaintext
12 lines
264 B
Plaintext
--- configure.ac.orig 2024-04-07 22:59:28 UTC
|
|
+++ configure.ac
|
|
@@ -237,7 +237,7 @@ AM_GNU_GETTEXT([external])
|
|
|
|
# Add Gettext
|
|
AM_GNU_GETTEXT([external])
|
|
-AM_GNU_GETTEXT_VERSION([0.11.1])
|
|
+AM_GNU_GETTEXT_REQUIRE_VERSION([0.23.1])
|
|
|
|
# POSIX threads
|
|
AX_PTHREAD()
|