projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a36968
)
configure.in: Check for libpq for function `PQserverVersion'.
author
Doug MacEachern
<dougm@hyperic.com>
Thu, 1 Jan 2009 17:33:42 +0000
(09:33 -0800)
committer
Florian Forster
<octo@leeloo.lan.home.verplant.org>
Wed, 8 Apr 2009 14:45:15 +0000
(16:45 +0200)
It does not exist in 7.x.
Signed-off-by: Doug MacEachern <dougm@hyperic.com>
Signed-off-by: Florian Forster <octo@huhu.verplant.org>
configure.in
patch
|
blob
|
history
diff --git
a/configure.in
b/configure.in
index
4d47a9f
..
719f94e
100644
(file)
--- a/
configure.in
+++ b/
configure.in
@@
-2243,6
+2243,10
@@
then
[with_libpq="yes"],
[with_libpq="no (symbol 'PQconnectdb' not found)"])
+ AC_CHECK_LIB(pq, PQserverVersion,
+ [with_libpq="yes"],
+ [with_libpq="no (symbol 'PQserverVersion' not found)"])
+
LDFLAGS="$SAVE_LDFLAGS"
fi
if test "x$with_libpq" = "xyes"