Commit a1ff6036cf310a4b6399382b6af0a207402435a2

brlcad 2010-09-28T19:08:38

check for gsed in addition to sed

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/configure.ac b/configure.ac
index 007e581..4c62497 100644
--- a/configure.ac
+++ b/configure.ac
@@ -87,7 +87,7 @@ AC_PATH_PROG(KPSEWHICH, kpsewhich, no)
 AC_PATH_PROG(DVIPS, dvips, no)
 AC_PATH_PROG(CONVERT, convert, no)
 AC_PATH_PROG(EPSTOPDF, epstopdf, no)
-AC_PATH_TOOL(SED, sed, no)
+AC_PATH_PROGS(SED, gsed sed, no)
 if test "${DVIPS}" = "no" -o "${KPSEWHICH}" = "no" -o "${EPSTOPDF}" = "no" \
      -o "${CONVERT}" = "no" -o "${SED}" = "no"; then
   LATEX="no"