Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Jul 2018 10:06:41 +0000 (UTC)
From:      Rodrigo Osorio <rodrigo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r473816 - in head/audio/lmms: . files
Message-ID:  <201807031006.w63A6fwM061940@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rodrigo
Date: Tue Jul  3 10:06:41 2018
New Revision: 473816
URL: https://svnweb.freebsd.org/changeset/ports/473816

Log:
  Fix compiler issues for 12.0
  
  - replace preprocessor variable _GCU_VERSION_ with __VERSION__
  - Bump PORTREVISION

Added:
  head/audio/lmms/files/patch-src_core_main.cpp   (contents, props changed)
  head/audio/lmms/files/patch-src_gui_about__dialog.cpp   (contents, props changed)
Modified:
  head/audio/lmms/Makefile

Modified: head/audio/lmms/Makefile
==============================================================================
--- head/audio/lmms/Makefile	Tue Jul  3 09:57:52 2018	(r473815)
+++ head/audio/lmms/Makefile	Tue Jul  3 10:06:41 2018	(r473816)
@@ -4,7 +4,7 @@
 PORTNAME=	lmms
 PORTVERSION=	1.1.3
 DISTVERSIONPREFIX=	v
-PORTREVISION=	2
+PORTREVISION=	3
 PORTEPOCH=	2
 CATEGORIES=	audio
 

Added: head/audio/lmms/files/patch-src_core_main.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/lmms/files/patch-src_core_main.cpp	Tue Jul  3 10:06:41 2018	(r473816)
@@ -0,0 +1,11 @@
+--- src/core/main.cpp.orig	2018-07-02 13:15:50 UTC
++++ src/core/main.cpp
+@@ -156,7 +156,7 @@ int main( int argc, char * * argv )
+ 	"License as published by the Free Software Foundation; either\n"
+ 	"version 2 of the License, or (at your option) any later version.\n\n"
+ 	"Try \"%s --help\" for more information.\n\n", LMMS_VERSION,
+-				PLATFORM, MACHINE, QT_VERSION_STR, GCC_VERSION,
++				PLATFORM, MACHINE, QT_VERSION_STR, __VERSION__,
+ 				argv[0] );
+ 
+ 			return( EXIT_SUCCESS );

Added: head/audio/lmms/files/patch-src_gui_about__dialog.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/lmms/files/patch-src_gui_about__dialog.cpp	Tue Jul  3 10:06:41 2018	(r473816)
@@ -0,0 +1,11 @@
+--- src/gui/about_dialog.cpp.orig	2018-07-02 13:46:00 UTC
++++ src/gui/about_dialog.cpp
+@@ -46,7 +46,7 @@ aboutDialog::aboutDialog() :
+ 					arg( PLATFORM ).
+ 					arg( MACHINE ).
+ 					arg( QT_VERSION_STR ).
+-					arg( GCC_VERSION ) );
++					arg( __VERSION__ ) );
+ 
+ 	authorLabel->setPlainText( embed::getText( "AUTHORS" ) );
+ 



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