svn commit: r552186 - head/emulators/fs-uae

Fernando Apesteguía fernape at FreeBSD.org
Tue Oct 13 06:13:20 UTC 2020


Author: fernape
Date: Tue Oct 13 06:13:20 2020
New Revision: 552186
URL: https://svnweb.freebsd.org/changeset/ports/552186

Log:
  emulators/fs-uae: Fix build on -CURRENT
  
  By returning proper type in function.
  
  PR:	250294
  Submitted by:	sirdice at gmail.com (maintainer)

Modified:
  head/emulators/fs-uae/Makefile

Modified: head/emulators/fs-uae/Makefile
==============================================================================
--- head/emulators/fs-uae/Makefile	Tue Oct 13 06:12:24 2020	(r552185)
+++ head/emulators/fs-uae/Makefile	Tue Oct 13 06:13:20 2020	(r552186)
@@ -3,6 +3,7 @@
 
 PORTNAME=	fs-uae
 PORTVERSION=	3.0.5
+PORTREVISION=	1
 CATEGORIES=	emulators
 MASTER_SITES=	http://fs-uae.net/stable/${PORTVERSION}/
 
@@ -49,5 +50,7 @@ post-patch:
 	@${REINPLACE_CMD} -e 's|= bind|= ::bind|' \
 		${WRKSRC}/src/od-fs/bsdsocket_posix.cpp \
 		${WRKSRC}/src/support/socket.cpp
+	@${REINPLACE_CMD} -e 's|return NULL|return 0|' \
+		${WRKSRC}/src/memory.cpp
 
 .include <bsd.port.post.mk>


More information about the svn-ports-all mailing list