I'm not the first person who has had to do this, so perhaps this thread will be a good place to keep track of edits people have made to get Zabbix 1.8 to compile.
My version of Solaris 10 had a Sun version of libiconv.h in /usr/include. It also had the much more extensive GNU version in /usr/local/include. I had to edit the configure script to force it to see the GNU version (it failed otherwise):
Edit configure:
Change:
to:
My version of Solaris 10 had a Sun version of libiconv.h in /usr/include. It also had the much more extensive GNU version in /usr/local/include. I had to edit the configure script to force it to see the GNU version (it failed otherwise):
Edit configure:
Change:
Code:
if test -f /usr/include/iconv.h; then
found_iconv="yes"
elif test -f /usr/local/include/iconv.h; then
Code:
# if test -f /usr/include/iconv.h; then
# found_iconv="yes"
# elif test -f /usr/local/include/iconv.h; then
if test -f /usr/local/include/iconv.h; then
Comment