Index: head/emulators/fs-uae/Makefile =================================================================== --- head/emulators/fs-uae/Makefile (revision 528067) +++ head/emulators/fs-uae/Makefile (revision 528068) @@ -1,42 +1,46 @@ # Created by: Danilo Egea Gondolfo # $FreeBSD$ PORTNAME= fs-uae -PORTVERSION= 3.0.0 +PORTVERSION= 3.0.2 CATEGORIES= emulators MASTER_SITES= http://fs-uae.net/stable/${PORTVERSION}/ MAINTAINER= sirdice@gmail.com COMMENT= Amiga emulator LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= zip:archivers/zip LIB_DEPENDS= libmpeg2.so:multimedia/libmpeg2 \ libopenal.so:audio/openal-soft \ libpng.so:graphics/png USES= compiler:c11 desktop-file-utils gettext gl gmake gnome \ localbase pkgconfig sdl shared-mime-info xorg USE_SDL= sdl2 USE_GL= gl USE_GNOME= glib20 USE_XORG= x11 LLD_UNSAFE= yes INSTALLS_ICONS= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-jit CFLAGS+= -Wno-c++11-narrowing -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS DEBUG +OPTIONS_DEFINE_i386= JIT +OPTIONS_DEFINE_amd64= JIT + +JIT_DESC= Enable JIT compiler (experimental) +JIT_CONFIGURE_ENABLE= jit post-patch: @${REINPLACE_CMD} -e 's|= bind|= ::bind|' \ ${WRKSRC}/src/od-fs/bsdsocket_posix.cpp \ ${WRKSRC}/src/support/socket.cpp .include Index: head/emulators/fs-uae/distinfo =================================================================== --- head/emulators/fs-uae/distinfo (revision 528067) +++ head/emulators/fs-uae/distinfo (revision 528068) @@ -1,3 +1,3 @@ -TIMESTAMP = 1571170591 -SHA256 (fs-uae-3.0.0.tar.gz) = 221568b8f78bac352f84297f0cabe984d3da4f808e39cc3191541c02b389c964 -SIZE (fs-uae-3.0.0.tar.gz) = 4841427 +TIMESTAMP = 1573025332 +SHA256 (fs-uae-3.0.2.tar.gz) = 4ededc341edf12ad84e15ecfaf7942ebba12b75aec8c78fb0275d13c749f8aab +SIZE (fs-uae-3.0.2.tar.gz) = 4843019 Index: head/emulators/fs-uae/files/patch-configure =================================================================== --- head/emulators/fs-uae/files/patch-configure (nonexistent) +++ head/emulators/fs-uae/files/patch-configure (revision 528068) @@ -0,0 +1,12 @@ +--- configure.orig 2019-11-05 21:10:47 UTC ++++ configure +@@ -13526,9 +13526,6 @@ main () + #if !defined(__i386__) && !defined(__x86_64__) + #error JIT is only supported on x86/x86-64 + #endif +- #if defined(__OpenBSD__) || defined(__FreeBSD__) +- #error no JIT on OpenBSD/FreeBSD right now +- #endif + + ; + return 0; Property changes on: head/emulators/fs-uae/files/patch-configure ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/emulators/fs-uae/files/patch-src_od-win32_picasso96__win.cpp =================================================================== --- head/emulators/fs-uae/files/patch-src_od-win32_picasso96__win.cpp (revision 528067) +++ head/emulators/fs-uae/files/patch-src_od-win32_picasso96__win.cpp (revision 528068) @@ -1,11 +1,11 @@ ---- src/od-win32/picasso96_win.cpp.orig 2017-01-24 16:58:57 UTC +--- src/od-win32/picasso96_win.cpp.orig 2019-05-17 17:57:50 UTC +++ src/od-win32/picasso96_win.cpp -@@ -3300,7 +3300,7 @@ static uae_u32 REGPARAM2 picasso_BlitRec +@@ -3302,7 +3302,7 @@ static uae_u32 REGPARAM2 picasso_BlitRect (TrapContext if (NOBLITTER_BLIT) return 0; P96TRACE((_T("BlitRect(%d, %d, %d, %d, %d, %d, 0x%x)\n"), srcx, srcy, dstx, dsty, width, height, Mask)); - result = BlitRect (renderinfo, (uaecptr)NULL, srcx, srcy, dstx, dsty, width, height, Mask, BLIT_SRC); + result = BlitRect (renderinfo, (uaecptr)0, srcx, srcy, dstx, dsty, width, height, Mask, BLIT_SRC); return result; }