summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-03-28 09:35:59 +0000
committeralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-03-28 09:35:59 +0000
commit7e7cdb72a4e85d415de549356de9719af7c640af (patch)
treee90bfeb9c06d139253580fc7e0856d37f5138d83
parentf3b3606443c9eee64c510f7a45cb44a3910e7479 (diff)
- removed unnecessary dependencies fron autoconf script (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@3946 97f52cf1-0a1b-0410-bd0e-c28be96e8082
-rw-r--r--ChangeLog1
-rw-r--r--configure.in3
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e79a0cbd..77c44db0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
Changes for 1.3.5:
+ - removed unnecessary dependencies fron autoconf script (Alexei)
- added generation of service up/down events (Alexei)
- fixed '--with-ldap' compilation (Eugene)
- added popup menu for quick hosts controlling in configuration screen (Eugene)
diff --git a/configure.in b/configure.in
index edab163d..10495e5c 100644
--- a/configure.in
+++ b/configure.in
@@ -571,7 +571,8 @@ if test "$server" = "yes"; then
have_db="PostgreSQL"
dnl To avoid linking of crypt with the agent
- AC_CHECK_FUNC(crypt, , AC_CHECK_LIB(crypt, crypt, POSTGRESQL_LDFLAGS="-lcrypt $POSTGRESQL_LDFLAGS"))
+ dnl It seems PostgreSQL does not require this
+ dnl AC_CHECK_FUNC(crypt, , AC_CHECK_LIB(crypt, crypt, POSTGRESQL_LDFLAGS="-lcrypt $POSTGRESQL_LDFLAGS"))
else
AC_MSG_ERROR([Not found PostgreSQL library]);
fi