Ad Widget

Collapse

Compile zabbix1.8.2 for OS X

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bimonitor
    Junior Member
    • Oct 2007
    • 13

    #1

    Compile zabbix1.8.2 for OS X

    Just getting this out for google.
    ----
    OS: OS X Server 10.6 (probably does not matter though)
    Problem: Cannot compile zabbix 1.8.2 server for OS X Server 10.6.
    Error during config:
    configure: error: Not found mysqlclient library

    Fix configure:
    CPPFLAGS=-I/usr/local/mysql/include/ LDFLAGS=-L/usr/local/mysql/lib/ ./configure --enable-server --with-mysql
    Do this to make
    CPPFLAGS=-I/usr/local/mysql/include/ LDFLAGS=-L/usr/local/mysql/lib/ make
  • nleaman
    Member
    • May 2010
    • 35

    #2
    Mac OS X Server v10.6: MySQL libraries available for download

    Also found this helpful:



    I was able to "install" the MySQL libraries by doing the following:

    Code:
    curl -O http://www.opensource.apple.com/other/MySQL-49.binaries.tar.gz
    sudo tar -xzvf MySQL-49.binaries.tar.gz -C /

    Comment

    Working...