From owner-svn-ports-all@freebsd.org Tue Sep 29 21:01:29 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BF0533F06A2; Tue, 29 Sep 2020 21:01:29 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C1BdP4TZdz4Gw6; Tue, 29 Sep 2020 21:01:29 +0000 (UTC) (envelope-from se@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7D23614D68; Tue, 29 Sep 2020 21:01:29 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08TL1TpX000937; Tue, 29 Sep 2020 21:01:29 GMT (envelope-from se@FreeBSD.org) Received: (from se@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08TL1T5w000935; Tue, 29 Sep 2020 21:01:29 GMT (envelope-from se@FreeBSD.org) Message-Id: <202009292101.08TL1T5w000935@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: se set sender to se@FreeBSD.org using -f From: =?UTF-8?Q?Stefan_E=c3=9fer?= Date: Tue, 29 Sep 2020 21:01:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550623 - in head/math/spar: . files X-SVN-Group: ports-head X-SVN-Commit-Author: se X-SVN-Commit-Paths: in head/math/spar: . files X-SVN-Commit-Revision: 550623 X-SVN-Commit-Repository: ports 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.33 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: Tue, 29 Sep 2020 21:01:29 -0000 Author: se Date: Tue Sep 29 21:01:28 2020 New Revision: 550623 URL: https://svnweb.freebsd.org/changeset/ports/550623 Log: Fix build with -fno-common Added: head/math/spar/files/patch-lib_sl__version.h (contents, props changed) Modified: head/math/spar/Makefile Modified: head/math/spar/Makefile ============================================================================== --- head/math/spar/Makefile Tue Sep 29 20:55:38 2020 (r550622) +++ head/math/spar/Makefile Tue Sep 29 21:01:28 2020 (r550623) @@ -3,18 +3,21 @@ PORTNAME= spar PORTVERSION= 0.5.10 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= math devel MASTER_SITES= SF/${PORTNAME}/Spar/${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Modular math parser +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + USES= dos2unix libtool ncurses readline DOS2UNIX_FILES= lib/randist/rand.c -GNU_CONFIGURE= yes USE_CSTD= gnu89 USE_LDCONFIG= yes +GNU_CONFIGURE= yes post-patch: @${REINPLACE_CMD} -e "s,-ldl,,g" \ Added: head/math/spar/files/patch-lib_sl__version.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/spar/files/patch-lib_sl__version.h Tue Sep 29 21:01:28 2020 (r550623) @@ -0,0 +1,15 @@ +--- lib/sl_version.h.orig 2001-06-26 13:22:43 UTC ++++ lib/sl_version.h +@@ -39,9 +39,9 @@ void sl_info (void); + + void sl_warranty (void); + +-int sl_major_version; +-int sl_minor_version; +-int sl_patch_level; ++extern int sl_major_version; ++extern int sl_minor_version; ++extern int sl_patch_level; + + __END_DECLS + #endif /* _sl_version_h */