From owner-svn-ports-all@freebsd.org Sat May 14 07:50:51 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D55AB3841F; Sat, 14 May 2016 07:50:51 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B7A6912C7; Sat, 14 May 2016 07:50:50 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4E7onIJ097548; Sat, 14 May 2016 07:50:49 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4E7onfa097546; Sat, 14 May 2016 07:50:49 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201605140750.u4E7onfa097546@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 14 May 2016 07:50:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415176 - in head/devel/gdb: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 May 2016 07:50:51 -0000 Author: riggs Date: Sat May 14 07:50:49 2016 New Revision: 415176 URL: https://svnweb.freebsd.org/changeset/ports/415176 Log: Fix build with libreadline from base system (via BASE_READLINE OPTION) PR: 209431 Submitted by: luca.pizzamiglio@gmail.com (maintainer) MFH: 2016Q2 (ports secteam build fix blanket) Added: head/devel/gdb/files/extrapatch-base-readline (contents, props changed) Modified: head/devel/gdb/Makefile Modified: head/devel/gdb/Makefile ============================================================================== --- head/devel/gdb/Makefile Sat May 14 07:08:49 2016 (r415175) +++ head/devel/gdb/Makefile Sat May 14 07:50:49 2016 (r415176) @@ -3,7 +3,7 @@ PORTNAME= gdb PORTVERSION= 7.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= GNU @@ -45,7 +45,7 @@ OPTIONS_SINGLE_READLINE= BASE_READLINE B GDB_LINK_DESC= Create ${PREFIX}/bin/gdb symlink KGDB_DESC= Kernel Debugging Support -BASE_READLINE_DESC= from base system (experimental) +BASE_READLINE_DESC= from base system BUNDLED_READLINE_DESC= from gdb distfile PORT_READLINE_DESC= from devel/readline port TUI_DESC= Text User Interface enabled @@ -54,6 +54,7 @@ OPTIONS_SUB= yes BASE_READLINE_USES= readline BASE_READLINE_CFLAGS= -D_rl_echoing_p=readline_echoing_p +BASE_READLINE_EXTRA_PATCHES= ${FILESDIR}/extrapatch-base-readline BUNDLED_READLINE_CONFIGURE_OFF= --with-system-readline DEBUG_CFLAGS= -g EXPAT_CONFIGURE_WITH= expat Added: head/devel/gdb/files/extrapatch-base-readline ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gdb/files/extrapatch-base-readline Sat May 14 07:50:49 2016 (r415176) @@ -0,0 +1,11 @@ +--- gdb/completer.c.orig 2016-05-10 14:11:58.546188879 +0200 ++++ gdb/completer.c 2016-05-10 14:12:22.899187374 +0200 +@@ -1767,6 +1767,8 @@ + return displayer->width; + } + ++_rl_completion_prefix_display_length=0; ++rl_sort_completion_matches=1; + extern int _rl_completion_prefix_display_length; + extern int _rl_print_completions_horizontally; +