|
|
发表于 2004-12-28 16:32:30
|
显示全部楼层
module cig_module is built-in and can't be loaded
系统提示该模块已经内建,不能load
你可以运行httpd -l 查看
如果想编绎成动态dso,"--enable-mods-shared=all
我的是这样的
- #! /bin/sh
- #
- # Created by configure
- CC="gcc-3.2"; export CC
- CFLAGS="-O2 -march=pentium3 -fomit-frame-pointer -ffast-math -finline-functions -pipe"; export CFLAGS
- "./configure" \
- "--with-maintainer-mode" \
- "--enable-layout=dato" \ 注释注意在源码目录下查找类似layout的文件,可以在里面定义你的apache的相应安装目录
- "--enable-so" \
- "--with-mpm=threadpool" \
- "--enable-mods-shared=all" \
- "--enable-alisa=shared" \
- "--enable-deflate=shared" \
- "--enable-file-cache=shared" \
- "--enable-proxy=shared" \
- "--enable-proxy-connect=shared" \
- "--enable-proxy-ftp=shared" \
- "--enable-proxy-http=shared" \
- "--enable-ssl=shared" \
- "--disable-charset-lite" \
- "--disable-disk-cache" \
- "--disable-mem-cache" \
- "--disable-cache" \
- "--disable-case-filter" \
- "--disable-case-filter-in" \
- "--disable-example" \
- "--with-z" \
- "EAPI_MM=../mm-1.3.0" \
- "$@"
复制代码 |
|