LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 2449|回复: 14

MPlayer 1.0pre7安装笔记 (CentOS4)

[复制链接]
发表于 2005-5-13 17:16:18 | 显示全部楼层 |阅读模式
刚刚在CentOS4下装了MPlayer 1.0pre7觉得不错,看了有fc3下的安装,借此写下CentOS4的,和fc3基本是一样的:
1.下载文件(下载到如/tmp目录下总共大概有约20M)
1)源代码MPlayer v1.0pre7 source
http://www4.mplayerhq.hu/MPlayer/releases/MPlayer-1.0pre7.tar.bz2
2)all codecs for Linux x86
http://www4.mplayerhq.hu/MPlayer ... ll-20050412.tar.bz2
3)all codecs for Windows
http://www4.mplayerhq.hu/MPlayer ... ws-all-20050412.zip
4)LIVE.COM Streaming Media(可选支持RTSP)
http://live.com/liveMedia/public/live-latest.tar.gz
5)皮肤(我选neutron图见http://www.mplayerhq.hu/homepage/images/skin-neutron-shot01.jpg)
http://www1.mplayerhq.hu/MPlayer/Skin/neutron-1.5.tar.bz2 (可以选择自己喜欢的到http://www.mplayerhq.hu/homepage/design7/dload.html)
2.打开终端解压下载的文件(安装目录可根据自己情况及喜好而定如prefix=/urs/local)
1)[root@localhost ~]# cd /tmp
2)安装linux音频视频编码解码文件
   [root@localhost tmp]# tar jxvf all-20050412.tar.bz2
   [root@localhost tmp]# mv all-20050412 /usr/local/lib/codecs   
3)安装windows音频视频编码解码文件
   [root@localhost tmp]# unzip -x windows-all-20050412.zip
   [root@localhost tmp]# mv windows-all-20050412.zip /usr/local/lib/wincodecs
4)安装liveMedia
   [root@localhost tmp]# tar zxvf live-latest.tar.gz
   [root@localhost tmp]# cd live
   [root@localhost live]# ./genMakefiles linux
//如果你的gcc版本为3.0或者更高可加上-Wno-deprecated参数
   [root@localhost live]# make;cd ..
   [root@localhost tmp]# cp -r live /usr/local/lib
//要是你以前有livemedia,最好现删除它再装新的参考http://live.com/liveMedia/
6)安装MPlayer 1.0pre7
   [root@localhost tmp]# tar jxvf MPlayer-1.0pre7.tar.bz2
   [root@localhost tmp]# cd MPlayer-1.0pre7
   [root@localhost MPlayer-1.0pre7]# echo 'UTF-8' > help/help_mp-zh_CN.h.charset      
//修改中文语言编码设置为UTF-8,用"locale"查看,如果你的locale显示为zh_CN.GB2312,就把上面的'UTF-8'换成'GB2312'编码
   [root@localhost MPlayer-1.0pre7]# ./configure --help
Usage: ./configure [OPTIONS]...

Configuration:
  -h, --help             display this help and exit

Installation directories:
  --prefix=DIR           use this prefix for installing mplayer [/usr/local]
  --bindir=DIR           use this prefix for installing mplayer binary
                         [PREFIX/bin]
  --datadir=DIR          use this prefix for installing machine independent
                         data files (fonts, skins) [PREFIX/share/mplayer]
  --mandir=DIR           use this prefix for installing manpages [PREFIX/man]
  --confdir=DIR          use this prefix for installing configuration files
                         [PREFIX/etc/mplayer]
  --libdir=DIR           use this prefix for object code libraries [PREFIX/lib]

Optional features:
  --disable-mencoder     disable mencoder (a/v encoder) compilation [enable]
  --enable-gui           enable gmplayer compilation (GTK 1.2 GUI) [disable]
  --enable-largefiles    enable support for files > 2 GBytes [disable]
  --enable-linux-devfs   set default devices to devfs ones [disable]
  --enable-termcap       use termcap database for key codes [autodetect]
  --enable-termios       use termios database for key codes [autodetect]
  --disable-iconv        do not use iconv(3) function [autodetect]
  --disable-setlocale    disable setlocale using in mplayer [autodetect]
  --disable-langinfo     do not use langinfo [autodetect]
  --enable-lirc          enable LIRC (remote control) support [autodetect]
  --enable-lircc         enable LIRCCD (LIRC client daemon) input [autodetect]
  --enable-joystick      enable joystick support [disable]
  --disable-vm           disable support X video mode extensions [autodetect]
  --disable-xf86keysym   disable support for 'multimedia' keys [autodetect]
  --disable-tv           disable TV Interface (tv/dvb grabbers) [enable]
  --disable-tv-v4l       disable Video4Linux TV Interface support [autodetect]
  --disable-tv-v4l2      disable Video4Linux2 TV Interface support [autodetect]
  --disable-tv-bsdbt848  disable BSD BT848 Interface support [autodetect]
  --disable-edl          disable EDL (edit decision list) support [enable]
  --disable-rtc          disable RTC (/dev/rtc) on Linux [autodetect]
  --disable-network      disable network support (for: http/mms/rtp) [enable]
  --enable-winsock2      enable winsock2 usage [autodetect]
  --enable-smb           enable Samba (SMB) input support [autodetect]
  --enable-live          enable LIVE.COM Streaming Media support [autodetect]
  --disable-dvdread      Disable libdvdread support [autodetect]
  --disable-mpdvdkit     Disable mpdvdkit/mpdvdkit2 support [autodetect]
  --disable-cdparanoia   Disable cdparanoia support [autodetect]
  --disable-freetype     Disable freetype2 font rendering support [autodetect]
  --disable-fontconfig   Disable fontconfig font lookup support [autodetect]
  --disable-unrarlib     Disable Unique RAR File Library [enabled]
  --enable-menu          Enable OSD menu support (NOT DVD MENU) [disabled]
  --disable-sortsub      Disable subtitles sorting [enabled]
  --enable-fribidi       Enable using the FriBiDi libs [disabled]
  --disable-enca         Disable using ENCA charset oracle library [autodetect]
  --disable-macosx       Disable Mac OS X specific features [autodetect]
  --enable-macosx-finder-support  Enable Mac OS X Finder invocation parameter parsing [disabled]
  --enable-macosx-bundle Enable Mac OS X bundle file locations [autodetect]
  --disable-inet6        Disable IPv6 support [autodetect]
  --disable-gethostbyname2  gethostbyname() function is not provided by the C
                            library [autodetect]
  --disable-ftp          Disable ftp support [enabled]
  --disable-vstream      Disable tivo vstream client support [autodetect]

