summaryrefslogtreecommitdiff
path: root/m4/libpq.m4
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-25 17:28:38 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-25 17:28:38 +0300
commitd9f372d7b1bc1abbff5fdf9735118290cd024d5e (patch)
tree49bc3160ea184e19cd5cb6a7404dee42311c0fd7 /m4/libpq.m4
parent55e14d8f9697adeeb05fcd23cf8f19c33452bb56 (diff)
Turn libodb-pgsql repository into package for muti-package repositorylibodb-pgsql
Diffstat (limited to 'm4/libpq.m4')
-rw-r--r--m4/libpq.m483
1 files changed, 0 insertions, 83 deletions
diff --git a/m4/libpq.m4 b/m4/libpq.m4
deleted file mode 100644
index a29ae2d..0000000
--- a/m4/libpq.m4
+++ /dev/null
@@ -1,83 +0,0 @@
-dnl file : m4/libpq.m4
-dnl license : GNU GPL v2; see accompanying LICENSE file
-dnl
-dnl LIBPQ([ACTION-IF-FOUND[,
-dnl ACTION-IF-NOT-FOUND]])
-dnl
-dnl
-AC_DEFUN([LIBPQ], [
-libpq_found=no
-
-AC_PATH_PROG([pg_config],[pg_config])
-
-AC_MSG_CHECKING([for libpq])
-
-# Check for libpq using default CPPFLAGS/LDFLAGS.
-#
-save_LIBS="$LIBS"
-LIBS="-lpq $LIBS"
-
-CXX_LIBTOOL_LINK_IFELSE([
-AC_LANG_SOURCE([
-#include <libpq-fe.h>
-
-int
-main ()
-{
- PGconn* conn = PQconnectdb ("");
- char* dbname = PQdb (conn);
- PQfinish (conn);
- return 0;
-}
-])],
-[
-libpq_found=yes
-])
-
-if test x"$libpq_found" = xno; then
-
- # If default CPPFLAGS/LDFLAGS didn't work, try to discover
- # them using pg_config.
- #
- if test x"$libpq_found" = xno; then
-
- if test x"$pg_config" != x; then
- save_CPPFLAGS="$CPPFLAGS"
-
- CPPFLAGS=-I`$pg_config --includedir`
- CPPFLAGS="$CPPFLAGS $save_CPPFLAGS"
-
- CXX_LIBTOOL_LINK_IFELSE([
-AC_LANG_SOURCE([
-#include <libpq-fe.h>
-
-int
-main ()
-{
- PGconn* conn = PQconnectdb ("");
- char* dbname = PQdb (conn);
- PQfinish (conn);
- return 0;
-}
-])],
-[
-libpq_found=yes
-])
-
- if test x"$libpq_found" = xno; then
- CPPFLAGS="$save_CPPFLAGS"
- fi
-
- fi
- fi
-fi
-
-if test x"$libpq_found" = xyes; then
- AC_MSG_RESULT([yes])
- $1
-else
- LIBS="$save_LIBS"
- AC_MSG_RESULT([no])
- $2
-fi
-])dnl