diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-09-19 19:16:56 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-09-19 19:16:56 +0000 |
| commit | cdbd7ad98536f2215d9fcd94c9e85ce597165b98 (patch) | |
| tree | b19309b230860323b8e35a12eeca35b820971f78 | |
| parent | ba05275408d8bab8f887f1c9d7e20a071e13c35a (diff) | |
look for sed
| -rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index d1f2cc82..3df4eade 100644 --- a/configure.ac +++ b/configure.ac @@ -66,6 +66,11 @@ AC_CHECK_HEADERS(unistd.h sys/stat.h sys/select.h sys/time.h sys/wait.h) # AC_HEADER_TIME # AC_TYPE_SIGNAL +AC_PATH_PROG([SED], [sed], [no]) +if test "$SED" = "no"; then + AC_MSG_ERROR([The program "sed" is not avaiable. This program is required to build Openbox.]) +fi + PKG_CHECK_MODULES([GLIB], [glib-2.0]) AC_SUBST(GLIB_CFLAGS) AC_SUBST(GLIB_LIBS) |
