diff options
author | Volker Stolz <vs@FreeBSD.org> | 2005-02-12 17:40:31 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2005-02-12 17:40:31 +0000 |
commit | 8737f04c4dde058ebb5c23e10c40b0dcbd38afd9 (patch) | |
tree | 13de30ba7d1b2ada2267e180b22d64bb7b1fc599 /emulators/xmame/Makefile | |
parent | c04f39c24527f8426d590410e7673e9c52905b73 (diff) | |
download | ports-8737f04c4dde058ebb5c23e10c40b0dcbd38afd9.tar.gz ports-8737f04c4dde058ebb5c23e10c40b0dcbd38afd9.zip |
Notes
Diffstat (limited to 'emulators/xmame/Makefile')
-rw-r--r-- | emulators/xmame/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/emulators/xmame/Makefile b/emulators/xmame/Makefile index f335cbb28f21..72ffe4acfed8 100644 --- a/emulators/xmame/Makefile +++ b/emulators/xmame/Makefile @@ -27,6 +27,9 @@ USE_REINPLACE= yes WANT_SDL= yes WANT_GNOME= yes +# Broken on ia-64 +NOT_FOR_ARCHS= ia64 + # Are we building MAME, MESS or PinMAME? (also set by slave ports) MAMEMESS?= mame @@ -209,12 +212,6 @@ NETWORK= NETWORK=\# .endif -.if ${MAMEMESS} == "mess" -.if ${OSVERSION} < 500000 -BROKEN= does not compile - duplicate symbols in messtest -.endif -.endif - # The large number of sed regexes here is intended to make this port a whole # lot easier to maintain - please don't convert them into a patch. do-configure: @@ -257,9 +254,11 @@ do-configure: ${LN} -s ${WRKSRC}/src/png.h ${WRKSRC}/src/mame_png.h .if ${MAMEMESS} == "mess" - ${REINPLACE_CMD} -e "s@-Wl,--allow-multiple-definition@-Wl,-z -Wl,muldefs@" \ +.if ${OSVERSION} < 500000 + ${REINPLACE_CMD} -e "s@-Wl,--allow-multiple-definition@@" \ ${WRKSRC}/makefile.mes ${WRKSRC}/src/unix/unix.mak .endif +.endif post-build: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} SDL_VIDEODRIVER=aalib \ |