OpenWrt packages
Sign in or create your account | Project List | Help
OpenWrt packages Git Source Tree
Root/
| 1 | From 48f75a95a05d778509381783da1b44d1049c65e1 Mon Sep 17 00:00:00 2001 |
| 2 | From: Joshua Judson Rosen <rozzin@geekspace.com> |
| 3 | Date: Wed, 27 Apr 2011 00:23:29 -0400 |
| 4 | Subject: [PATCH 08/17] Check for pkg-config and other key programs first. |
| 5 | Otherwise, checks that *use* them may fail mysteriously. |
| 6 | |
| 7 | --- |
| 8 | configure.ac | 10 +++++----- |
| 9 | 1 files changed, 5 insertions(+), 5 deletions(-) |
| 10 | |
| 11 | diff --git a/configure.ac b/configure.ac |
| 12 | index ad72ece..cd90750 100644 |
| 13 | --- a/configure.ac |
| 14 | +++ b/configure.ac |
| 15 | @@ -7,6 +7,11 @@ AC_CONFIG_SRCDIR([gjay.h]) |
| 16 | AC_CONFIG_HEADERS([config.h]) |
| 17 | AM_INIT_AUTOMAKE([1.10]) |
| 18 | |
| 19 | +# Checks for programs. |
| 20 | +AC_PROG_CC |
| 21 | +AC_PROG_INSTALL |
| 22 | +PKG_PROG_PKG_CONFIG |
| 23 | + |
| 24 | dnl Options |
| 25 | # Don't require D-Bus unless building a component that needs it: |
| 26 | enable_dbus=no |
| 27 | @@ -33,11 +38,6 @@ if test "$enable_audclient" = "yes"; then |
| 28 | PKG_CHECK_MODULES([AUDACIOUS], [audacious]) |
| 29 | fi |
| 30 | |
| 31 | -# Checks for programs. |
| 32 | -AC_PROG_CC |
| 33 | -AC_PROG_INSTALL |
| 34 | -PKG_PROG_PKG_CONFIG |
| 35 | - |
| 36 | dnl Check for language stuff |
| 37 | AM_GNU_GETTEXT([external]) |
| 38 | AM_GNU_GETTEXT_VERSION([0.18.1]) |
| 39 | -- |
| 40 | 1.7.2.5 |
| 41 | |
| 42 |
