README.MACOSX
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. README.MACOSX: how to install Kannel on MacOS X
  2. Author: Andreas Fink (afink@global-networks.ch)
  3. To get Kannel to run on MacOS X you have to install libxml
  4. as for any version of Kannel. For some reason the current
  5. version of libxml (2.4.23) doesnt compile on MacOS X 10.1.5. The reason
  6. is a linking error. You can get around this bug by either
  7. use a older version of libxml (2.3.9 for example) or to build it
  8. as static library without the dynamic one being built.
  9. I've done this in the following way:
  10. libxml 2.4.23
  11. --------------
  12. in the libxml directory do:
  13. ./configure --prefix=/usr  --without-iconv   --with-threads --enable-static --disable-shared
  14. make
  15. make install
  16. If you run MySQL together with Kannel you might find the following helpful:
  17. MySQL 3.23.51:
  18. ---------------
  19. ./configure --prefix=/usr --enable-thread-safe-client --with-raid --enable-largefile
  20. make
  21. make install
  22. Now you can configure kannel in the usual way which is in my case:
  23. ./configure --disable-docs  --with-malloc=native --enable-start-stop-daemon --with-mysql=/usr --with-dlr=mysql  --enable-mysql
  24. This should get you going with Kannel on MacOS X.