- Remove *xil options, mame does not support them

PR:		ports/73045
Submitted by:	Miguel Mendez <flynn@energyhq.es.eu.org>
Approved by:	Travis Poppe <tlp@LiquidX.org> (maintainer)
This commit is contained in:
Pav Lucistnik 2004-10-28 14:10:03 +00:00
parent c0a019ffac
commit 7362b59e28
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=120388
2 changed files with 39 additions and 1 deletions

View file

@ -7,7 +7,7 @@
PORTNAME= gxmame
PORTVERSION= 0.34b
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}

View file

@ -0,0 +1,38 @@
--- src/options.c.orig Sat Oct 23 18:16:28 2004
+++ src/options.c Sat Oct 23 18:17:37 2004
@@ -7298,8 +7298,6 @@
"%s " /* newext */
"-%sxsync "
"-%sprivatecmap "
- "-%sxil "
- "-%smtxil "
"%s ", /* Video mode */
x11mode,
(target->cursor)?"":"no",
@@ -7308,8 +7306,6 @@
newext?newext:"",
(target->xsync)?"":"no",
(target->privatecmap)?"":"no",
- (target->xil)?"":"no",
- (target->mtxil)?"":"no",
Video_Mode_option?Video_Mode_option:""
);
}
@@ -7323,8 +7319,6 @@
"%s " /* newext */
"-%sxsync "
"-%sprivatecmap "
- "-%sxil "
- "-%smtxil "
"%s ", /* Video mode */
target->x11_mode,
(target->cursor)?"":"no",
@@ -7334,8 +7328,6 @@
newext?newext:"",
(target->xsync)?"":"no",
(target->privatecmap)?"":"no",
- (target->xil)?"":"no",
- (target->mtxil)?"":"no",
Video_Mode_option?Video_Mode_option:""
);
}