summaryrefslogtreecommitdiffstats
path: root/m4/ac_prog_ecpg.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/ac_prog_ecpg.m4')
-rw-r--r--m4/ac_prog_ecpg.m430
1 files changed, 30 insertions, 0 deletions
diff --git a/m4/ac_prog_ecpg.m4 b/m4/ac_prog_ecpg.m4
new file mode 100644
index 0000000..b1025a9
--- /dev/null
+++ b/m4/ac_prog_ecpg.m4
@@ -0,0 +1,30 @@
+dnl @synopsis AC_PROG_ECPG
+dnl
+dnl Finds e precompiler for PostgreSQL embedded code.
+dnl
+dnl @category PostgreSQL
+dnl @author Sorin Stancu-Mara <smsorin@gmail.com>
+dnl @version 2009-02-22
+dnl @license GPLWithACException
+
+AC_DEFUN([AC_PROG_ECPG],
+[
+ AC_ARG_WITH([ecpg],
+ [AS_HELP_STRING([--with-ecpg=PATH],
+ [path to ecpg])],
+ [
+ ECPG="$withval"
+ ],
+ [with_ecpg=check])
+ if test "x$with_ecpg" = xcheck; then
+ AC_PATH_PROG([ECPG], [ecpg], [])
+ fi
+
+ if test ! -x "$ECPG"; then
+ AC_MSG_ERROR([Unable to find ecpg or it's an executable file.])
+ fi
+
+ AC_SUBST([ECPG])
+
+])
+