Codecs:
  --enable-gif           enable gif support [autodetect]
  --enable-png           enable png input/output support [autodetect]
  --enable-jpeg          enable jpeg input/output support [autodetect]
  --enable-liblzo        enable external liblzo support [autodetect]
  --disable-win32        disable Win32 DLL support [autodetect]
  --disable-dshow        disable Win32/DirectShow support [autodetect]
  --disable-qtx          disable Quicktime codecs [autodetect]
  --disable-xanim        disable XAnim DLL support [autodetect]
  --disable-real         disable RealPlayer DLL support [autodetect]
  --disable-xvid         disable XviD codec [autodetect]
  --disable-x264         disable H.264 encoder [autodetect]
  --disable-divx4linux   disable DivX4linux/Divx5linux codec [autodetect]
  --enable-opendivx      enable _old_ OpenDivx codec [disable]
  --disable-libavcodec   disable libavcodec [autodetect]
  --disable-libavformat  disable libavformat [autodetect]
  --enable-libfame       enable libfame realtime encoder [autodetect]
  --disable-internal-tremor do not build internal OggVorbis support [enabled]
  --enable-tremor-low    build with lower accuracy internal tremor [disabled]
  --enable-external-tremor build with external tremor [disabled]
  --disable-vorbis       disable OggVorbis support entirely [autodetect]
  --enable-theora        build with OggTheora support [autodetect]
  --disable-internal-matroska disable internal Matroska support [enabled]
  --enable-external-faad build with external FAAD2 (AAC) support [autodetect]
  --disable-internal-faad disable internal FAAD2 (AAC) support [autodetect]
  --disable-ladspa       disable LADSPA plugin support [autodetect]
  --disable-libdv        disable libdv 0.9.5 en/decoding support [autodetect]
  --disable-mad          disable libmad (MPEG audio) support [autodetect]
  --disable-toolame      disable Toolame (MPEG layer 2 audio) support in mencoder [autodetect]
  --enable-xmms          build with XMMS inputplugin support [disabled]
  --disable-mp3lib       disable builtin mp3lib [enabled]
  --disable-liba52       disable builtin liba52 [enabled]
  --enable-libdts        enable libdts support [autodetect]
  --disable-libmpeg2     disable builtin libmpeg2 [enabled]
  --disable-amr_nb       disable amr narrowband, floating point [autodetect]
  --disable-amr_nb-fixed disable amr narrowband, fixed point [autodetect]
  --disable-amr_wb       disable amr wideband, floating point [autodetect]

Video output:
  --disable-vidix        disable VIDIX [enable on x86 *nix]
  --enable-gl            build with OpenGL render support [autodetect]
  --enable-dga[=n]       build with DGA [n in {1, 2} ] support [autodetect]
  --enable-vesa          build with VESA support [autodetect]
  --enable-svga          build with SVGAlib support [autodetect]
  --enable-sdl           build with SDL render support [autodetect]
  --enable-aa            build with AAlib render support [autodetect]
  --enable-caca          build with CACA render support [autodetect]
  --enable-ggi           build with GGI render support [autodetect]
  --enable-directx       build with DirectX support [autodetect]
  --enable-dxr2          build with DXR2 render support [autodetect]
  --enable-dxr3          build with DXR3/H+ render support [autodetect]
  --enable-dvb           build with support for output via DVB-Card [autodetect]  --enable-dvbhead       build with DVB support (HEAD version) [autodetect]
  --enable-mga           build with mga_vid (for Matrox G200/G4x0/G550) support
                         (check for /dev/mga_vid) [autodetect]
  --enable-xmga          build with mga_vid X Window support
                         (check for X & /dev/mga_vid) [autodetect]
  --enable-xv            build with Xv render support for X 4.x [autodetect]
  --enable-xvmc          build with XvMC acceleration for X 4.x [disable]
  --enable-vm            build with XF86VidMode support for X11 [autodetect]
  --enable-xinerama      build with Xinerama support for X11 [autodetect]
  --enable-x11           build with X11 render support [autodetect]
  --enable-fbdev         build with FBDev render support [autodetect]
  --enable-mlib          build with MLIB support (Solaris only) [autodetect]
  --enable-3dfx          build with obsolete /dev/3dfx support [disable]
  --enable-tdfxfb        build with tdfxfb (Voodoo 3/banshee) support [disable]
  --enable-directfb      build with DirectFB support [autodetect]
  --enable-zr            build with ZR360[56]7/ZR36060 support [autodetect]
  --enable-bl            build with Blinkenlights support [disable]
  --enable-tdfxvid       build with tdfx_vid support [disable]
  --disable-tga          disable targa output support [enable]
  --disable-pnm          disable pnm output support [enable]
  --disable-md5sum       disable md5sum output support [enable]

Audio output:
  --disable-alsa         disable ALSA sound support [autodetect]
  --disable-ossaudio     disable OSS sound support [autodetect]
  --disable-arts         disable aRts sound support [autodetect]
  --disable-esd          disable esd sound support [autodetect]
  --disable-polyp        disable Polypaudio sound support [autodetect]
  --disable-jack         disable JACK sound support [autodetect]
  --disable-nas          disable NAS sound support [autodetect]
  --disable-sgiaudio     disable SGI sound support [autodetect]
  --disable-sunaudio     disable Sun sound support [autodetect]
  --disable-win32waveout disable Windows waveout sound support [autodetect]
  --disable-select       disable using select() on audio device [enable]

Miscellaneous options:
  --enable-runtime-cpudetection    Enable runtime CPU detection [disable]
  --cc=COMPILER          use this C compiler to build MPlayer [gcc]
  --host-cc=COMPILER     use this C compiler to build apps needed for the build process [gcc]
  --as=ASSEMBLER         use this assembler to build MPlayer [as]
  --target=PLATFORM      target platform (i386-linux, arm-linux, etc)
  --enable-static        build a statically linked binary. Set further linking
                         options with --enable-static="-lslang -lncurses"
  --charset              convert the help messages to this charset
  --language=list        a white space or comma separated list of languages
                         for translated man pages, the first language is the
                         primary and therefore used for translated messages
                         and GUI (also the environment variable $LINGUAS is
                         honored) [en]
                         (Available: bg cs de dk el en es fr hu it ja ko mk nl no pl ro ru sk sv tr uk pt_BR zh_CN zh_TW all)
  --enable-shared-pp     install & use shared postprocessing lib
  --with-install=PATH    use a custom install program (useful if your OS uses
                         a GNU-incompatible install utility by default and
                         you want to use GNU version)
  --install-path=PATH    the path to a custom install program
                         this option is obsolete and will be removed soon,
                         use --with-install instead.

Advanced options:
  --enable-mmx           build with MMX support [autodetect]
  --enable-mmx2          build with MMX2 support (PIII, Athlon) [autodetect]
  --enable-3dnow         build with 3DNow! support [autodetect]
  --enable-3dnowex       build with extended 3DNow! support [autodetect]
  --enable-sse           build with SSE support [autodetect]
  --enable-sse2          build with SSE2 support [autodetect]
  --enable-shm           build with shm support [autodetect]
  --enable-altivec       build with Altivec support (PowerPC) [autodetect]
  --disable-fastmemcpy   disable 3DNow!/SSE/MMX optimized memcpy() [enable]
  --enable-big-endian    Force byte order to big-endian [autodetect]
  --enable-debug[=1-3]   compile debugging information into mplayer [disable]
  --enable-profile       compile profiling information into mplayer [disable]
  --disable-sighandler   disable sighandler for crashes [enable]
  --enable-crash-debug   enable automatic gdb attach on crash [disable]
  --enable-i18n          _experimental_ gnu gettext() support [autodetect]
  --enable-dynamic-plugins  Enable support for dynamic a/v plugins [disable]

