From owner-svn-ports-all@freebsd.org Wed Feb 15 20:31:17 2017 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 AEEDBCE0EC2; Wed, 15 Feb 2017 20:31:17 +0000 (UTC) (envelope-from tijl@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 7E62B331; Wed, 15 Feb 2017 20:31:17 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1FKVG93022649; Wed, 15 Feb 2017 20:31:16 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1FKVGC8022647; Wed, 15 Feb 2017 20:31:16 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201702152031.v1FKVGC8022647@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Wed, 15 Feb 2017 20:31:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434194 - in head/x11-wm/fvwm: . 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.23 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: Wed, 15 Feb 2017 20:31:17 -0000 Author: tijl Date: Wed Feb 15 20:31:16 2017 New Revision: 434194 URL: https://svnweb.freebsd.org/changeset/ports/434194 Log: Remove -fPIC and fix the real problem where a variable is defined as an array in one file and declared as a pointer in another. Added: head/x11-wm/fvwm/files/patch-fvwm-functions.c (contents, props changed) Modified: head/x11-wm/fvwm/Makefile Modified: head/x11-wm/fvwm/Makefile ============================================================================== --- head/x11-wm/fvwm/Makefile Wed Feb 15 20:22:23 2017 (r434193) +++ head/x11-wm/fvwm/Makefile Wed Feb 15 20:31:16 2017 (r434194) @@ -3,7 +3,7 @@ PORTNAME= fvwm PORTVERSION= 1.24r -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= x11-wm MASTER_SITES= ftp://ftp.fvwm.org/pub/fvwm/version-1/ PKGNAMESUFFIX= 1${PKGNAMESUFFIX2} @@ -14,8 +14,6 @@ COMMENT= Fvwm window manager USES= imake USE_XORG= xbitmaps xpm xext x11 xmu -CFLAGS_aarch64= -fPIC - pre-configure: ${REINPLACE_CMD} -e '/DependSubdirs/y,/*#, ,' ${WRKSRC}/Imakefile ${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ Added: head/x11-wm/fvwm/files/patch-fvwm-functions.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-wm/fvwm/files/patch-fvwm-functions.c Wed Feb 15 20:31:16 2017 (r434194) @@ -0,0 +1,20 @@ +--- fvwm/functions.c.orig 1994-11-15 14:18:26 UTC ++++ fvwm/functions.c +@@ -52,7 +52,7 @@ + extern XEvent Event; + extern FvwmWindow *Tmp_win; + extern int menuFromFrameOrWindowOrTitlebar; +-extern DoHandlePageing; ++extern Bool DoHandlePageing; + + extern char **g_argv; + +@@ -1643,7 +1643,7 @@ void MapIt(FvwmWindow *t) + + void QuickRestart(void) + { +- extern char *m4_options; ++ extern char m4_options[]; + extern char *display_name; + int i; + FvwmWindow *tmp,*next;