~connman-maintainers/connman/head

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Marcel Holtmann
  • Date: 2008-08-12 23:13:59 UTC
  • Revision ID: git-v1:e3a4699f34f751d47d8fd8e5a488e4b95343732f
Add copy of libgdbus helper for easier adoption

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
AC_SUBST(GMODULE_CFLAGS)
60
60
AC_SUBST(GMODULE_LIBS)
61
61
 
62
 
PKG_CHECK_MODULES(GDBUS, gdbus, dummy=yes,
63
 
                                AC_MSG_ERROR(libgdbus is required))
64
 
AC_SUBST(GDBUS_CFLAGS)
65
 
AC_SUBST(GDBUS_LIBS)
66
 
 
67
62
PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0, dummy=yes,
68
63
                                AC_MSG_ERROR(libdbus is required))
69
64
AC_SUBST(DBUS_CFLAGS)
70
65
AC_SUBST(DBUS_LIBS)
71
66
 
 
67
AC_SUBST([GDBUS_CFLAGS], ['$(DBUS_CFLAGS) -I$(top_srcdir)/gdbus'])
 
68
AC_SUBST([GDBUS_LIBS], ['$(top_builddir)/gdbus/libgdbus.a $(DBUS_LIBS)'])
 
69
 
72
70
PKG_CHECK_MODULES(HAL, hal >= 0.5.8, hal_found=yes, hal_found=no)
73
71
AC_SUBST(HAL_CFLAGS)
74
72
AC_SUBST(HAL_LIBS)
83
81
AC_SUBST(SQLITE_CFLAGS)
84
82
AC_SUBST(SQLITE_LIBS)
85
83
 
86
 
AC_OUTPUT(Makefile include/Makefile src/Makefile doc/Makefile
87
 
                        test/Makefile plugins/Makefile scripts/Makefile
88
 
                        scripts/connman src/connman.service connman.pc)
 
84
AC_OUTPUT(Makefile gdbus/Makefile include/Makefile src/Makefile doc/Makefile
 
85
                                test/Makefile plugins/Makefile scripts/Makefile
 
86
                                scripts/connman src/connman.service connman.pc)