Hazardous options a.k.a. "DO NOT REPORT ANY BUGS!"
  --disable-gcc-checking   disable gcc version checking [enable]

Use these options if autodetection fails (Options marked with (*) accept
multiple paths separated by ':'):
  --with-extraincdir=DIR   extra headers (png, mad, sdl, ...) in DIR (*)
  --with-extralibdir=DIR   extra library files (png, mad, sdl, ...) in DIR (*)
  --with-x11incdir=DIR     X headers in DIR (*)
  --with-x11libdir=DIR     X library files in DIR (*)
  --with-dxr2incdir=DIR    DXR2 headers in DIR (*)
  --with-dvbincdir=DIR     DVB headers in DIR (*)
  --with-madlibdir=DIR     libmad (libmad shared library) in DIR (*)
  --with-mlibdir=DIR       libmlib (MLIB support) in DIR (Solaris only)
  --with-codecsdir=DIR     Binary codec files in DIR
  --with-win32libdir=DIR   W*ndows DLL files in DIR
  --with-xanimlibdir=DIR   XAnim DLL files in DIR
  --with-reallibdir=DIR    RealPlayer DLL files in DIR
  --with-xvidlibdir=DIR    libxvidcore (XviD) in DIR  (*)
  --with-xvidincdir=DIR    XviD header in DIR (*)
  --with-x264libdir=DIR    libx264 in DIR
  --with-x264incdir=DIR    x264 header in DIR
  --with-dtslibdir=DIR     libdts library in DIR  (*)
  --with-dtsincdir=DIR     libdts header in DIR (*)
  --with-livelibdir=DIR    LIVE.COM Streaming Media libraries in DIR
  --with-toolamedir=DIR    path to Toolame library and include file
  --with-xmmsplugindir=DIR XMMS plugins in DIR
  --with-xmmslibdir=DIR    libxmms.so.1 in DIR
  --with-bio2jack=DIR      libbio2jack.a in DIR
  --with-cdparanoiaincdir=DIR  cdparanoia headers in DIR (*)
  --with-cdparanoialibdir=DIR  cdparanoia libraries (libcdda_*) in DIR (*)
  --with-xvmclib=NAME      name of adapter-specific library (e.g. XvMCNVIDIA)
  --with-termcaplib=NAME   name of library with termcap functionality
                           name should be given without leading "lib"
                           checks for "termcap" and "tinfo"

  --with-freetype-config=PATH path to freetype-config
                              (e.g. /opt/bin/freetype-config)
  --with-fribidi-config=PATH  path to fribidi-config
                              (e.g. /opt/bin/fribidi-config)
  --with-glib-config=PATH  path to glib*-config (e.g. /opt/bin/glib-config)
  --with-gtk-config=PATH   path to gtk*-config (e.g. /opt/bin/gtk-config)
  --with-sdl-config=PATH   path to sdl*-config (e.g. /opt/bin/sdl-config)
   [root@localhost MPlayer-1.0pre7]# ./configure --language=zh_CN --charset=utf8 --enable-gui --target=i686-linux --enable-freetype --enable-i18n --enable-largefiles --with-codecsdir=/usr/local/lib/codecs --with-win32libdir=/usr/local/lib/wincodecs --disable-gcc-checking --enable-menu --enable-live --with-livelibdir=/usr/local/lib/live
//如果有xmms可加上--enable-xmms及--with-xmmsplugindir=/usr/lib/xmms/*** ,--with-xmmslibdir=/usr/lib选项
//同样'--language=zh_CN --charset=utf8'的'utf8'可变的
//如果不想用gui显示就去掉--enable-gui选项
//--target=i686-linux这个选项我还没发现有什么作用,可选可不选都可以,只是编译时没出错,当然用的gcc4编译不过
//如果你的系统装了gcc4,为了保险期间还是加上--disable-gcc-checking,否则编译几次都过不了(只要能编译过小错误还是可以容忍吧)其实最好少加些选项,一般是不会出错的
//--enable-menu不用说了,视频中用的,像电视机
   [root@localhost MPlayer-1.0pre7]# make
   [root@localhost MPlayer-1.0pre7]# make install
6)安装for gui皮肤
   [root@localhost MPlayer-1.0pre7]#cd..;tar jxvf neutron-1.5.tar.bz2
   [root@localhost tmp]# mv neutron /usr/local/share/mplayer/skin/neutron;ln -s /usr/local/share/mplayer/skin/neutron /usr/local/share/mplayer/skin/default
7)善后处理   
   [root@localhost MPlayer-1.0pre7]# vim /usr/local/share/applications/mplayer*
