summaryrefslogtreecommitdiffstats
path: root/m4/ac_prog_ecpg.m4
diff options
context:
space:
mode:
authorConstantin Jucovschi <cj@ubuntu.localdomain>2009-04-24 07:20:22 -0400
committerConstantin Jucovschi <cj@ubuntu.localdomain>2009-04-24 07:20:22 -0400
commit8f27e65bddd7d4b8515ce620fb485fdd78fcdf89 (patch)
treebd328a4dd4f92d32202241b5e3a7f36177792c5f /m4/ac_prog_ecpg.m4
downloadrasdaman-upstream-8f27e65bddd7d4b8515ce620fb485fdd78fcdf89.tar.gz
rasdaman-upstream-8f27e65bddd7d4b8515ce620fb485fdd78fcdf89.tar.xz
rasdaman-upstream-8f27e65bddd7d4b8515ce620fb485fdd78fcdf89.zip
Initial commitv8.0
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])
+
+])
+