added UML modeler to autotools

This commit is contained in:
Martin Willi
2007-08-08 14:03:55 +00:00
parent 7b7201bee6
commit f2d6355eaa
4 changed files with 550 additions and 76 deletions
+7 -5
View File
@@ -247,17 +247,18 @@ if test "$http" = "true"; then
AC_HAVE_LIBRARY([curl],[LIBS="$LIBS"],[AC_MSG_ERROR([HTTP enabled, but library curl not found])])
fi
if test "$xml" = "true"; then
PKG_CHECK_MODULES(xml, libxml-2.0,, AC_MSG_ERROR([No libxml2 package information found]))
AC_SUBST(xml_CFLAGS)
AC_SUBST(xml_LIBS)
fi
if test "$dbus" = "true"; then
PKG_CHECK_MODULES(dbus, dbus-1,, AC_MSG_ERROR([No libdbus package information found]))
AC_SUBST(dbus_CFLAGS)
AC_SUBST(dbus_LIBS)
fi
if test "$xml" = "true"; then
PKG_CHECK_MODULES(xml, libxml-2.0,, AC_MSG_ERROR([No libxml2 package information found]))
AC_SUBST(xml_CFLAGS)
AC_SUBST(xml_LIBS)
fi
dnl =============================
dnl check required header files
@@ -311,4 +312,5 @@ AC_OUTPUT(
src/_copyright/Makefile
src/openac/Makefile
src/scepclient/Makefile
src/dumm/Makefile
)