找回密码
 注册
查看: 1016|回复: 0

编写spec失败,求帮忙

[复制链接]
发表于 2003-8-6 14:06:29 | 显示全部楼层 |阅读模式
我想给xmame0.71打个包,就用freshrpms发布的0.69的spec改了一份,删掉了其中开启隐藏游戏、自带样例rom等东东,结果编译到最后出错,以下是改好的spec:
# $Id: xmame.spec,v 1.28 2003/05/27 15:18:09 dude Exp $

#define rcver rc2
%define targets %{?!_without_mame:mame} %{?!_without_mess:mess}

Summary: The X Multi Arcade Machine Emulator.
Name: xmame
Version: 0.71.1
Release: %{?rcver:0%{rcver}.}1
Source0: http://x.mame.net/download/xmame-%{version}%{?rcver:-%{rcver}}.tar.bz2
Source1: xmame-wrapper
License: MAME
URL: http://x.mame.net/
Group: Applications/Emulators
BuildRoot: %{_tmppath}/%{name}-root
Requires: %{name}-bin = %{version}
BuildRequires: unzip, XFree86-devel, zlib-devel
%{!?_without_alsa:BuildRequires: alsa-lib-devel}
%{!?_without_esound:BuildRequires: esound-devel}
%ifarch %ix86
%{!?_without_asm68000:BuildRequires: nasm >= 0.98}
%endif

%description
This the the *nix port of the almost legendary mame. Mame is an arcade
machine emulator, started in 1997 by Nicola Salmoria. It started out as a
series of emulators for individual games. This series of emulators was
combined into a single multi-game emulator.

The main package contains the docs, data files, and three free games so that
you have your X-Mame ready to run in no time! You will still need to pick
a package containing the main xmame binary though, from either the basic
x11 version, the SDL version or the special OpenGL xgl version.

Available rpmbuild rebuild options :
--without mame mess x11 xgl SDL asm68000 alsa esound opts quietbuild


%package x11
Summary: X-Mame arcade game emulator compiled for X11 DGA or XV display.
Group: Applications/Emulators
Provides: %{name}-bin = %{version}
Requires: zlib
%{!?_without_alsa:Requires: alsa-lib}
%{!?_without_esound:Requires: esound}

%description x11
This the the *nix port of the almost legendary mame. Mame is an arcade
machine emulator, started in 1997 by Nicola Salmoria. It started out as a
series of emulators for individual games. This series of emulators was
combined into a single multi-game emulator.

This version has been compiled for X11 DGA and XV displays.


%package SDL
Summary: X-Mame arcade game emulator compiled for SDL display.
Group: Applications/Emulators
Provides: %{name}-bin = %{version}
Requires: SDL, zlib
%{!?_without_alsa:Requires: alsa-lib}
%{!?_without_esound:Requires: esound}
BuildRequires: SDL-devel

%description SDL
This the the *nix port of the almost legendary mame. Mame is an arcade
machine emulator, started in 1997 by Nicola Salmoria. It started out as a
series of emulators for individual games. This series of emulators was
combined into a single multi-game emulator.

This version has been compiled for SDL display.


%package xgl
Summary: X-Mame arcade game emulator compiled for OpenGL display.
Group: Applications/Emulators
Provides: %{name}-bin = %{version}
Requires: zlib, libjpeg
%{!?_without_alsa:Requires: alsa-lib}
%{!?_without_esound:Requires: esound}
BuildRequires: Mesa-devel, libjpeg-devel

%description xgl
This the the *nix port of the almost legendary mame. Mame is an arcade
machine emulator, started in 1997 by Nicola Salmoria. It started out as a
series of emulators for individual games. This series of emulators was
combined into a single multi-game emulator.

This version has been compiled for OpenGL display.


%package -n xmess
Summary: The Multi Emulator Super System
Group: Applications/Emulators

%description -n xmess
This is the *nix port of MESS. MESS is a free emulator which emulates a
large variety of different systems, including old Atari, Apple, BBC,
Commodore, MSX, ZX Spectrum computers. For full list of supported systems
see http://www.mess.org/


%package -n xmess-x11
Summary: The Multi Emulator Super System compiled for X11 DGA or XV display.
Group: Applications/Emulators
Requires: zlib
%{!?_without_alsa:Requires: alsa-lib}
%{!?_without_esound:Requires: esound}

