X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=configure.ac;h=0711aa09f9fb4e0eebc5bc773e69825f50ac147f;hb=refs%2Fheads%2Fv0.0.2;hp=526dca99f6d375ba34a70d944ac45a0470a99c7f;hpb=796ae3c2d3d27ea0ce5dbd72e29e4fe5f87d7966;p=ptask.git diff --git a/configure.ac b/configure.ac index 526dca9..0711aa0 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.64]) -AC_INIT([gtask], [0.0.x],[jeanfi@gmail.com],[gtask],[http://wpitchoune.net/gtask]) +AC_INIT([ptask], [0.0.2],[jeanfi@gmail.com],[ptask],[http://wpitchoune.net/ptask]) AM_INIT_AUTOMAKE([-Wall -Werror gnu]) @@ -42,11 +42,7 @@ AC_SUBST(GTK_LIBS) # Check JSON JSON_LIBS= -PKG_CHECK_MODULES(JSON, - json, - [AC_DEFINE([HAVE_JSON],[1],[Use JSON])], - [AC_MSG_WARN("Remote monitoring disabled, json missing")]) -AM_CONDITIONAL(JSON, test -n "$JSON_LIBS") +PKG_CHECK_MODULES(JSON, json) AC_SUBST(JSON_CFLAGS) AC_SUBST(JSON_LIBS) @@ -54,6 +50,7 @@ AC_CONFIG_FILES([ Makefile po/Makefile.in src/Makefile + src/glade/Makefile tests/Makefile ])