Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Apr 2020 12:16:54 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r530486 - in branches/2020Q2/emulators/emu64: . files
Message-ID:  <202004031216.033CGs0g037850@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Fri Apr  3 12:16:54 2020
New Revision: 530486
URL: https://svnweb.freebsd.org/changeset/ports/530486

Log:
  MFH: r530485
  
  emulators/emu64: fix build on PPC and ARM
  
  char on PPC and ARM is unsigned.
  
  PR:		245200
  Approved by:	portmgr (build fix blanket)

Added:
  branches/2020Q2/emulators/emu64/files/
     - copied from r530485, head/emulators/emu64/files/
Modified:
  branches/2020Q2/emulators/emu64/Makefile
Directory Properties:
  branches/2020Q2/   (props changed)

Modified: branches/2020Q2/emulators/emu64/Makefile
==============================================================================
--- branches/2020Q2/emulators/emu64/Makefile	Fri Apr  3 12:15:52 2020	(r530485)
+++ branches/2020Q2/emulators/emu64/Makefile	Fri Apr  3 12:16:54 2020	(r530486)
@@ -15,10 +15,12 @@ LIB_DEPENDS=	libquazip5.so:archivers/quazip \
 		libpng.so:graphics/png \
 		libavcodec.so:multimedia/ffmpeg
 
-USES=		compiler:c++11-lang desktop-file-utils gl pkgconfig \
+USES=		compiler:c++11-lang desktop-file-utils dos2unix gl pkgconfig \
 		qmake:outsource qt:5 sdl
 USE_GL=		gl glu
 USE_QT=		core gui widgets buildtools_build linguisttools_build
+
+DOS2UNIX_FILES=	src/c64_class.cpp
 
 USE_SDL=	sdl2 image2
 USE_GITHUB=	yes



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