Fix functions missing return values
[platform/upstream/at-spi2-core.git] / configure.ac
index 2381de7..a6fc649 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([at-spi2-core], [0.1.6], [accessibility-atspi@lists.linux-foundation.org])
+AC_INIT([at-spi2-core], [0.3.2], [accessibility-atspi@lists.linux-foundation.org])
 AC_CONFIG_AUX_DIR(config)
 AC_CONFIG_MACRO_DIR([m4])
 
@@ -128,11 +128,14 @@ AC_SUBST(DBUS_SERVICES_DIR)
 
 AC_SUBST(LIBTOOL_EXPORT_OPTIONS)
 
+AC_ARG_ENABLE(relocate, [  --enable-relocate  Relocate to coexist with CORBA [default=no]], enable_relocate="$enableval", enable_relocate=no)
+if test x$enable_relocate = xyes ; then
+       AC_DEFINE(RELOCATE, , [Relocate to coexist with CORBA])
+fi
+AM_CONDITIONAL(RELOCATE, test x$enable_relocate = xyes)
+
 AC_CONFIG_FILES([Makefile
                 xml/Makefile
-                tools/Makefile
-                bus/Makefile
-                bus/at-spi-dbus-bus
                 registryd/Makefile])
 
 AC_OUTPUT