mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- warn when if no SYSVIPC
- fix coredump PR: 140365 Submitted by: Dan Lukes
This commit is contained in:
parent
99220294f6
commit
b3ec1d272d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=253144
2 changed files with 16 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME?= firebird
|
PORTNAME?= firebird
|
||||||
PORTVERSION= 2.0.3
|
PORTVERSION= 2.0.3
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES?= databases
|
CATEGORIES?= databases
|
||||||
MASTER_SITES= SF/firebird/OldFiles
|
MASTER_SITES= SF/firebird/OldFiles
|
||||||
PKGNAMESUFFIX?= -server
|
PKGNAMESUFFIX?= -server
|
||||||
|
@ -91,6 +91,11 @@ FB_DOCS_DIRS= sql.extensions license upgrade
|
||||||
|
|
||||||
MAKE_ENV+= FIREBIRD_TMP="${WRKDIR}" FIREBIRD_LOCK="${WRKDIR}"
|
MAKE_ENV+= FIREBIRD_TMP="${WRKDIR}" FIREBIRD_LOCK="${WRKDIR}"
|
||||||
|
|
||||||
|
IPCCHECK!= ipcrm -q 0 2>&1 || true
|
||||||
|
.if ${IPCCHECK:Mimplemented}
|
||||||
|
IGNORE= your system does not support sysvipc
|
||||||
|
.endif
|
||||||
|
|
||||||
post-extract:
|
post-extract:
|
||||||
@${RM} -rf ${WRKSRC}/extern/icu
|
@${RM} -rf ${WRKSRC}/extern/icu
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
--- configure.in.orig 2007-09-04 15:51:12.000000000 +0800
|
--- configure.in.orig 2007-09-04 15:51:12.000000000 +0800
|
||||||
+++ configure.in 2007-10-05 06:59:32.243635556 +0800
|
+++ configure.in 2009-11-07 17:47:35.000000000 +0100
|
||||||
@@ -447,8 +447,9 @@
|
@@ -447,8 +447,9 @@
|
||||||
AC_CHECK_LIB(termcap, tgetent, , \
|
AC_CHECK_LIB(termcap, tgetent, , \
|
||||||
AC_CHECK_LIB(tinfo, tgetent, , \
|
AC_CHECK_LIB(tinfo, tgetent, , \
|
||||||
|
@ -11,6 +11,15 @@
|
||||||
|
|
||||||
|
|
||||||
dnl Check for functions
|
dnl Check for functions
|
||||||
|
@@ -696,7 +696,7 @@
|
||||||
|
rm -f conftest*])
|
||||||
|
|
||||||
|
if test "$firebird_cv_gcc___thread" = yes; then
|
||||||
|
- AC_DEFINE(HAVE___THREAD, 1, [Define it if compiler supports ISO syntax for thread-local storage])
|
||||||
|
+dnl AC_DEFINE(HAVE___THREAD, 1, [Define it if compiler supports ISO syntax for thread-local storage])
|
||||||
|
fi
|
||||||
|
|
||||||
|
dnl ##################### DO NOT ADD ANY TESTS BELOW ###########################
|
||||||
@@ -720,6 +721,10 @@
|
@@ -720,6 +721,10 @@
|
||||||
AC_SUBST(NEW_FIREBIRD_DIR)
|
AC_SUBST(NEW_FIREBIRD_DIR)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue