update to pspg-5.5.0, from maintainer Omar Polo

disable kqueue as it tries to use NOTE_CLOSE_WRITE
This commit is contained in:
sthen 2021-11-03 12:20:55 +00:00
parent facda25334
commit bb37a3ad2d
3 changed files with 17 additions and 5 deletions

View File

@ -1,10 +1,10 @@
# $OpenBSD: Makefile,v 1.1.1.1 2021/10/25 07:45:35 landry Exp $
# $OpenBSD: Makefile,v 1.2 2021/11/03 12:20:55 sthen Exp $
COMMENT = UNIX pager optimized for tabular data
GH_ACCOUNT = okbob
GH_PROJECT = pspg
GH_TAGNAME = 5.4.0
GH_TAGNAME = 5.5.0
CATEGORIES = databases

View File

@ -1,2 +1,2 @@
SHA256 (pspg-5.4.0.tar.gz) = b5EySFHZ6rHajR1GYb44avPYUx7gDfAkPH2bAzYf1EU=
SIZE (pspg-5.4.0.tar.gz) = 1944096
SHA256 (pspg-5.5.0.tar.gz) = Y4weF+mKW7nOhY8lnqLQUOoBPq/RSzMgxsMKRqWMEDg=
SIZE (pspg-5.5.0.tar.gz) = 2282620

View File

@ -1,8 +1,11 @@
$OpenBSD: patch-configure_ac,v 1.1.1.1 2021/10/25 07:45:35 landry Exp $
$OpenBSD: patch-configure_ac,v 1.2 2021/11/03 12:20:55 sthen Exp $
AX_LIB_READLINE picks up base readline which is too old. Force it to
use readline from ports.
disable kqueue since tries to monitor events not supported by our kqueue
(NOTE_CLOSE_WRITE.)
Index: configure.ac
--- configure.ac.orig
+++ configure.ac
@ -16,3 +19,12 @@ Index: configure.ac
AX_LIB_POSTGRESQL([],[], AC_MSG_NOTICE([PostgreSQL library not found]))
case "$ax_cv_ncurses" in "no")
@@ -75,8 +76,6 @@ if test "x$have_inotify" = "xyes"; then
fi
fi
-
-AC_CHECK_HEADERS([sys/event.h], have_kqueue=yes, have_kqueue=no)
if test "x$have_kqueue" = "xyes"; then