URI:
       tAdded fatal test for needed programsp - tomb - the crypto undertaker
  HTML git clone git://parazyd.org/tomb.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 8592a325d353c0addb7d2a5630df549c55d48108
   DIR parent 1e1e4b2d708bb4ca4b61a0a58433c42bc58d8404
  HTML Author: Anathema <anathema@anche.no>
       Date:   Wed, 30 Mar 2011 21:24:35 +0200
       
       Added fatal test for needed programsp
       
       Diffstat:
         M configure.ac                        |      19 ++++++++++++++++++-
       
       1 file changed, 18 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/configure.ac b/configure.ac
       t@@ -67,11 +67,28 @@ AC_PROG_CC
        AC_PROG_INSTALL
        
        AC_CHECK_PROG(have_zsh,zsh,yes,no)
       +if test "x$have_zsh" = "xno"; then
       +        AC_MSG_ERROR([*** zsh required!])
       +fi
        AC_CHECK_PROG(have_cryptsetup,cryptsetup,yes,no)
       +if test "x$have_cryptosetup" = "xno"; then
       +        AC_MSG_ERROR([*** cryptosetup required!])
       +fi
       +AC_CHECK_PROG(have_pinentry,pinentry,yes,no)
       +if test "x$have_pinentry" = "xno"; then
       +        AC_MSG_ERROR([*** pinentry required!])
       +fi
        AC_CHECK_PROG(have_wipe,wipe,yes,no)
        AC_CHECK_PROG(have_dcfldd,dcfldd,yes,no)
       -AC_CHECK_PROG(have_gksu,gksu,yes,no)
        AC_CHECK_PROG(have_sudo,sudo,yes,no)
       +if test "x$have_sudo" = "xno"; then
       +        AC_MSG_ERROR([*** sudo required!])
       +fi
       +
       +AC_CHECK_PROG(have_bc,bc,yes,no)
       +if test "x$have_bc" = "xno"; then
       +        AC_MSG_ERROR([*** bc required!])
       +fi
        
        PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.16], :,
          AC_MSG_ERROR([*** Gtk+2 >=2.16 development files not found!]))