| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 AC_INIT([cashew], [0.0.1], [chromium-os-dev@chromium.org]) | 5 AC_INIT([cashew], [0.0.1], [chromium-os-dev@chromium.org]) |
| 6 AM_INIT_AUTOMAKE([-Wall -Werror foreign]) | 6 AM_INIT_AUTOMAKE([-Wall -Werror foreign]) |
| 7 AC_PROG_CXX | 7 AC_PROG_CXX |
| 8 PKG_CHECK_MODULES([DBUS_CPP], [dbus-c++-1]) | 8 PKG_CHECK_MODULES([DBUS_CPP], [dbus-c++-1]) |
| 9 # TODO(vlaviano): check for gflags | 9 # TODO(vlaviano): check for gflags |
| 10 PKG_CHECK_MODULES([GLOG], [libglog]) | 10 PKG_CHECK_MODULES([GLOG], [libglog]) |
| 11 AC_CONFIG_HEADERS([config.h]) | 11 AC_CONFIG_HEADERS([config.h]) |
| 12 AC_CONFIG_FILES([ | 12 AC_CONFIG_FILES([ |
| 13 Makefile | 13 Makefile |
| 14 extrospection/Makefile |
| 14 introspection/Makefile | 15 introspection/Makefile |
| 15 src/Makefile | 16 src/Makefile |
| 16 ]) | 17 ]) |
| 17 AC_OUTPUT | 18 AC_OUTPUT |
| OLD | NEW |