X-Git-Url: http://git.annexia.org/?p=whenjobs.git;a=blobdiff_plain;f=configure.ac;h=b4853f640c9de013e56f7fa7c808e3c46735c31b;hp=2b90666daa7886b7f481b1629fd0fcd72da0752f;hb=5c7aa66dbdb32b4fc11d0f72a4cc028c7bfb1b55;hpb=61cad7bbaf63389b520b695eefdd735bc11a8aa6 diff --git a/configure.ac b/configure.ac index 2b90666..b4853f6 100644 --- a/configure.ac +++ b/configure.ac @@ -15,9 +15,13 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -AC_INIT([whenjobs],0.0.1) +AC_INIT([whenjobs],0.0.2) AM_INIT_AUTOMAKE([foreign]) +dnl Only used temporarily while whenjobs.spec is contained in the +dnl tarball. We will remove this later. +AC_SUBST([RPM_RELEASE],[1]) + AC_CONFIG_MACRO_DIR([m4]) dnl Allow all GNU/Linux functions. @@ -86,12 +90,12 @@ fi dnl OCaml ocamlnet RPC library + dependencies (version 3) is required. AC_CHECK_OCAML_PKG(rpc) -if test "x$OCAML_PKG_rpc" = "xno"; then +if test "x$OCAML_PKG_rpc" = "x"; then AC_MSG_ERROR([You must install OCaml ocamlnet library version 3]) fi AC_CHECK_PROG(OCAMLRPCGEN,ocamlrpcgen,ocamlrpcgen) -if test "x$OCAMLRPCGEN" = "xno"; then +if test "x$OCAMLRPCGEN" = "x"; then AC_MSG_ERROR([You must install the ocamlrpcgen program]) fi @@ -106,6 +110,7 @@ AC_CONFIG_FILES([Makefile daemon/Makefile lib/config.ml lib/Makefile + tests/jobs/Makefile tests/parsing/Makefile tools/Makefile whenjobs.spec])