%description -n xmess-x11
This is the *nix port of MESS. MESS is a free emulator which emulates a
large variety of different systems, including old Atari, Apple, BBC,
Commodore, MSX, ZX Spectrum computers. For full list of supported systems
see http://www.mess.org/

This version has been compiled for X11 DGA or XV display.


%package -n xmess-SDL
Summary: The Multi Emulator Super System compiled for SDL display.
Group: Applications/Emulators
Requires: SDL, zlib
%{!?_without_alsa:Requires: alsa-lib}
%{!?_without_esound:Requires: esound}
BuildRequires: SDL-devel

%description -n xmess-SDL
This is the *nix port of MESS. MESS is a free emulator which emulates a
large variety of different systems, including old Atari, Apple, BBC,
Commodore, MSX, ZX Spectrum computers. For full list of supported systems
see http://www.mess.org/

This version has been compiled for SDL display.


%package -n xmess-xgl
Summary: The Multi Emulator Super System compiled for OpenGL display.
Group: Applications/Emulators
Requires: zlib, libjpeg
%{!?_without_alsa:Requires: alsa-lib}
%{!?_without_esound:Requires: esound}
BuildRequires: Mesa-devel, libjpeg-devel

%description -n xmess-xgl
This is the *nix port of MESS. MESS is a free emulator which emulates a
large variety of different systems, including old Atari, Apple, BBC,
Commodore, MSX, ZX Spectrum computers. For full list of supported systems
see http://www.mess.org/

This version has been compiled for OpenGL display.


%prep
%setup -q -n %{name}-%{version}%{?rcver:-%{rcver}}


%build
# Comment out the defaults, to enable overriding with the env variables
perl -pi -e 's/^CFLAGS/# CFLAGS/g' Makefile
perl -pi -e 's/^MY_CPU/# MY_CPU/g' Makefile

# Make the package build verbose by default (to see opts etc.)
%{?_without_quietbuild: perl -pi -e 's/^QUIET/# QUIET/g' src/unix/unix.mak}

# The default, if not overwritten below
export PREFIX=%{_prefix}
export CFLAGS="%{optflags}"
export JOY_I386=1
%{!?_without_alsa:export SOUND_ALSA=1}
%{!?_without_esound:export SOUND_ESOUND=1}

# Optimization flags, CPU type and defaults for the makefile
%ifarch %ix86
        export MY_CPU="i386"
        %{!?_without_opts: export CFLAGS="%{optflags} -O3 -Wall"}
        %{!?_without_asm68000: export X86_ASM_68000=1}
%endif

%ifarch ppc
        export MY_CPU="risc"
        %{!?_without_opts: export CFLAGS="%{optflags} -O3 -Wall"}
%endif

%ifarch sparc sparcv8 sparcv9 sparc64
        export MY_CPU="risc"
        # Sparc platform fails to compile with -O2, so override it.
        %{!?_without_opts: export CFLAGS="%{optflags} -O -fomit-frame-pointer -funroll-loops -fstrength-reduce -ffast-math -finline-functions -fforce-mem -fforce-addr -fthread-jumps -fcse-follow-jumps -fcse-skip-blocks -frerun-cse-after-loop -felide-constructors -fexpensive-optimizations -fdelayed-branch -fschedule-insns -fschedule-insns2 -pipe"}
%endif


# Now, do all the building (this is long!)
for target in %{targets}; do
        %{!?_without_x11: make %{?_smp_mflags} DISPLAY_METHOD=x11 X11_DGA=1 X11_XV=1} TARGET=$target
        %{!?_without_SDL: make %{?_smp_mflags} DISPLAY_METHOD=SDL SOUND_SDL=1} TARGET=$target
        %{!?_without_xgl: make %{?_smp_mflags} DISPLAY_METHOD=xgl GLCFLAGS="-D_X11_ -DGLU_VERSION_1_2"} TARGET=$target
done


%install
rm -rf %{buildroot}

for target in %{targets}; do
        make install-man \
                INSTALL_USER=`id -un` \
                INSTALL_GROUP=`id -gn` \
                MANDIR=%{buildroot}%{_mandir}/man6 \
                TARGET=$target
done

