Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 17 Aug 2019 19:50:24 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r509165 - head/databases/pldebugger
Message-ID:  <201908171950.x7HJoOhF043327@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908171950.x7HJoOhF043327>