pkgconf/main.c

113 lines
2.6 KiB
C
Raw Normal View History

/*
* main.c
* main() routine, printer functions
*
* Copyright (c) 2011 William Pitcock <nenolod@dereferenced.org>.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <popt.h>
#include "pkg.h"
static int want_cflags = 0;
static int want_libs = 0;
static void
print_cflags(pkg_t *pkg, void *unused)
{
if (pkg->cflags != NULL)
printf("%s ", pkg->cflags);
}
static void
print_libs(pkg_t *pkg, void *unused)
{
if (pkg->libs != NULL)
printf("%s ", pkg->libs);
}
int
handle_package(const char *package)
{
pkg_t *pkg;
pkg = pkg_find(package);
if (pkg)
{
int wanted_something = 0;
if (want_cflags)
{
wanted_something++;
pkg_traverse(pkg, print_cflags, NULL);
}
if (want_libs)
{
wanted_something++;
pkg_traverse(pkg, print_libs, NULL);
}
if (wanted_something)
printf("\n");
}
else
{
fprintf(stderr, "dependency '%s' could not be satisfied, see PKG_CONFIG_PATH.\n", package);
return -1;
}
}
int
main(int argc, const char *argv[])
{
int ret;
poptContext opt_context;
struct poptOption options[] = {
{ "libs", 0, POPT_ARG_NONE, &want_libs, 0, "output all linker flags" },
{ "cflags", 0, POPT_ARG_NONE, &want_cflags, 0, "output all compiler flags" },
POPT_AUTOHELP
{ NULL, 0, 0, NULL, 0 }
};
opt_context = poptGetContext(NULL, argc, argv, options, 0);
ret = poptGetNextOpt(opt_context);
if (ret != -1)
{
fprintf(stderr, "%s: %s\n",
poptBadOption(opt_context, POPT_BADOPTION_NOALIAS),
poptStrerror(ret));
return EXIT_FAILURE;
}
while (1)
{
const char *package = poptGetArg(opt_context);
if (package == NULL)
break;
handle_package(package);
}
poptFreeContext(opt_context);
return EXIT_SUCCESS;
}