# We don't want all the docs
mkdir -p doc2/{xmame/html,xmess}
pushd src/unix/doc
        cp -a {*.html,*.css,img} ../../../doc2/xmame/html/
        cp -a changes.* dga2.txt multiplayer-readme.txt \
              xmame-doc.txt xmamerc.dist mame/* ../../../doc2/xmame/
        cp -a xmessrc.dist mess/* ../../../doc2/xmess/
popd


%if %{?_without_mame:0}%{!?_without_mame:1}
# Add all directories
mkdir -p %{buildroot}%{_datadir}/xmame/{artwork,roms,samples,snap}

# Install the OpenGL cabinets
%{!?_without_xgl: cp -a src/unix/cab %{buildroot}%{_datadir}/xmame/}
%endif


%if %{?_without_mess:0}%{!?_without_mess:1}
# Add all directories
mkdir -p %{buildroot}%{_datadir}/xmess/{artwork,bios,crc,samples,snap,software}
%endif


%clean
rm -rf %{buildroot}


%if %{?_without_mame:0}%{!?_without_mame:1}
%files
%defattr(-, root, root)
%doc README doc2/xmame/* contrib/tools/romalizer contrib/tools/mame-cd
%{_bindir}/xmame
%dir %attr(2775, root, games) %{_datadir}/xmame
%dir %attr(2775, root, games) %{_datadir}/xmame/artwork
%dir %attr(2775, root, games) %{_datadir}/xmame/roms
%dir %attr(2775, root, games) %{_datadir}/xmame/samples
%dir %attr(2775, root, games) %{_datadir}/xmame/snap
%{_datadir}/xmame/*.dat
%{_mandir}/man6/xmame.6*
%endif

%if %{?_without_x11:0}%{!?_without_x11:%{?_without_mame:0}%{!?_without_mame:1}}
%files x11
%attr(2755, root, games) %{_bindir}/xmame.x11
%endif

%if %{?_without_SDL:0}%{!?_without_SDL:%{?_without_mame:0}%{!?_without_mame:1}}
%files SDL
%attr(2755, root, games) %{_bindir}/xmame.SDL
%endif

%if %{?_without_xgl:0}%{!?_without_xgl:%{?_without_mame:0}%{!?_without_mame:1}}
%files xgl
%attr(2755, root, games) %{_bindir}/xmame.xgl
%attr(-, root, root) %{_datadir}/xmame/cab
%endif

%if %{?_without_mess:0}%{!?_without_mess:1}
%files -n xmess
%defattr(-, root, root)
%doc README doc2/xmess/*
%dir %attr(2775, root, games) %{_datadir}/xmess
%dir %attr(2775, root, games) %{_datadir}/xmess/artwork
%dir %attr(2775, root, games) %{_datadir}/xmess/bios
%dir %attr(2775, root, games) %{_datadir}/xmess/crc
%dir %attr(2775, root, games) %{_datadir}/xmess/samples
%dir %attr(2775, root, games) %{_datadir}/xmess/snap
%dir %attr(2775, root, games) %{_datadir}/xmess/software
%{_bindir}/xmess
%{_mandir}/man6/xmess.6.*
%endif

%if %{?_without_x11:0}%{!?_without_x11:%{?_without_mess:0}%{!?_without_mess:1}}
%files -n xmess-x11
%attr(2755, root, games) %{_bindir}/xmess.x11
%endif

%if %{?_without_SDL:0}%{!?_without_SDL:%{?_without_mess:0}%{!?_without_mess:1}}
%files -n xmess-SDL
%attr(2755, root, games) %{_bindir}/xmess.SDL
%endif

%if %{?_without_xgl:0}%{!?_without_xgl:%{?_without_mess:0}%{!?_without_mess:1}}
%files -n xmess-xgl
%attr(2755, root, games) %{_bindir}/xmess.xgl
%endif


%changelog
* Tue May 27 2003 Matthias Saou <[email protected]>
- Update to 0.69.1.
- Updated all extra files.
- Changes to reflect the new doc organisation.
- Replace the default prefix, defaults should work and be coherent now.
- Removed "optional" directories from %{_datadir}/xmame.

* Fri May 22 2003 Matthias Saou <[email protected]>
- Update to 0.68.1.
- Updated all the extra files to their 0.68 versions.
- Merged Panu's mess additions and new wrapper script.

* Mon Apr 14 2003 Matthias Saou <[email protected]>
- Update to 0.67.2.
- Update catver and history to 0.67.
- Removed nno longer needed install patch.

* Thu Apr 10 2003 Matthias Saou <[email protected]>
- Update to 0.67.1.
- Split the free (beer ;-)) roms in a sub-package at last.
- Many spec tweaks.

* Mon Mar 31 2003 Matthias Saou <[email protected]>
- Rebuilt for Red Hat Linux 9.

* Thu Mar 20 2003 Matthias Saou <[email protected]>
- Update to 0.66.2.

* Tue Mar 18 2003 Matthias Saou <[email protected]>
- Update to 0.66.1, and update all related files.
- Removed now unneeded patches.
- Fix CFLAGS and CPU_TYPE for ppc!

* Sat Feb 22 2003 Matthias Saou <[email protected]>
- Build with new blit and xgl patches.
- Re-enable asm68000 on x86.
- Added the OpenGL cabinets to the xgl package.

* Wed Feb 12 2003 Matthias Saou <[email protected]>
- Update to 0.65.1.
- Disable xgl by default (been broken for some time now).

* Fri Feb  7 2003 Matthias Saou <[email protected]>
- Update to 0.64.1-rc2.
- Cleanup of the optflags to reflect upstream changes.
- Remove obsolete cpu patch.

* Fri Jan 31 2003 Matthias Saou <[email protected]>
- Major changes : Files are now in %%{_datadir}/xmame.
- All directories are now 2775 to allow more to be done by "game" members.
- Removed "snap" link, "cab" directory and added "icons" one.
- Disable asm68000 by default as it's broken.

* Wed Jan 29 2003 Matthias Saou <[email protected]>
- Update to 0.64.1rc1.
- Updated all associated files and added catver to the docs!
- Added romalizer to the docs + a few cleanups.

* Mon Jan 13 2003 Matthias Saou <[email protected]>
- Update to 0.62.2.
- Update history to 62b and mameinfo to 4.26.

* Tue Dec 11 2002 Matthias Saou <[email protected]>
- Update to 0.62.1-rc3.
- Included the latest testing netmame code.

* Mon Dec  2 2002 Matthias Saou <[email protected]>
- Update to 0.62.1-rc1.

* Mon Nov 25 2002 Matthias Saou <[email protected]>
- Cleanup and Sparc fixes thanks to Ralf Ertzinger.

* Fri Nov 15 2002 Matthias Saou <[email protected]>
- Updated history data to 62.
- Updated Mameinfo to 4.20.
- Added default ALSA support.
- Fixed missing "samples" directory.

* Thu Nov 14 2002 Matthias Saou <[email protected]>
- Update to 0.61.1 final.
- Updated highscore data to 7.95.
- Updated history data to 61f.
- Updated Mameinfo to 4.1b.

* Sun Oct 27 2002 Matthias Saou <[email protected]>
- Update to 0.61.1-pr9.
- Removed XV specific stuff, just add it to the x11 target.
- Moved binaries to %%{_bindir} in order to have them in the search path.
- New %%{_prefix}/lib/games/xmame link to work with gxmame's default config.

* Fri Oct  4 2002 Matthias Saou <[email protected]>
- Rebuilt for Red Hat Linux 8.0.
- Updated all obsolete -malign to -falign.
- Simplified --without stuff.
- Added XV build.

* Wed Sep 25 2002 Matthias Saou <[email protected]>
- Update to 0.61.1-pr7.

* Tue Aug 20 2002 Matthias Saou <[email protected]>
- Update to 0.61.1-pr3.

* Tue Aug 13 2002 Matthias Saou <[email protected]>
- Update to 0.61.1-pr2.

* Thu Jul 18 2002 Matthias Saou <[email protected]>
- Update to 0.61.1-pr1.

* Mon May 27 2002 Matthias Saou <[email protected]>
- Mostly fixes for building on PPC, thanks to Ralf Ertzinger.

* Mon May  6 2002 Matthias Saou <[email protected]>
- Update to 0.60.1.

* Thu May  2 2002 Matthias Saou <[email protected]>
- Rebuilt against Red Hat Linux 7.3.
- Added the %{?_smp_mflags} expansion.

* Fri Apr 19 2002 Matthias Saou <[email protected]>
- Looking quite good now.
- Update to 0.59.2.
- Added %post and %postun scriptlets for the /usr/bin/xmame link.

* Thu Apr 11 2002 Matthias Saou <[email protected]>
- Spec file maturing a bit, still in constant development.

* Sun Jan 13 2002 Matthias Saou <[email protected]>
- Spec file rewrite from scratch.

编译时xmame.x11、xmame.SDL、xmame.xgl、xmess.x11、xmess.SDL、xmess.xgl都已经正常通过了。以下是编译出错的信息:
Compiling src/unix/frameskip-drivers/barath.c ...
Archiving ../../xmess.obj/unix.xgl/osdepend.a ...
make[1]: Leaving directory `/usr/src/redhat/BUILD/xmame-0.71.1/src/unix'
Compiling src/vidhrdw/vector.c ...
Linking xmess.xgl ...
+ exit 0
Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.89910
+ umask 022
+ cd /usr/src/redhat/BUILD
+ cd xmame-0.71.1
+ rm -rf /var/tmp/xmame-root
++ id -un
++ id -gn
+ make install-man INSTALL_USER=root INSTALL_GROUP=root MANDIR=/var/tmp/xmame-root/usr/share/man/man6 TARGET=mame
installing manual pages under /var/tmp/xmame-root/usr/share/man/man6 ...
/usr/bin/install -d    -o root -g root -m  755 /var/tmp/xmame-root/usr/share/man/man6
/usr/bin/install -c    -o root -g root -m  444 doc/xmame.6 /var/tmp/xmame-root/usr/share/man/man6/xmame.6
++ id -un
++ id -gn
+ make install-man INSTALL_USER=root INSTALL_GROUP=root MANDIR=/var/tmp/xmame-root/usr/share/man/man6 TARGET=mess
installing manual pages under /var/tmp/xmame-root/usr/share/man/man6 ...
/usr/bin/install -d    -o root -g root -m  755 /var/tmp/xmame-root/usr/share/man/man6
/usr/bin/install -c    -o root -g root -m  444 doc/xmess.6 /var/tmp/xmame-root/usr/share/man/man6/xmess.6
+ mkdir -p doc2/xmame/html doc2/xmess
+ pushd src/unix/doc
/usr/src/redhat/BUILD/xmame-0.71.1/src/unix/doc /usr/src/redhat/BUILD/xmame-0.71.1
+ cp -a xmame-doc-1.html xmame-doc-2.html xmame-doc-3.html xmame-doc-4.html xmame-doc-5.html xmame-doc-6.html xmame-doc-7.html xmame-doc-8.html xmame-doc.html xmame-gdoc-1.html xmame-gdoc-2.html xmame-gdoc-3.html xmame-gdoc-4.html xmame-gdoc-5.html xmame-gdoc-6.html xmame-gdoc-7.html xmame-gdoc-8.html xmame-gdoc.html xmame.css img ../../../doc2/xmame/html/
+ cp -a changes.opengl changes.unix dga2.txt multiplayer-readme.txt xmame-doc.txt xmamerc.dist mame/ctrlr.txt mame/gamelist.txt mame/listinfo.txt mame/mame.txt mame/msdos.txt mame/whatsnew.txt mame/whatsold.txt mame/windows.txt ../../../doc2/xmame/
+ cp -a xmessrc.dist mess/cgafont.txt mess/compilewin.html mess/credits.txt mess/imgtool.txt mess/messhelp.txt mess/messnew.txt mess/messold.txt mess/messroms.txt mess/sysinfo.dat mess/windows.txt ../../../doc2/xmess/
+ popd
/usr/src/redhat/BUILD/xmame-0.71.1
+ mkdir -p /var/tmp/xmame-root/usr/share/xmame/artwork /var/tmp/xmame-root/usr/share/xmame/roms /var/tmp/xmame-root/usr/share/xmame/samples /var/tmp/xmame-root/usr/share/xmame/snap
+ cp -a src/unix/cab /var/tmp/xmame-root/usr/share/xmame/
+ mkdir -p /var/tmp/xmame-root/usr/share/xmess/artwork /var/tmp/xmame-root/usr/share/xmess/bios /var/tmp/xmame-root/usr/share/xmess/crc /var/tmp/xmame-root/usr/share/xmess/samples /var/tmp/xmame-root/usr/share/xmess/snap /var/tmp/xmame-root/usr/share/xmess/software
+ /usr/lib/rpm/brp-compress
+ /usr/lib/rpm/brp-strip
+ /usr/lib/rpm/brp-strip-static-archive
+ /usr/lib/rpm/brp-strip-comment-note
Processing files: xmame-0.71.1-1
error: File not found: /var/tmp/xmame-root/usr/bin/xmame
error: File not found by glob: /var/tmp/xmame-root/usr/share/xmame/*.dat
Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.26788
+ umask 022
+ cd /usr/src/redhat/BUILD
+ cd xmame-0.71.1
+ DOCDIR=/var/tmp/xmame-root/usr/share/doc/xmame-0.71.1
+ export DOCDIR
+ rm -rf /var/tmp/xmame-root/usr/share/doc/xmame-0.71.1
+ /bin/mkdir -p /var/tmp/xmame-root/usr/share/doc/xmame-0.71.1
+ cp -pr README doc2/xmame/changes.opengl doc2/xmame/changes.unix doc2/xmame/ctrlr.txt doc2/xmame/dga2.txt doc2/xmame/gamelist.txt doc2/xmame/html doc2/xmame/listinfo.txt doc2/xmame/mame.txt doc2/xmame/msdos.txt doc2/xmame/multiplayer-readme.txt doc2/xmame/whatsnew.txt doc2/xmame/whatsold.txt doc2/xmame/windows.txt doc2/xmame/xmame-doc.txt doc2/xmame/xmamerc.dist contrib/tools/romalizer contrib/tools/mame-cd /var/tmp/xmame-root/usr/share/doc/xmame-0.71.1
+ exit 0
Processing files: xmame-x11-0.71.1-1
error: File not found: /var/tmp/xmame-root/usr/bin/xmame.x11
Processing files: xmame-SDL-0.71.1-1
error: File not found: /var/tmp/xmame-root/usr/bin/xmame.SDL
Processing files: xmame-xgl-0.71.1-1
error: File not found: /var/tmp/xmame-root/usr/bin/xmame.xgl
Processing files: xmess-0.71.1-1
error: File not found: /var/tmp/xmame-root/usr/bin/xmess
Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.26788
+ umask 022
+ cd /usr/src/redhat/BUILD
+ cd xmame-0.71.1
+ DOCDIR=/var/tmp/xmame-root/usr/share/doc/xmess-0.71.1
+ export DOCDIR
+ rm -rf /var/tmp/xmame-root/usr/share/doc/xmess-0.71.1
+ /bin/mkdir -p /var/tmp/xmame-root/usr/share/doc/xmess-0.71.1
+ cp -pr README doc2/xmess/cgafont.txt doc2/xmess/compilewin.html doc2/xmess/credits.txt doc2/xmess/imgtool.txt doc2/xmess/messhelp.txt doc2/xmess/messnew.txt doc2/xmess/messold.txt doc2/xmess/messroms.txt doc2/xmess/sysinfo.dat doc2/xmess/windows.txt doc2/xmess/xmessrc.dist /var/tmp/xmame-root/usr/share/doc/xmess-0.71.1
+ exit 0
Processing files: xmess-x11-0.71.1-1
error: File not found: /var/tmp/xmame-root/usr/bin/xmess.x11
Processing files: xmess-SDL-0.71.1-1
error: File not found: /var/tmp/xmame-root/usr/bin/xmess.SDL
Processing files: xmess-xgl-0.71.1-1
error: File not found: /var/tmp/xmame-root/usr/bin/xmess.xgl


RPM build errors:
    File not found: /var/tmp/xmame-root/usr/bin/xmame
    File not found by glob: /var/tmp/xmame-root/usr/share/xmame/*.dat
    File not found: /var/tmp/xmame-root/usr/bin/xmame.x11
    File not found: /var/tmp/xmame-root/usr/bin/xmame.SDL
    File not found: /var/tmp/xmame-root/usr/bin/xmame.xgl
    File not found: /var/tmp/xmame-root/usr/bin/xmess
    File not found: /var/tmp/xmame-root/usr/bin/xmess.x11
    File not found: /var/tmp/xmame-root/usr/bin/xmess.SDL
    File not found: /var/tmp/xmame-root/usr/bin/xmess.xgl
[root@luoyuyang SPECS]#
您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2025-8-11 15:01 , Processed in 0.040999 second(s), 16 queries .

© 2001-2025 Discuz! Team. Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表