apply gcov
[platform/core/uifw/libtdm.git] / configure.ac
index 40a3816..26ba06d 100644 (file)
@@ -1,7 +1,7 @@
 AC_PREREQ([2.60])
 
 m4_define([tdm_major_version],  [1])
-m4_define([tdm_minor_version],  [7])
+m4_define([tdm_minor_version],  [11])
 m4_define([tdm_micro_version],  [0])
 m4_define([tdm_version],
           [tdm_major_version.tdm_minor_version.tdm_micro_version])
@@ -31,11 +31,11 @@ LT_INIT([disable-static])
 # Enable quiet compiles on automake 1.11.
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
-AC_ARG_WITH(utest, AS_HELP_STRING([--with-utest=yes/no], [whether build/run unit tests or not]),
-                               [ utest="$withval" ],
-                               [ utest="no" ])
+AC_ARG_WITH(utests, AS_HELP_STRING([--with-utests=yes/no], [whether build/run unit tests or not]),
+                               [ utests="$withval" ],
+                               [ utests="no" ])
 
-AM_CONDITIONAL(HAVE_UTEST, test "x$utest" = "xyes")
+AM_CONDITIONAL(HAVE_UTEST, test "x$utests" = "xyes")
 
 AC_PATH_PROG([wayland_scanner], [wayland-scanner])
 if test x$wayland_scanner = x; then
@@ -64,7 +64,7 @@ AC_SUBST(TDM_LIBS)
 AC_SUBST(TDM_CLIENT_CFLAGS)
 AC_SUBST(TDM_CLIENT_LIBS)
 
-# set the dir for the tbm module
+# set the dir for the tdm module
 DEFAULT_TDM_MODULE_PATH="${libdir}/tdm"
 AC_ARG_WITH(tdm-module-path, AS_HELP_STRING([--with-tdm-module-path=PATH], [tdm module dir]),
                                [ TDM_MODULE_PATH="$withval" ],
@@ -95,7 +95,7 @@ AC_OUTPUT([
        client/libtdm-client.pc
        client/Makefile
        tools/Makefile
-       ut/Makefile])
+       utests/Makefile])
 
 echo ""
 echo "$PACKAGE_STRING will be compiled with:"