[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=MPlayer
GenericName=Multimedia Player
Comment=Multimedia Player
Comment[de]=Multimedia Player
Comment[es]=Reproductor multimedia
Comment[fr]=Lecteur multimedia
Comment[it]=Lettore multimediale
Icon=/usr/local/share/pixmaps/mplayer-desktop.xpm   //修改处1
TryExec=/usr/local/bin/gmplayer  //修改处2
Exec=/usr/local/bin/gmplayer  //修改处3
Terminal=false  //修改处4
Categories=GNOME;KDE;GTK;Application;Multimedia;AudioVideo;Videolayer;
   
   [root@localhost MPlayer-1.0pre7]# cp /usr/local/share/applications/mplayer.desktop /usr/share/applications/mplayer.desktop;cp /usr/local/share/applications/mplayer.desktop ~/Desktop/mplayer.desktop
//在gnome菜单中和桌面显示,如果装在/usr下,而不是/usr/local(默认),那么不须要这一步,只改上一步vim /usr/share/applications/mplayer*
   [root@localhost MPlayer-1.0pre7]# gmplayer &

接下来先运行一次,出现字体找不到,关闭
终端再运行:rm -rf ~/.mplayer/subfonts;ln -s /usr/share/fonts/zh_CN/TrueType/zysong.ttf ~/.mplayer/subfont.ttf
字体链接源文件可变
如有认识错误,请大家予以改正
谢谢!
发表于 2005-5-13 17:53:38 | 显示全部楼层
写得很详细,帮你顶
回复 支持 反对

使用道具 举报

发表于 2005-5-13 19:17:37 | 显示全部楼层
代码支持AMD64位CPU吗?问一下.
回复 支持 反对

使用道具 举报

发表于 2005-5-13 23:02:17 | 显示全部楼层
代码支持是没问题,不过那些二进制的解码器就不知道能不能在64上面跑了
回复 支持 反对

使用道具 举报

发表于 2005-5-13 23:09:52 | 显示全部楼层
啊。CentOS居然自带
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-5-14 13:15:25 | 显示全部楼层
Post by QuickTime
啊。CentOS居然自带

没有啊,是自己装的
下面是CentOS4的发行笔记的一部分(关于软件包):




  1. CentOS 4 Release Notes
  2.      _________________________________________________________________


  3. Packages Added

  4.    The following packages have been added to CentOS 4:
  5.      * Canna-devel
  6.      * FreeWnn-devel
  7.      * HelixPlayer
  8.      * ImageMagick-c++
  9.      * ImageMagick-c++-devel
  10.      * ImageMagick-devel
  11.      * ImageMagick-perl
  12.      * NetworkManager
  13.      * NetworkManager-gnome
  14.      * PyQt
  15.      * PyQt-devel
  16.      * PyQt-examples
  17.      * Pyrex
  18.      * VFlib2-VFjfm
  19.      * VFlib2-conf-ja
  20.      * VFlib2-devel
  21.      * Xaw3d-devel
  22.      * alchemist-devel
  23.      * alsa-lib
  24.      * alsa-lib-devel
  25.      * alsa-utils
  26.      * amanda-devel
  27.      * anaconda-product (noarch)
  28.      * anacron
  29.      * apel
  30.      * apr
  31.      * apr-devel
  32.      * apr-util
  33.      * apr-util-devel
  34.      * arpwatch
  35.      * aspell-ca
  36.      * aspell-cs
  37.      * aspell-cy
  38.      * aspell-el
  39.      * aspell-en
  40.      * aspell-pl
  41.      * audit
  42.      * authd
  43.      * automake16
  44.      * automake17
  45.      * beecrypt-devel
  46.      * beecrypt-python
  47.      * bind-chroot
  48.      * bind-devel
  49.      * bind-libs
  50.      * bitstream-vera-fonts
  51.      * bluez-bluefw
  52.      * bluez-hcidump
  53.      * bluez-libs
  54.      * bluez-libs-devel
  55.      * bluez-pin
  56.      * bluez-utils
  57.      * bluez-utils-cups
  58.      * bogl-devel
  59.      * boost
  60.      * boost-devel
  61.      * bootparamd
  62.      * bridge-utils-devel
  63.      * busybox
  64.      * cadaver
  65.      * cdda2wav
  66.      * cdparanoia-devel
  67.      * cdrecord-devel
  68.      * checkpolicy
  69.      * compat-gcc-32
  70.      * compat-gcc-32-c++
  71.      * compat-libgcc-296
  72.      * compat-libstdc++-296
  73.      * compat-libstdc++-33
  74.      * compat-openldap
  75.      * cryptsetup
  76.      * cscope
  77.      * cyrus-imapd
  78.      * cyrus-imapd-devel
  79.      * cyrus-imapd-murder
  80.      * cyrus-imapd-nntp
  81.      * cyrus-imapd-utils
  82.      * cyrus-sasl-ntlm
  83.      * cyrus-sasl-sql
  84.      * dasher
  85.      * db4-java
  86.      * db4-tcl
  87.      * dbus
  88.      * dbus-devel
  89.      * dbus-glib
  90.      * dbus-python
  91.      * dbus-x11
  92.      * devhelp
  93.      * devhelp-devel
  94.      * device-mapper
  95.      * dhcp-devel
  96.      * dhcpv6
  97.      * dhcpv6_client
  98.      * dia
  99.      * dmalloc
  100.      * dmraid
  101.      * docbook-simple
  102.      * docbook-slides
  103.      * dovecot
  104.      * doxygen-doxywizard
  105.      * elfutils-libelf-devel
  106.      * emacs-common
  107.      * emacs-nox
  108.      * evolution-connector
  109.      * evolution-data-server
  110.      * evolution-data-server-devel
  111.      * evolution-devel
  112.      * evolution-webcal
  113.      * exim
  114.      * exim-doc
  115.      * exim-mon
  116.      * exim-sa
  117.      * expect-devel
  118.      * expectk
  119.      * finger-server
  120.      * firefox
  121.      * flac
  122.      * flac-devel
  123.      * fonts-arabic
  124.      * fonts-bengali
  125.      * fonts-xorg-100dpi
  126.      * fonts-xorg-75dpi
  127.      * fonts-xorg-ISO8859-14-100dpi
  128.      * fonts-xorg-ISO8859-14-75dpi
  129.      * fonts-xorg-ISO8859-15-100dpi
  130.      * fonts-xorg-ISO8859-15-75dpi
  131.      * fonts-xorg-ISO8859-2-100dpi
  132.      * fonts-xorg-ISO8859-2-75dpi
  133.      * fonts-xorg-ISO8859-9-100dpi
  134.      * fonts-xorg-ISO8859-9-75dpi
  135.      * fonts-xorg-base
  136.      * fonts-xorg-cyrillic
  137.      * fonts-xorg-syriac
  138.      * fonts-xorg-truetype
  139.      * freeglut
  140.      * freeglut-devel
  141.      * freeradius-mysql
  142.      * freeradius-postgresql
  143.      * freeradius-unixODBC
  144.      * freetype-demos
  145.      * freetype-utils
  146.      * fribidi
  147.      * fribidi-devel
  148.      * fsh
  149.      * gamin
  150.      * gamin-devel
  151.      * gd-progs
  152.      * gda-mysql
  153.      * gda-odbc
  154.      * gda-postgres
  155.      * gedit-devel
  156.      * gettext-devel
  157.      * ghostscript-devel
  158.      * ghostscript-gtk
  159.      * gimp-devel
  160.      * gimp-gap
  161.      * gimp-help
  162.      * gimp-print-devel
  163.      * gnome-audio-extra
  164.      * gnome-kerberos
  165.      * gnome-keyring
  166.      * gnome-keyring-devel
  167.      * gnome-keyring-manager
  168.      * gnome-mag
  169.      * gnome-mag-devel
  170.      * gnome-netstatus
  171.      * gnome-nettool
  172.      * gnome-panel-devel
  173.      * gnome-pilot-conduits
  174.      * gnome-pilot-devel
  175.      * gnome-python2-applet
  176.      * gnome-python2-gconf
  177.      * gnome-python2-gnomeprint
  178.      * gnome-python2-gnomevfs
  179.      * gnome-python2-nautilus
  180.      * gnome-speech
  181.      * gnome-speech-devel
  182.      * gnome-vfs2-smb
  183.      * gnome-volume-manager
  184.      * gnopernicus
  185.      * gnumeric
  186.      * gnumeric-devel
  187.      * gnuplot-emacs
  188.      * gnutls
  189.      * gnutls-devel
  190.      * gok
  191.      * gok-devel
  192.      * gpdf
  193.      * gphoto2-devel
  194.      * groff-gxditview
  195.      * groff-perl
  196.      * gsl
  197.      * gsl-devel
  198.      * gstreamer-devel
  199.      * gstreamer-plugins-devel
  200.      * gthumb
  201.      * gtkhtml3-devel
  202.      * gtksourceview
  203.      * gtksourceview-devel
  204.      * gtkspell
  205.      * gtkspell-devel
  206.      * guile-devel
  207.      * hal
  208.      * hal-cups-utils
  209.      * hal-devel
  210.      * hal-gnome
  211.      * hicolor-icon-theme
  212.      * howl
  213.      * howl-devel
  214.      * howl-libs
  215.      * hpoj-devel
  216.      * htdig-web
  217.      * httpd-manual
  218.      * httpd-suexec
  219.      * icon-slicer
  220.      * iiimf-csconv
  221.      * iiimf-docs
  222.      * iiimf-emacs
  223.      * iiimf-gnome-im-switcher
  224.      * iiimf-gtk
  225.      * iiimf-le-canna
  226.      * iiimf-le-chinput
  227.      * iiimf-le-hangul
  228.      * iiimf-le-sun-thai
  229.      * iiimf-le-unit
  230.      * iiimf-le-xcin
  231.      * iiimf-libs
  232.      * iiimf-libs-devel
  233.      * iiimf-server
  234.      * iiimf-x
  235.      * inn-devel
  236.      * iptables-devel
  237.      * iptraf
  238.      * iptstate
  239.      * irb
  240.      * isdn4k-utils-devel
  241.      * isdn4k-utils-vboxgetty
  242.      * joe
  243.      * jpackage-utils
  244.      * k3b
  245.      * kdbg
  246.      * kde-i18n-Bengali
  247.      * kde-i18n-Bulgarian
  248.      * kde-i18n-Hindi
  249.      * kde-i18n-Punjabi
  250.      * kde-i18n-Tamil
  251.      * kdeaddons-atlantikdesigner
  252.      * kdeaddons-xmms
  253.      * kdeadmin
  254.      * kdeartwork-icons
  255.      * kdegames-devel
  256.      * kdemultimedia-devel
  257.      * kdenetwork-nowlistening
  258.      * kernel-doc
  259.      * kinput2
  260.      * krb5-auth-dialog
  261.      * libavc1394
  262.      * libavc1394-devel
  263.      * libc-client
  264.      * libc-client-devel
  265.      * libcroco
  266.      * libcroco-devel
  267.      * libdbi-dbd-pgsql
  268.      * libdbi-devel
  269.      * libdv
  270.      * libdv-devel
  271.      * libdv-tools
  272.      * libexif
  273.      * libexif-devel
  274.      * libgal2-devel
  275.      * libgcrypt
  276.      * libgcrypt-devel
  277.      * libgda
  278.      * libgda-devel
  279.      * libghttp-devel
  280.      * libgnomecups
  281.      * libgnomecups-devel
  282.      * libgnomedb
  283.      * libgnomedb-devel
  284.      * libgpg-error
  285.      * libgpg-error-devel
  286.      * libgsf-devel
  287.      * libgtop2-devel
  288.      * libidn
  289.      * libidn-devel
  290.      * libieee1284
  291.      * libieee1284-devel
  292.      * libmng-static
  293.      * libmusicbrainz
  294.      * libmusicbrainz-devel
  295.      * libpng10-devel
  296.      * libraw1394-devel
  297.      * libsane-hpoj
  298.      * libselinux
  299.      * libselinux-devel
  300.      * libsepol
  301.      * libsepol-devel
  302.      * libsilc
  303.      * libsilc-devel
  304.      * libsilc-doc
  305.      * libsoup-devel
  306.      * libtabe-devel
  307.      * libtheora
  308.      * libtheora-devel
  309.      * libungif-progs
  310.      * libwmf
  311.      * libwmf-devel
  312.      * libwnck-devel
  313.      * libwvstreams-devel
  314.      * libxklavier
  315.      * libxklavier-devel
  316.      * libxml-devel
  317.      * libxslt-python
  318.      * linuxwacom
  319.      * linuxwacom-devel
  320.      * lm_sensors-devel
  321.      * lrzsz
  322.      * lvm2
  323.      * lynx
  324.      * mailman
  325.      * mc
  326.      * memtest86+
  327.      * mgetty-sendfax
  328.      * mgetty-viewfax
  329.      * mgetty-voice
  330.      * mikmod-devel
  331.      * mod_auth_kerb
  332.      * mod_dav_svn
  333.      * mod_perl-devel
  334.      * module-init-tools
  335.      * mozilla-devel
  336.      * mozilla-nspr-devel
  337.      * mozilla-nss-devel
  338.      * mtr-gtk
  339.      * mtx
  340.      * mysql-server
  341.      * nabi
  342.      * nasm
  343.      * nasm-doc
  344.      * nasm-rdoff
  345.      * nautilus-cd-burner-devel
  346.      * neon
  347.      * neon-devel
  348.      * net-snmp-libs
  349.      * net-snmp-perl
  350.      * nmap-frontend
  351.      * nss_db
  352.      * numactl
  353.      * octave-devel
  354.      * openh323-devel
  355.      * openjade-devel
  356.      * openldap-servers-sql
  357.      * openoffice.org
  358.      * openoffice.org-i18n
  359.      * openoffice.org-kde
  360.      * openoffice.org-libs
  361.      * openssl-perl
  362.      * pam_ccreds
  363.      * pam_passwdqc
  364.      * parted-devel
  365.      * pcmcia-cs
  366.      * perl-Bit-Vector
  367.      * perl-Convert-ASN1
  368.      * perl-Crypt-SSLeay
  369.      * perl-Cyrus
  370.      * perl-Date-Calc
  371.      * perl-LDAP
  372.      * perl-Net-DNS
  373.      * perl-XML-LibXML
  374.      * perl-XML-LibXML-Common
  375.      * perl-XML-NamespaceSupport
  376.      * perl-XML-SAX
  377.      * perl-suidperl
  378.      * php-devel
  379.      * php-domxml
  380.      * php-gd
  381.      * php-mbstring
  382.      * php-ncurses
  383.      * php-pear
  384.      * php-snmp
  385.      * php-xmlrpc
  386.      * planner
  387.      * pmake
  388.      * policycoreutils
  389.      * postfix-pflogsumm
  390.      * postgresql
  391.      * postgresql-contrib
  392.      * postgresql-devel
  393.      * postgresql-docs
  394.      * postgresql-jdbc
  395.      * postgresql-libs
  396.      * postgresql-pl
  397.      * postgresql-python
  398.      * postgresql-server
  399.      * postgresql-tcl
  400.      * postgresql-test
  401.      * pump-devel
  402.      * pvm-gui
  403.      * pwlib-devel
  404.      * pyorbit-devel
  405.      * pyparted
  406.      * python-docs
  407.      * python-ldap
  408.      * python-tools
  409.      * qt-ODBC
  410.      * qt-PostgreSQL
  411.      * qt-config
  412.      * quagga-contrib
  413.      * quagga-devel
  414.      * rhgb
  415.      * rhythmbox
  416.      * rpm-libs
  417.      * ruby-docs
  418.      * ruby-tcltk
  419.      * samba-swat
  420.      * selinux-doc
  421.      * selinux-policy-targeted
  422.      * selinux-policy-targeted-sources
  423.      * sendmail-devel
  424.      * sendmail-doc
  425.      * setools
  426.      * setools-gui
  427.      * sg3_utils
  428.      * shared-mime-info
  429.      * skkdic
  430.      * sound-juicer
  431.      * sox-devel
  432.      * speex
  433.      * speex-devel
  434.      * statserial
  435.      * subversion
  436.      * subversion-devel
  437.      * subversion-perl
  438.      * switchdesk
  439.      * switchdesk-gui
  440.      * synaptics
  441.      * sysfsutils
  442.      * sysfsutils-devel
  443.      * system-config-boot
  444.      * system-config-date
  445.      * system-config-display
  446.      * system-config-httpd
  447.      * system-config-keyboard
  448.      * system-config-kickstart
  449.      * system-config-language
  450.      * system-config-lvm
  451.      * system-config-mouse
  452.      * system-config-netboot
  453.      * system-config-network
  454.      * system-config-network-tui
  455.      * system-config-nfs
  456.      * system-config-packages
  457.      * system-config-printer
  458.      * system-config-printer-gui
  459.      * system-config-rootpassword
  460.      * system-config-samba
  461.      * system-config-securitylevel
  462.      * system-config-securitylevel-tui
  463.      * system-config-services
  464.      * system-config-soundcard
  465.      * system-config-users
  466.      * system-logviewer
  467.      * system-switch-im
  468.      * system-switch-mail
  469.      * system-switch-mail-gnome
  470.      * talk-server
  471.      * tcl-devel
  472.      * tcl-html
  473.      * tclx-devel
  474.      * tclx-doc
  475.      * tetex-doc
  476.      * theora-tools
  477.      * thunderbird
  478.      * tix-devel
  479.      * tix-doc
  480.      * tk-devel
  481.      * tn5250-devel
  482.      * ttfonts-bn
  483.      * ttfonts-gu
  484.      * ttfonts-hi
  485.      * ttfonts-pa
  486.      * ttfonts-ta
  487.      * udev
  488.      * unixODBC-devel
  489.      * valgrind
  490.      * valgrind-callgrind
  491.      * vim-X11
  492.      * vino
  493.      * w3c-libwww-apps
  494.      * w3c-libwww-devel
  495.      * xcdroast
  496.      * xdelta-devel
  497.      * xemacs-common
  498.      * xemacs-nox
  499.      * xemacs-sumo
  500.      * xemacs-sumo-el
  501.      * xemacs-sumo-info
  502.      * xisdnload
  503.      * xmlsec1
  504.      * xmlsec1-devel
  505.      * xmlsec1-openssl
  506.      * xmlsec1-openssl-devel
  507.      * xmms-devel
  508.      * xmms-flac
  509.      * xmms-skins
  510.      * xojpanel
  511.      * xorg-x11
  512.      * xorg-x11-Mesa-libGL
  513.      * xorg-x11-Mesa-libGLU
  514.      * xorg-x11-Xdmx
  515.      * xorg-x11-Xnest
  516.      * xorg-x11-Xvfb
  517.      * xorg-x11-deprecated-libs
  518.      * xorg-x11-deprecated-libs-devel
  519.      * xorg-x11-devel
  520.      * xorg-x11-doc
  521.      * xorg-x11-font-utils
  522.      * xorg-x11-libs
  523.      * xorg-x11-sdk
  524.      * xorg-x11-tools
  525.      * xorg-x11-twm
  526.      * xorg-x11-xauth
  527.      * xorg-x11-xdm
  528.      * xorg-x11-xfs
  529.      * xrestop
  530.      * zisofs-tools
  531.      * zsh-html

  532. Packages Removed

  533.    The following packages have been removed from CentOS 4:
  534.      * FreeWnn-common
  535.      * Wnn6-SDK
  536.      * Wnn6-SDK-devel
  537.      * XFree86
  538.      * XFree86-100dpi-fonts
  539.      * XFree86-75dpi-fonts
  540.      * XFree86-ISO8859-14-100dpi-fonts
  541.      * XFree86-ISO8859-14-75dpi-fonts
  542.      * XFree86-ISO8859-15-100dpi-fonts
  543.      * XFree86-ISO8859-15-75dpi-fonts
  544.      * XFree86-ISO8859-2-100dpi-fonts
  545.      * XFree86-ISO8859-2-75dpi-fonts
  546.      * XFree86-ISO8859-9-100dpi-fonts
  547.      * XFree86-ISO8859-9-75dpi-fonts
  548.      * XFree86-Mesa-libGL
  549.      * XFree86-Mesa-libGLU
  550.      * XFree86-Xnest
  551.      * XFree86-Xvfb
  552.      * XFree86-base-fonts
  553.      * XFree86-cyrillic-fonts
  554.      * XFree86-devel
  555.      * XFree86-doc
  556.      * XFree86-font-utils
  557.      * XFree86-libs
  558.      * XFree86-libs-data
  559.      * XFree86-syriac-fonts
  560.      * XFree86-tools
  561.      * XFree86-truetype-fonts
  562.      * XFree86-twm
  563.      * XFree86-xauth
  564.      * XFree86-xdm
  565.      * XFree86-xfs
  566.      * ami
  567.      * anaconda-images
  568.      * ant
  569.      * ant-libs
  570.      * aspell-en-ca
  571.      * aspell-en-gb
  572.      * aspell-pt_BR
  573.      * bcel
  574.      * bonobo-activation
  575.      * bonobo-activation-devel
  576.      * cipe
  577.      * commons-beanutils
  578.      * commons-collections
  579.      * commons-digester
  580.      * commons-logging
  581.      * commons-modeler
  582.      * compat-gcc
  583.      * compat-gcc-c++
  584.      * compat-glibc
  585.      * compat-libstdc++
  586.      * compat-libstdc++-devel
  587.      * compat-pwdb
  588.      * compat-slang
  589.      * cup
  590.      * dev
  591.      * devlabel
  592.      * dvdrecord
  593.      * fam
  594.      * fam-devel
  595.      * fontilus
  596.      * gcc-c++-ssa
  597.      * gcc-g77-ssa
  598.      * gcc-java-ssa
  599.      * gcc-objc-ssa
  600.      * gcc-ssa
  601.      * gdk-pixbuf-gnome
  602.      * gnome-libs
  603.      * gnome-libs-devel
  604.      * gnome-vfs2-extras
  605.      * gtkam
  606.      * gtkam-gimp
  607.      * im-sdk
  608.      * imap
  609.      * itcl
  610.      * jakarta-regexp
  611.      * jfsutils
  612.      * kde-i18n-Afrikaans
  613.      * kde-i18n-Korean
  614.      * kdoc
  615.      * kernel-source
  616.      * kinput2-canna-wnn6
  617.      * libgcc-ssa
  618.      * libgcj-ssa
  619.      * libgcj-ssa-devel
  620.      * libmrproject
  621.      * libmudflap
  622.      * libmudflap-devel
  623.      * libole2
  624.      * libole2-devel
  625.      * libstdc++-ssa
  626.      * libstdc++-ssa-devel
  627.      * linc
  628.      * linc-devel
  629.      * losetup
  630.      * lvm
  631.      * magicdev
  632.      * modutils
  633.      * modutils-devel
  634.      * mount
  635.      * mozilla-psm
  636.      * mrproject
  637.      * mx4j
  638.      * openoffice
  639.      * openoffice-i18n
  640.      * openoffice-libs
  641.      * perl-CGI
  642.      * perl-CPAN
  643.      * perl-DB_File
  644.      * perl-Net-DNS
  645.      * printman
  646.      * pspell
  647.      * pspell-devel
  648.      * python-optik
  649.      * raidtools
  650.      * rarpd
  651.      * redhat-config-bind
  652.      * redhat-config-date
  653.      * redhat-config-httpd
  654.      * redhat-config-keyboard
  655.      * redhat-config-kickstart
  656.      * redhat-config-language
  657.      * redhat-config-mouse
  658.      * redhat-config-netboot
  659.      * redhat-config-network
  660.      * redhat-config-network-tui
  661.      * redhat-config-nfs
  662.      * redhat-config-packages
  663.      * redhat-config-printer
  664.      * redhat-config-printer-gui
  665.      * redhat-config-proc
  666.      * redhat-config-rootpassword
  667.      * redhat-config-samba
  668.      * redhat-config-securitylevel
  669.      * redhat-config-securitylevel-tui
  670.      * redhat-config-services
  671.      * redhat-config-soundcard
  672.      * redhat-config-users
  673.      * redhat-config-xfree86
  674.      * redhat-java-rpm-scripts
  675.      * redhat-logviewer
  676.      * redhat-switch-mail
  677.      * redhat-switch-mail-gnome
  678.      * rh-postgresql
  679.      * rh-postgresql-contrib
  680.      * rh-postgresql-devel
  681.      * rh-postgresql-docs
  682.      * rh-postgresql-jdbc
  683.      * rh-postgresql-libs
  684.      * rh-postgresql-python
  685.      * rh-postgresql-tcl
  686.      * shapecfg
  687.      * switchdesk
  688.      * switchdesk-gnome
  689.      * switchdesk-kde
  690.      * xalan-j
  691.      * xerces-j

  692. Packages Deprecated

  693.    CentOS  seeks  to  preserve  functionality  across major releases, but
  694.    reserves the right to change the specific implementation and packaging
  695.    of components between major releases.

  696.    The  following  packages  are included in CentOS 4, but may be removed
  697.    from future releases. Developers and users are advised to migrate away
  698.    from these packages.
  699.      * 4Suite -- Only used by system-config-* tools
  700.      * FreeWnn -- IIIMF is the recommended input method
  701.      * FreeWnn-devel -- IIIMF is the recommended input method
  702.      * FreeWnn-libs -- IIIMF is the recommended input method
  703.      * alchemist -- Only used by system-config-* tools
  704.      * alchemist-devel -- Only used by system-config-* tools
  705.      * aumix -- Redundant with other volume control tools
  706.      * autoconf213 -- Backwards compatibility dev tool
  707.      * automake14 -- Backwards compatibility dev tool
  708.      * automake15 -- Backwards compatibility dev tool
  709.      * automake16 -- Backwards compatibility dev tool
  710.      * automake17 -- Backwards compatibility dev tool
  711.      * compat-db -- Backwards compatibility library
  712.      * compat-gcc-32 -- Backwards compatibility library/tool
  713.      * compat-gcc-32-c++ -- Backwards compatibility library/tool
  714.      * compat-glibc -- Backwards compatibility library/tool
  715.      * compat-libgcc-296 -- Backwards compatibility library/tool
  716.      * compat-libstdc++-296 -- Backwards compatibility library/tool
  717.      * compat-libstdc++-33 -- Backwards compatibility library/tool
  718.      * compat-openldap -- Backwards compatibility library/tool
  719.      * dbskkd-cdb -- IIIMF is the recommended input method
  720.      * dev86 -- Required only for lilo
  721.      * dietlibc -- Only supported for installer use
  722.      * eog -- Integrated support in Nautilus
  723.      * gftp -- Integrated FTP in Firefox and Nautilus
  724.      * gnome-libs -- Replaced by libgnome
  725.      * imlib -- Replaced by gdk-pixbuf
  726.      * imlib-devel -- Replaced by gdk-pixbuf
  727.      * kinput2 -- IIIMF is the recommended input method
  728.      * libghttp -- Deprecated library
  729.      * libghttp-devel -- Deprecated library
  730.      * lilo -- Replaced by grub
  731.      * mikmod -- Deprecated sound format
  732.      * mikmod-devel -- Deprecated sound format
  733.      * miniChinput -- IIIMF is the recommended input method
  734.      * mozilla -- Replaced by Firefox/Thunderbird/Evolution
  735.      * mozilla-chat -- Replaced by Firefox/Thunderbird/Evolution
  736.      * mozilla-devel -- Replaced by Firefox/Thunderbird/Evolution
  737.      * mozilla-dom-inspector -- Replaced by Firefox/Thunderbird/Evolution
  738.      * mozilla-js-debugger -- Replaced by Firefox/Thunderbird/Evolution
  739.      * mozilla-mail -- Replaced by Firefox/Thunderbird/Evolution
  740.      * mozilla-nspr -- Replaced by Firefox/Thunderbird/Evolution
  741.      * mozilla-nspr-devel -- Replaced by Firefox/Thunderbird/Evolution
  742.      * mozilla-nss -- Replaced by Firefox/Thunderbird/Evolution
  743.      * mozilla-nss-devel -- Replaced by Firefox/Thunderbird/Evolution
  744.      * nabi -- IIIMF is the recommended input method
  745.      * newt-perl -- Only required by crypto-utils
  746.      * openmotif21 -- Backwards compatibility library
  747.      * openssl096b -- Backwards compatibility library
  748.      * skkdic -- IIIMF is the recommended input method
  749.      * skkinput -- IIIMF is the recommended input method
  750.      * xcin -- IIIMF is the recommended input method
  751.      * xmms -- Replaced by rhythmbox, Helix Player
  752.      * xmms-devel -- Replaced by rhythmbox, Helix Player
  753.      * xmms-flac -- Replaced by rhythmbox, Helix Player
  754.      * xmms-skins -- Replaced by rhythmbox, Helix Player

  755.    ( x86 )
复制代码
回复 支持 反对

使用道具 举报

发表于 2005-5-15 01:52:17 | 显示全部楼层
mplayer.c:0: error: CPU you selected does not support x86-64 instruction set
mplayer.c:0: error: CPU you selected does not support x86-64 instruction set
mencoder.c:0: error: CPU you selected does not support x86-64 instruction set
mencoder.c:0: error: CPU you selected does not support x86-64 instruction set
mplayer.c:0: error: CPU you selected does not support x86-64 instruction set
mplayer.c:0: error: CPU you selected does not support x86-64 instruction set
mp_msg.c:0: error: CPU you selected does not support x86-64 instruction set
mp_msg.c:0: error: CPU you selected does not support x86-64 instruction set
cpudetect.c:0: error: CPU you selected does not support x86-64 instruction set
cpudetect.c:0: error: CPU you selected does not support x86-64 instruction set
codec-cfg.c:0: error: CPU you selected does not support x86-64 instruction set
codec-cfg.c:0: error: CPU you selected does not support x86-64 instruction set
spudec.c:0: error: CPU you selected does not support x86-64 instruction set
spudec.c:0: error: CPU you selected does not support x86-64 instruction set
playtree.c:0: error: CPU you selected does not support x86-64 instruction set
playtree.c:0: error: CPU you selected does not support x86-64 instruction set
playtreeparser.c:0: error: CPU you selected does not support x86-64 instruction set
playtreeparser.c:0: error: CPU you selected does not support x86-64 instruction set
asxparser.c:0: error: CPU you selected does not support x86-64 instruction set
asxparser.c:0: error: CPU you selected does not support x86-64 instruction set
vobsub.c:0: error: CPU you selected does not support x86-64 instruction set
vobsub.c:0: error: CPU you selected does not support x86-64 instruction set
subreader.c:0: error: CPU you selected does not support x86-64 instruction set
subreader.c:0: error: CPU you selected does not support x86-64 instruction set
sub_cc.c:0: error: CPU you selected does not support x86-64 instruction set
sub_cc.c:0: error: CPU you selected does not support x86-64 instruction set
find_sub.c:0: error: CPU you selected does not support x86-64 instruction set
find_sub.c:0: error: CPU you selected does not support x86-64 instruction set
m_config.c:0: error: CPU you selected does not support x86-64 instruction set
m_config.c:0: error: CPU you selected does not support x86-64 instruction set
m_option.c:0: error: CPU you selected does not support x86-64 instruction set
m_option.c:0: error: CPU you selected does not support x86-64 instruction set
parser-cfg.c:0: error: CPU you selected does not support x86-64 instruction set
parser-cfg.c:0: error: CPU you selected does not support x86-64 instruction set
m_struct.c:0: error: CPU you selected does not support x86-64 instruction set
m_struct.c:0: error: CPU you selected does not support x86-64 instruction set
edl.c:0: error: CPU you selected does not support x86-64 instruction set
edl.c:0: error: CPU you selected does not support x86-64 instruction set
unrarlib.c:0: error: CPU you selected does not support x86-64 instruction set
unrarlib.c:0: error: CPU you selected does not support x86-64 instruction set
mixer.c:0: error: CPU you selected does not support x86-64 instruction set
mixer.c:0: error: CPU you selected does not support x86-64 instruction set
parser-mpcmd.c:0: error: CPU you selected does not support x86-64 instruction set
parser-mpcmd.c:0: error: CPU you selected does not support x86-64 instruction set
subopt-helper.c:0: error: CPU you selected does not support x86-64 instruction set
subopt-helper.c:0: error: CPU you selected does not support x86-64 instruction set
mencoder.c:0: error: CPU you selected does not support x86-64 instruction set
mencoder.c:0: error: CPU you selected does not support x86-64 instruction set
mp_msg-mencoder.c:0: error: CPU you selected does not support x86-64 instruction set
mp_msg-mencoder.c:0: error: CPU you selected does not support x86-64 instruction set
cpudetect.c:0: error: CPU you selected does not support x86-64 instruction set
cpudetect.c:0: error: CPU you selected does not support x86-64 instruction set
codec-cfg.c:0: error: CPU you selected does not support x86-64 instruction set
codec-cfg.c:0: error: CPU you selected does not support x86-64 instruction set
spudec.c:0: error: CPU you selected does not support x86-64 instruction set
spudec.c:0: error: CPU you selected does not support x86-64 instruction set
playtree.c:0: error: CPU you selected does not support x86-64 instruction set
playtree.c:0: error: CPU you selected does not support x86-64 instruction set
playtreeparser.c:0: error: CPU you selected does not support x86-64 instruction set
playtreeparser.c:0: error: CPU you selected does not support x86-64 instruction set
asxparser.c:0: error: CPU you selected does not support x86-64 instruction set
asxparser.c:0: error: CPU you selected does not support x86-64 instruction set
vobsub.c:0: error: CPU you selected does not support x86-64 instruction set
vobsub.c:0: error: CPU you selected does not support x86-64 instruction set
subreader.c:0: error: CPU you selected does not support x86-64 instruction set
subreader.c:0: error: CPU you selected does not support x86-64 instruction set
sub_cc.c:0: error: CPU you selected does not support x86-64 instruction set
sub_cc.c:0: error: CPU you selected does not support x86-64 instruction set
find_sub.c:0: error: CPU you selected does not support x86-64 instruction set
find_sub.c:0: error: CPU you selected does not support x86-64 instruction set
m_config.c:0: error: CPU you selected does not support x86-64 instruction set
m_config.c:0: error: CPU you selected does not support x86-64 instruction set
m_option.c:0: error: CPU you selected does not support x86-64 instruction set
m_option.c:0: error: CPU you selected does not support x86-64 instruction set
parser-cfg.c:0: error: CPU you selected does not support x86-64 instruction set
parser-cfg.c:0: error: CPU you selected does not support x86-64 instruction set
m_struct.c:0: error: CPU you selected does not support x86-64 instruction set
m_struct.c:0: error: CPU you selected does not support x86-64 instruction set
edl.c:0: error: CPU you selected does not support x86-64 instruction set
edl.c:0: error: CPU you selected does not support x86-64 instruction set
unrarlib.c:0: error: CPU you selected does not support x86-64 instruction set
unrarlib.c:0: error: CPU you selected does not support x86-64 instruction set
divx4_vbr.c:0: error: CPU you selected does not support x86-64 instruction set
divx4_vbr.c:0: error: CPU you selected does not support x86-64 instruction set
libvo/aclib.c:0: error: CPU you selected does not support x86-64 instruction set
libvo/aclib.c:0: error: CPU you selected does not support x86-64 instruction set
libvo/osd.c:0: error: CPU you selected does not support x86-64 instruction set
libvo/osd.c:0: error: CPU you selected does not support x86-64 instruction set
libvo/sub.c:0: error: CPU you selected does not support x86-64 instruction set
libvo/sub.c:0: error: CPU you selected does not support x86-64 instruction set
libvo/font_load.c:0: error: CPU you selected does not support x86-64 instruction set
libvo/font_load.c:0: error: CPU you selected does not support x86-64 instruction set
libvo/font_load_ft.c:0: error: CPU you selected does not support x86-64 instruction set
libvo/font_load_ft.c:0: error: CPU you selected does not support x86-64 instruction set
xvid_vbr.c:0: error: CPU you selected does not support x86-64 instruction set
xvid_vbr.c:0: error: CPU you selected does not support x86-64 instruction set
parser-mecmd.c:0: error: CPU you selected does not support x86-64 instruction set
parser-mecmd.c:0: error: CPU you selected does not support x86-64 instruction set
make[1]: *** [depend] Error 1
make[1]: Leaving directory `/root/mplayer/MPlayer-1.0pre7'
make: *** [version.h] 错误 2
[root@tom-tse MPlayer-1.0pre7]#
回复 支持 反对

使用道具 举报

发表于 2005-5-15 09:45:00 | 显示全部楼层
make 通不过!
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-5-15 13:07:17 | 显示全部楼层
Post by 2001xk
make 通不过!

呵呵,要在64位环境运行32位的软件的当然行不通了
电脑总归是电脑,不像人脑复杂,除非能模拟32位环境,不知道你的cpu是intel还是amd的
看看这里吧
http://news.chinabyte.com/385/1665885.shtml
http://www.yesky.com/Hardware/72 ... 617/1708289_1.shtml
回复 支持 反对

使用道具 举报

发表于 2005-5-21 14:25:41 | 显示全部楼层
Post by legaiathanks
呵呵,要在64位环境运行32位的软件的当然行不通了
电脑总归是电脑,不像人脑复杂,除非能模拟32位环境,不知道你的cpu是intel还是amd的
看看这里吧
http://news.chinabyte.com/385/1665885.shtml
http://www.yesky.com/Hardware/72 ... 617/1708289_1.shtml

我的是AMD3000+,怎样才能make?我装的是cen t o s 4.0fo r 64_X86版.
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

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