成功编译 apache 2.2.12 

有人一定觉得奇怪,apache 现在的最高版本才是2.2.11,怎么我就编译了2.2.12呢 呵呵

其实这是dev版,不过很快就要正式了。

下面是我的./configure

[root@linuxserver usr]# ./configure --prefix=/usr/local/apache --enable-modules="all" --enable-charset-lite --enable-proxy --enable-ssl --enable-http --enable-dav --enable-info --enable-cgi --enable-cgid --enable-dav-fs --enable-dav-lock --enable-vhost-alias --enable-rewrite --enable-so --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util

过程中基本没有什么难度,就是 apr(Apache Portable Runtime Util)让我郁闷了一下,不过安装一下就可以通过了.

本来是打算安装mod_dav-1.0.3-1.3.6.tar.gz的,不过无论是
./configure --with-apxs=/usr/local/apache/bin/apxs
还是
./configure --with-apache=/usr/local/apache
都报
the APXS installation may be broken
这个错.

让我去http://www.webdav.org/mod_dav/install.html找原因.
索性不装了,好在发现apache集成了这个,呵呵
[ ] ( 4071 次浏览 ) 永久链接 ( 3 / 2464 )
成功编译 mplayer 1.0 rc2 

本来我的mplayer是用ubuntu-tweak安装的,最近突然想要自己编译安装,于是就动手了。

我的configure:
./configure --prefix=/usr/local/mplayer --enable-gui --enable-largefiles --enable-linux-devfs --enable-radio --enable-radio-capture --enable-xvmc --enable-dynamic-plugins --disable-ivtv

缺什么lib就apt-get 一下.

make的时候如果出现
undefined reference to `video_out_ivtv' collect2: ld returned 1 exit status
的时候,
解决方法是 找到源代码文件夹下的libvo文件夹里的video_out.c 文件,找到

extern vo_functions_t video_out_dxr3; 这行

改写成
#ifdef HAVE_DXR3
extern vo_functions_t video_out_dxr3;
#endif
即可通过编译.
[ ] ( 2640 次浏览 ) 永久链接 ( 3 / 2913 )
编译通过 VLC media player 1.0.0 Goldeneye 正式版 

前几天刚编译好vlc 1.0.0 rc4,昨天又发布正式版

于是又赶紧跟上了

$ ./configure prefix=/usr/local/vlc --enable-debug --enable-release --enable-switcher --enable-dc1394 --enable-dv --enable-dvdread --enable-opencv --enable-v4l --enable-pvr --enable-gnomevfs --enable-cddax --enable-vcdx --enable-id3tag --enable-real --enable-realrtsp

本来想加上--enable-mozilla --with-mozilla-sdk-path=/usr/include/seamonkey 以安装firefox 插件的,不过由于种种问题,不得不放弃...

## --------- ##
## Platform. ##
## --------- ##

hostname = sharljimhtsin-laptop
uname -m = i686
uname -r = 2.6.28-11-generic
uname -s = Linux
uname -v = #42-Ubuntu SMP Fri Apr 17 01:57:59 UTC 2009

不过vlc 看dvd还是不错的,最近在看仙剑三,哈哈





关于 vlc 截图


[ ] ( 3583 次浏览 ) 永久链接 ( 3 / 2974 )
成功编译dosbox 0.73 哈哈 

终于把我心爱的dosbox 从win移植到linux啦 哈哈
不过第一次编译的确有点麻烦,但是仙剑的快乐是无与伦比的






[ ] ( 2485 次浏览 ) 永久链接 ( 3 / 2837 )
成功编译videolan... 

天哪,终于把这个世界上最恶心的软件也编译好了,不然我真的要疯掉了
[ ] ( 5494 次浏览 ) 永久链接 ( 3 / 2772 )

<< <上一页 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 下一页> >>