From bd4044a9cfe3030efac7a8855f2e71c2eaafcf5e Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Thu, 3 May 2012 19:52:36 +0000 Subject: [PATCH] main: add support for --cflags-only-I and --cflags-only-other --- main.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/main.c b/main.c index 2ea9672..dff8983 100644 --- a/main.c +++ b/main.c @@ -36,6 +36,9 @@ /* we are compatible with 0.26 of pkg-config */ #define PKGCONFIG_VERSION_EQUIV "0.26" +#define WANT_CFLAGS_ONLY_I (19) +#define WANT_CFLAGS_ONLY_OTHER (20) + static unsigned int global_traverse_flags = PKGF_NONE; static int want_help = 0; @@ -95,7 +98,14 @@ print_cflags(pkg_t *pkg, void *unused) pkg_fragment_t *frag; foreach_list_entry(pkg->cflags, frag) + { + if (want_cflags == WANT_CFLAGS_ONLY_I && frag->type != 'I') + continue; + else if (want_cflags == WANT_CFLAGS_ONLY_OTHER && frag->type == 'I') + continue; + print_fragment(frag); + } } } @@ -366,6 +376,8 @@ usage(void) printf(" --variable=varname print specified variable entry to stdout\n"); printf(" --cflags print required CFLAGS to stdout\n"); + printf(" --cflags-only-I print required include-dir CFLAGS to stdout\n"); + printf(" --cflags-only-other print required non-include-dir CFLAGS to stdout\n"); printf(" --libs print required linker flags to stdout\n"); printf(" --print-requires print required dependency frameworks to stdout\n"); printf(" --print-requires-private print required dependency frameworks for static\n"); @@ -402,6 +414,8 @@ main(int argc, char *argv[]) { "help", no_argument, &want_help, 16, }, { "env-only", no_argument, &want_env_only, 17, }, { "print-requires-private", no_argument, &want_requires_private, 18, }, + { "cflags-only-I", no_argument, &want_cflags, WANT_CFLAGS_ONLY_I, }, + { "cflags-only-other", no_argument, &want_cflags, WANT_CFLAGS_ONLY_OTHER, }, { NULL, 0, NULL, 0 } };