diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-10-28 14:10:03 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-10-28 14:10:03 +0000 |
commit | 7362b59e28557d22cf5096debb4664435e586608 (patch) | |
tree | 5d89de3a5b5c055c43f362a3541ce051b24694b4 /emulators | |
parent | c0a019ffac3154c3e96b05b5503610e25ccda271 (diff) |
Notes
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/gxmame/Makefile | 2 | ||||
-rw-r--r-- | emulators/gxmame/files/patch-src::options.c | 38 |
2 files changed, 39 insertions, 1 deletions
diff --git a/emulators/gxmame/Makefile b/emulators/gxmame/Makefile index efd15992f814..6ab4c472ff0f 100644 --- a/emulators/gxmame/Makefile +++ b/emulators/gxmame/Makefile @@ -7,7 +7,7 @@ PORTNAME= gxmame PORTVERSION= 0.34b -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/emulators/gxmame/files/patch-src::options.c b/emulators/gxmame/files/patch-src::options.c new file mode 100644 index 000000000000..27c49415f596 --- /dev/null +++ b/emulators/gxmame/files/patch-src::options.c @@ -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:"" + ); + } |