svn commit: r509165 - head/databases/pldebugger

Tobias Kortkamp tobik at FreeBSD.org
Sat Aug 17 19:50:25 UTC 2019


Author: tobik
Date: Sat Aug 17 19:50:24 2019
New Revision: 509165
URL: https://svnweb.freebsd.org/changeset/ports/509165

Log:
  databases/pldebugger does not build with PostgreSQL 11
  
  plpgsql_debugger.c:367:10: error: use of undeclared identifier 'PLPGSQL_DTYPE_EXPR'; did you mean 'PLPGSQL_DTYPE_VAR'?
                                  case PLPGSQL_DTYPE_EXPR:
                                       ^~~~~~~~~~~~~~~~~~
                                       PLPGSQL_DTYPE_VAR
  /usr/local/include/postgresql/server/plpgsql.h:62:2: note: 'PLPGSQL_DTYPE_VAR' declared here
          PLPGSQL_DTYPE_VAR,
          ^
  plpgsql_debugger.c:367:10: error: duplicate case value 'PLPGSQL_DTYPE_VAR'
                                  case PLPGSQL_DTYPE_EXPR:
                                       ^
  plpgsql_debugger.c:311:10: note: previous case defined here
                                  case PLPGSQL_DTYPE_VAR:
                                       ^
  plpgsql_debugger.c:550:9: error: use of undeclared identifier 'PLPGSQL_DTYPE_EXPR'; did you mean 'PLPGSQL_DTYPE_VAR'?
                          case PLPGSQL_DTYPE_EXPR:
                               ^~~~~~~~~~~~~~~~~~
                               PLPGSQL_DTYPE_VAR
  /usr/local/include/postgresql/server/plpgsql.h:62:2: note: 'PLPGSQL_DTYPE_VAR' declared here
          PLPGSQL_DTYPE_VAR,
          ^
  etc.
  
  http://package18.nyi.freebsd.org/data/120amd64-default-PR239514/2019-07-29_20h41m52s/logs/pldebugger-1.0_2,1.log
  
  PR:		239611

Modified:
  head/databases/pldebugger/Makefile

Modified: head/databases/pldebugger/Makefile
==============================================================================
--- head/databases/pldebugger/Makefile	Sat Aug 17 19:43:08 2019	(r509164)
+++ head/databases/pldebugger/Makefile	Sat Aug 17 19:50:24 2019	(r509165)
@@ -13,7 +13,7 @@ COMMENT=	PostgreSQL pl/pgsql Debugger API
 
 LICENSE=	ART20
 
-USES=		gmake pgsql
+USES=		gmake pgsql:10-
 LLD_UNSAFE=	yes
 WANT_PGSQL=	server
 


More information about the svn-ports-all mailing list