diff options
author | Daniel Engberg <diizzy@FreeBSD.org> | 2025-01-18 17:36:17 +0100 |
---|---|---|
committer | Daniel Engberg <diizzy@FreeBSD.org> | 2025-01-18 18:23:17 +0100 |
commit | 48417960e9385be0bf3e5dcafc3b10f4da2e60f7 (patch) | |
tree | 0be22047ae1f41cf31a3ff6516731194fbd36365 /net/yaz/files/patch-configure.ac | |
parent | textproc/zorba: Deprecate and set expiration date to 2025-02-28 (diff) |
net/yaz: Fix build with ICU 76.1 and improve port
* Backport upstream commit 24bcca60b69b0ce162f63377e621de5cf53dcf76.patch
* Fix detection of newer versions of tcl
* Clean up port Makefile to follow Porters Handbook more closely
Reference:
https://github.com/indexdata/m4/pull/4
PR: 283564
Approved by: portmgr (maintainer timeout, 3+ weeks)
Diffstat (limited to 'net/yaz/files/patch-configure.ac')
-rw-r--r-- | net/yaz/files/patch-configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/yaz/files/patch-configure.ac b/net/yaz/files/patch-configure.ac new file mode 100644 index 000000000000..78a2182f1375 --- /dev/null +++ b/net/yaz/files/patch-configure.ac @@ -0,0 +1,11 @@ +--- configure.ac.orig 2025-01-04 19:57:47 UTC ++++ configure.ac +@@ -18,7 +18,7 @@ test -z "$YACC" && AC_MSG_WARN([GNU Bison not found]) + AC_CHECK_PROGS([YACC], 'bison -y') + test -z "$YACC" -a ! -f src/cql.c && AC_MSG_ERROR([GNU Bison not found]) + test -z "$YACC" && AC_MSG_WARN([GNU Bison not found]) +-AC_CHECK_PROGS([TCLSH], [tclsh tclsh8.5 tclsh8.4 tclsh8.3 tclsh8.2], [tclsh]) ++AC_CHECK_PROGS([TCLSH], [tclsh tclsh9.0 tclsh8.7 tclsh8.6 tclsh8.5 tclsh8.4 tclsh8.3 tclsh8.2], [tclsh]) + AC_PROG_INSTALL + AM_PROG_LIBTOOL + AM_PROG_CC_C_O |