README.aix
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:1k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. Some notes for the AIX port
  2. ===========================
  3. 1. Compiling
  4. ------------
  5. It's been reported that the applications segfault on AIX. The cause seems to
  6. be that AIX has a libsnmp and a libcrypto which may get in the way when you
  7. try to use shared libraries. So, the fix is to disable shared libraries:
  8.    ./configure --disable-shared
  9. There is also a quoting problem on AIX, so  you will need to fix the quotes
  10. in include/net-snmp/net-snmp-config.h after running configure. For example,
  11. change
  12.   #define CONFIGURE_OPTIONS ""'--disable-shared'""
  13. to
  14.   #define CONFIGURE_OPTIONS "'--disable-shared'"
  15. Please note that the "host" module doesn't compile on AIX, so you *can't*
  16. configure with "--with-mib-modules=host".
  17. 2. Feedback
  18. -----------
  19. Please also see README and PORTING.
  20. If you have questions, additional insights or (even better) patches regarding
  21. net-snmp on AIX, please refer to the net-snmp mailing lists (see
  22. http://www.net-snmp.org/lists).