Archive for July 13th, 2010

php webdav模块安装

/root/soft/phpmodel/dav/dav.c:21:23: error: ne_socket.h: No such file or directory
/root/soft/phpmodel/dav/dav.c:22:24: error: ne_session.h: No such file or directory
/root/soft/phpmodel/dav/dav.c:23:22: error: ne_utils.h: No such file or directory
/root/soft/phpmodel/dav/dav.c:24:21: error: ne_auth.h: No such file or directory
/root/soft/phpmodel/dav/dav.c:25:22: error: ne_basic.h: No such file or directory
/root/soft/phpmodel/dav/dav.c:26:20: error: ne_207.h: No such file or directory

http://www.webdav.org/neon/

需要这个lib

No Comments

libmemcached 安装报错 解决

clients/ms_conn.o: In function `ms_get_udp_request_id’:
/root/soft/phpmodel/libmemcached-0.42/clients/ms_conn.c:194: undefined reference to `__sync_fetch_and_add_4′
clients/ms_conn.o: In function `ms_reconn_socks’:
/root/soft/phpmodel/libmemcached-0.42/clients/ms_conn.c:1051: undefined reference to `__sync_fetch_and_add_4′
clients/ms_conn.o: In function `ms_reconn’:
/root/soft/phpmodel/libmemcached-0.42/clients/ms_conn.c:919: undefined reference to `__sync_fetch_and_add_4′
/root/soft/phpmodel/libmemcached-0.42/clients/ms_conn.c:956: undefined reference to `__sync_fetch_and_add_4′
clients/ms_thread.o: In function `ms_setup_thread’:
/root/soft/phpmodel/libmemcached-0.42/clients/ms_thread.c:225: undefined reference to `__sync_fetch_and_add_4′
clients/ms_thread.o:/root/soft/phpmodel/libmemcached-0.42/clients/ms_thread.c:208: more undefined references to `__sync_fetch_and_add_4′ follow
collect2: ld returned 1 exit status
make[2]: *** [clients/memslap] Error 1
make[2]: Leaving directory `/root/soft/phpmodel/libmemcached-0.42′
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/soft/phpmodel/libmemcached-0.42′
make: *** [all] Error 2

用这个语句

./configure -disable-64bit CFLAGS=”-O3 -march=i686″

就可以了

No Comments