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