2011-07-25 04:46:10 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
2012-07-20 19:29:58 +00:00
|
|
|
* This software is provided 'as is' and without any warranty, express or
|
|
|
|
* implied. In no event shall the authors be liable for any damages arising
|
|
|
|
* from the use of this software.
|
2011-07-25 04:46:10 +00:00
|
|
|
*/
|
|
|
|
|
2012-04-30 18:50:31 +00:00
|
|
|
#include "config.h"
|
2011-07-25 04:46:10 +00:00
|
|
|
#include "pkg.h"
|
2012-07-20 18:46:14 +00:00
|
|
|
#include "bsdstubs.h"
|
2012-04-30 18:50:31 +00:00
|
|
|
|
2012-05-03 19:52:36 +00:00
|
|
|
#define WANT_CFLAGS_ONLY_I (19)
|
|
|
|
#define WANT_CFLAGS_ONLY_OTHER (20)
|
|
|
|
|
2012-05-03 20:21:57 +00:00
|
|
|
#define WANT_LIBS_ONLY_LDPATH (21)
|
|
|
|
#define WANT_LIBS_ONLY_LIBNAME (22)
|
|
|
|
#define WANT_LIBS_ONLY_OTHER (23)
|
|
|
|
|
2012-05-02 23:11:19 +00:00
|
|
|
static unsigned int global_traverse_flags = PKGF_NONE;
|
|
|
|
|
2012-05-01 01:10:56 +00:00
|
|
|
static int want_help = 0;
|
2011-07-25 05:26:55 +00:00
|
|
|
static int want_version = 0;
|
2011-07-25 05:06:37 +00:00
|
|
|
static int want_cflags = 0;
|
|
|
|
static int want_libs = 0;
|
2011-07-25 05:21:54 +00:00
|
|
|
static int want_modversion = 0;
|
2011-07-26 23:44:28 +00:00
|
|
|
static int want_static = 0;
|
2011-07-27 00:59:53 +00:00
|
|
|
static int want_requires = 0;
|
2012-05-03 00:55:52 +00:00
|
|
|
static int want_requires_private = 0;
|
2011-07-27 01:04:09 +00:00
|
|
|
static int want_variables = 0;
|
2011-07-27 01:37:19 +00:00
|
|
|
static int want_digraph = 0;
|
2012-05-02 23:19:50 +00:00
|
|
|
static int want_env_only = 0;
|
2012-05-06 04:10:05 +00:00
|
|
|
static int want_uninstalled = 0;
|
2012-05-07 00:49:50 +00:00
|
|
|
static int want_no_uninstalled = 0;
|
2012-05-07 00:56:19 +00:00
|
|
|
static int want_keep_system_cflags = 0;
|
|
|
|
static int want_keep_system_libs = 0;
|
2012-05-12 01:54:37 +00:00
|
|
|
static int want_ignore_conflicts = 0;
|
2012-05-06 02:46:20 +00:00
|
|
|
static int maximum_traverse_depth = -1;
|
2011-07-25 04:54:39 +00:00
|
|
|
|
2011-07-25 05:36:57 +00:00
|
|
|
static char *required_pkgconfig_version = NULL;
|
2012-05-07 08:26:17 +00:00
|
|
|
static char *required_exact_module_version = NULL;
|
|
|
|
static char *required_max_module_version = NULL;
|
2011-07-26 23:47:42 +00:00
|
|
|
static char *required_module_version = NULL;
|
2011-07-25 23:17:28 +00:00
|
|
|
static char *want_variable = NULL;
|
2012-05-07 08:45:24 +00:00
|
|
|
static char *sysroot_dir = NULL;
|
2011-07-25 05:36:57 +00:00
|
|
|
|
2012-07-02 02:21:31 +00:00
|
|
|
FILE *error_msgout = NULL;
|
|
|
|
|
2012-05-03 19:44:44 +00:00
|
|
|
static bool
|
|
|
|
fragment_has_system_dir(pkg_fragment_t *frag)
|
|
|
|
{
|
|
|
|
switch (frag->type)
|
|
|
|
{
|
|
|
|
case 'L':
|
2012-05-07 00:56:19 +00:00
|
|
|
if (!want_keep_system_libs && !strcasecmp(LIBDIR, frag->data))
|
2012-05-03 19:44:44 +00:00
|
|
|
return true;
|
|
|
|
case 'I':
|
2012-05-07 00:56:19 +00:00
|
|
|
if (!want_keep_system_cflags && !strcasecmp(INCLUDEDIR, frag->data))
|
2012-05-03 19:44:44 +00:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-05-07 08:45:24 +00:00
|
|
|
static inline const char *
|
|
|
|
print_sysroot_dir(pkg_fragment_t *frag)
|
|
|
|
{
|
|
|
|
if (sysroot_dir == NULL)
|
|
|
|
return "";
|
|
|
|
else switch (frag->type)
|
|
|
|
{
|
|
|
|
case 'L':
|
|
|
|
case 'I':
|
|
|
|
return sysroot_dir;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2012-05-03 19:36:47 +00:00
|
|
|
static void
|
|
|
|
print_fragment(pkg_fragment_t *frag)
|
|
|
|
{
|
2012-05-03 19:44:44 +00:00
|
|
|
if (fragment_has_system_dir(frag))
|
|
|
|
return;
|
|
|
|
|
2012-05-03 19:36:47 +00:00
|
|
|
if (frag->type)
|
2012-05-07 08:45:24 +00:00
|
|
|
printf("-%c%s%s ", frag->type, print_sysroot_dir(frag), frag->data);
|
2012-05-03 19:36:47 +00:00
|
|
|
else
|
|
|
|
printf("%s ", frag->data);
|
|
|
|
}
|
|
|
|
|
2012-05-03 20:37:24 +00:00
|
|
|
static void
|
|
|
|
print_cflags(pkg_fragment_t *list)
|
|
|
|
{
|
|
|
|
pkg_fragment_t *frag;
|
2012-05-03 19:52:36 +00:00
|
|
|
|
2012-05-07 03:55:00 +00:00
|
|
|
PKG_FOREACH_LIST_ENTRY(list, frag)
|
2012-05-03 20:37:24 +00:00
|
|
|
{
|
|
|
|
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);
|
2012-05-03 19:36:47 +00:00
|
|
|
}
|
2011-07-25 04:46:10 +00:00
|
|
|
}
|
|
|
|
|
2012-05-03 20:37:24 +00:00
|
|
|
static void
|
|
|
|
print_libs(pkg_fragment_t *list)
|
|
|
|
{
|
|
|
|
pkg_fragment_t *frag;
|
2012-05-03 19:36:47 +00:00
|
|
|
|
2012-05-07 03:55:00 +00:00
|
|
|
PKG_FOREACH_LIST_ENTRY(list, frag)
|
2012-05-03 20:37:24 +00:00
|
|
|
{
|
|
|
|
if (want_libs == WANT_LIBS_ONLY_LDPATH && frag->type != 'L')
|
|
|
|
continue;
|
|
|
|
else if (want_libs == WANT_LIBS_ONLY_LIBNAME && frag->type != 'l')
|
|
|
|
continue;
|
|
|
|
else if (want_libs == WANT_LIBS_ONLY_OTHER && (frag->type == 'l' || frag->type == 'L'))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
print_fragment(frag);
|
2012-05-03 19:36:47 +00:00
|
|
|
}
|
2011-07-25 04:46:10 +00:00
|
|
|
}
|
|
|
|
|
2011-07-25 06:03:35 +00:00
|
|
|
static void
|
2012-05-12 01:02:23 +00:00
|
|
|
print_modversion(pkg_t *pkg, void *unused, unsigned int flags)
|
2011-07-25 06:03:35 +00:00
|
|
|
{
|
2012-05-03 17:21:41 +00:00
|
|
|
(void) unused;
|
2012-05-12 01:02:23 +00:00
|
|
|
(void) flags;
|
2012-05-03 17:21:41 +00:00
|
|
|
|
2011-07-25 06:03:35 +00:00
|
|
|
if (pkg->version != NULL)
|
|
|
|
printf("%s\n", pkg->version);
|
|
|
|
}
|
|
|
|
|
2011-07-25 23:17:28 +00:00
|
|
|
static void
|
2012-05-12 01:02:23 +00:00
|
|
|
print_variable(pkg_t *pkg, void *unused, unsigned int flags)
|
2011-07-25 23:17:28 +00:00
|
|
|
{
|
2012-05-07 01:13:54 +00:00
|
|
|
const char *var;
|
2012-05-03 17:21:41 +00:00
|
|
|
(void) unused;
|
2012-05-12 01:02:23 +00:00
|
|
|
(void) flags;
|
2011-07-25 23:17:28 +00:00
|
|
|
|
2012-05-07 01:13:54 +00:00
|
|
|
var = pkg_tuple_find(pkg->vars, want_variable);
|
|
|
|
if (var != NULL)
|
2012-05-05 22:08:06 +00:00
|
|
|
printf("%s", var);
|
2011-07-25 23:17:28 +00:00
|
|
|
}
|
|
|
|
|
2011-07-27 01:04:09 +00:00
|
|
|
static void
|
2012-05-12 01:02:23 +00:00
|
|
|
print_variables(pkg_t *pkg, void *unused, unsigned int flags)
|
2011-07-27 01:04:09 +00:00
|
|
|
{
|
|
|
|
pkg_tuple_t *node;
|
2012-05-03 17:21:41 +00:00
|
|
|
(void) unused;
|
2012-05-12 01:02:23 +00:00
|
|
|
(void) flags;
|
2011-07-27 01:04:09 +00:00
|
|
|
|
2012-05-07 03:55:00 +00:00
|
|
|
PKG_FOREACH_LIST_ENTRY(pkg->vars, node)
|
2011-07-27 01:04:09 +00:00
|
|
|
printf("%s\n", node->key);
|
|
|
|
}
|
|
|
|
|
2011-07-27 00:59:53 +00:00
|
|
|
static void
|
2012-05-12 01:02:23 +00:00
|
|
|
print_requires(pkg_t *pkg)
|
2011-07-27 00:59:53 +00:00
|
|
|
{
|
|
|
|
pkg_dependency_t *node;
|
|
|
|
|
2012-05-07 03:55:00 +00:00
|
|
|
PKG_FOREACH_LIST_ENTRY(pkg->requires, node)
|
2011-07-27 00:59:53 +00:00
|
|
|
{
|
|
|
|
printf("%s", node->package);
|
|
|
|
|
|
|
|
if (node->version != NULL)
|
|
|
|
printf(" %s %s", pkg_get_comparator(node), node->version);
|
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-03 00:55:52 +00:00
|
|
|
static void
|
2012-05-12 01:02:23 +00:00
|
|
|
print_requires_private(pkg_t *pkg)
|
2012-05-03 00:55:52 +00:00
|
|
|
{
|
|
|
|
pkg_dependency_t *node;
|
|
|
|
|
2012-05-07 03:55:00 +00:00
|
|
|
PKG_FOREACH_LIST_ENTRY(pkg->requires_private, node)
|
2012-05-03 00:55:52 +00:00
|
|
|
{
|
|
|
|
printf("%s", node->package);
|
|
|
|
|
|
|
|
if (node->version != NULL)
|
|
|
|
printf(" %s %s", pkg_get_comparator(node), node->version);
|
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-27 01:37:19 +00:00
|
|
|
static void
|
2012-05-12 01:02:23 +00:00
|
|
|
print_digraph_node(pkg_t *pkg, void *unused, unsigned int flags)
|
2011-07-27 01:37:19 +00:00
|
|
|
{
|
|
|
|
pkg_dependency_t *node;
|
2012-05-03 17:21:41 +00:00
|
|
|
(void) unused;
|
2012-05-12 01:02:23 +00:00
|
|
|
(void) flags;
|
2011-07-27 01:37:19 +00:00
|
|
|
|
|
|
|
printf("\"%s\" [fontname=Sans fontsize=8]\n", pkg->id);
|
|
|
|
|
2012-05-07 03:55:00 +00:00
|
|
|
PKG_FOREACH_LIST_ENTRY(pkg->requires, node)
|
2011-07-27 01:37:19 +00:00
|
|
|
{
|
|
|
|
printf("\"%s\" -- \"%s\" [fontname=Sans fontsize=8]\n", node->package, pkg->id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-06 04:10:05 +00:00
|
|
|
static void
|
2012-05-12 01:02:23 +00:00
|
|
|
check_uninstalled(pkg_t *pkg, void *data, unsigned int flags)
|
2012-05-06 04:10:05 +00:00
|
|
|
{
|
2012-05-12 01:02:23 +00:00
|
|
|
int *retval = data;
|
|
|
|
(void) flags;
|
2012-05-06 04:10:05 +00:00
|
|
|
|
|
|
|
if (pkg->uninstalled)
|
2012-05-07 02:22:40 +00:00
|
|
|
*retval = EXIT_SUCCESS;
|
2012-05-06 04:10:05 +00:00
|
|
|
}
|
|
|
|
|
2011-07-25 05:19:55 +00:00
|
|
|
typedef struct pkg_queue_ {
|
|
|
|
struct pkg_queue_ *prev, *next;
|
2012-05-07 02:12:16 +00:00
|
|
|
char *package;
|
2011-07-25 05:19:55 +00:00
|
|
|
} pkg_queue_t;
|
|
|
|
|
|
|
|
static pkg_queue_t *
|
|
|
|
pkg_queue_push(pkg_queue_t *parent, const char *package)
|
|
|
|
{
|
|
|
|
pkg_queue_t *pkgq = calloc(sizeof(pkg_queue_t), 1);
|
|
|
|
|
2012-05-06 02:39:37 +00:00
|
|
|
pkgq->package = strdup(package);
|
2011-07-25 05:19:55 +00:00
|
|
|
pkgq->prev = parent;
|
|
|
|
if (pkgq->prev != NULL)
|
|
|
|
pkgq->prev->next = pkgq;
|
|
|
|
|
|
|
|
return pkgq;
|
|
|
|
}
|
|
|
|
|
2011-07-25 04:46:10 +00:00
|
|
|
int
|
2011-07-25 05:19:55 +00:00
|
|
|
pkg_queue_walk(pkg_queue_t *head)
|
2011-07-25 04:46:10 +00:00
|
|
|
{
|
2012-05-07 02:22:40 +00:00
|
|
|
int retval = EXIT_SUCCESS;
|
2011-07-25 05:19:55 +00:00
|
|
|
int wanted_something = 0;
|
2012-05-07 02:12:16 +00:00
|
|
|
pkg_queue_t *pkgq, *next_pkgq;
|
2011-07-25 06:03:35 +00:00
|
|
|
pkg_t world = (pkg_t){
|
2012-05-06 03:00:32 +00:00
|
|
|
.id = "world",
|
|
|
|
.realname = "virtual",
|
2012-05-07 02:08:47 +00:00
|
|
|
.flags = PKG_PROPF_VIRTUAL,
|
2011-07-25 06:03:35 +00:00
|
|
|
};
|
2011-07-25 04:46:10 +00:00
|
|
|
|
2011-07-25 06:22:04 +00:00
|
|
|
/* if maximum_traverse_depth is one, then we will not traverse deeper
|
|
|
|
* than our virtual package.
|
|
|
|
*/
|
|
|
|
if (!maximum_traverse_depth)
|
|
|
|
maximum_traverse_depth = -1;
|
2011-07-25 06:48:40 +00:00
|
|
|
else if (maximum_traverse_depth > 0)
|
2011-07-25 06:22:04 +00:00
|
|
|
maximum_traverse_depth++;
|
|
|
|
|
2012-05-07 03:55:00 +00:00
|
|
|
PKG_FOREACH_LIST_ENTRY_SAFE(head, next_pkgq, pkgq)
|
2011-07-25 04:46:10 +00:00
|
|
|
{
|
2011-07-25 21:53:12 +00:00
|
|
|
pkg_dependency_t *pkgdep;
|
|
|
|
|
2012-05-07 03:23:05 +00:00
|
|
|
pkgdep = pkg_dependency_parse(&world, pkgq->package);
|
2012-07-21 01:04:11 +00:00
|
|
|
if (pkgdep != NULL)
|
|
|
|
world.requires = pkg_dependency_append(world.requires, pkgdep);
|
|
|
|
else
|
|
|
|
retval = EXIT_FAILURE;
|
2012-05-07 02:12:16 +00:00
|
|
|
|
|
|
|
free(pkgq->package);
|
|
|
|
free(pkgq);
|
2011-07-25 06:03:35 +00:00
|
|
|
}
|
|
|
|
|
2012-07-21 01:04:11 +00:00
|
|
|
/* we couldn't build the entire depgraph, so bail. */
|
|
|
|
if (retval != EXIT_SUCCESS)
|
|
|
|
goto out;
|
|
|
|
|
2011-07-25 22:44:05 +00:00
|
|
|
/* we should verify that the graph is complete before attempting to compute cflags etc. */
|
2012-05-07 02:42:33 +00:00
|
|
|
if (pkg_verify_graph(&world, maximum_traverse_depth, global_traverse_flags) != PKG_ERRF_OK)
|
|
|
|
{
|
|
|
|
retval = EXIT_FAILURE;
|
|
|
|
goto out;
|
|
|
|
}
|
2011-07-25 22:44:05 +00:00
|
|
|
|
2012-05-06 04:10:05 +00:00
|
|
|
if (want_uninstalled)
|
|
|
|
{
|
2012-05-07 02:22:40 +00:00
|
|
|
retval = 1;
|
|
|
|
|
2012-05-06 04:10:05 +00:00
|
|
|
wanted_something = 0;
|
2012-05-07 02:22:40 +00:00
|
|
|
pkg_traverse(&world, check_uninstalled, &retval, maximum_traverse_depth, global_traverse_flags);
|
2012-05-07 02:31:20 +00:00
|
|
|
|
|
|
|
goto out;
|
2012-05-06 04:10:05 +00:00
|
|
|
}
|
|
|
|
|
2011-07-27 01:37:19 +00:00
|
|
|
if (want_digraph)
|
|
|
|
{
|
|
|
|
printf("graph deptree {\n");
|
|
|
|
printf("edge [color=blue len=7.5 fontname=Sans fontsize=8]\n");
|
|
|
|
printf("node [fontname=Sans fontsize=8]\n");
|
|
|
|
|
2012-05-02 23:11:19 +00:00
|
|
|
pkg_traverse(&world, print_digraph_node, NULL, maximum_traverse_depth, global_traverse_flags);
|
2011-07-27 01:37:19 +00:00
|
|
|
|
|
|
|
printf("}\n");
|
|
|
|
|
2012-05-07 02:31:20 +00:00
|
|
|
goto out;
|
2011-07-27 01:37:19 +00:00
|
|
|
}
|
|
|
|
|
2011-07-25 06:03:35 +00:00
|
|
|
if (want_modversion)
|
|
|
|
{
|
|
|
|
wanted_something = 0;
|
|
|
|
want_cflags = 0;
|
|
|
|
want_libs = 0;
|
|
|
|
|
2012-05-06 01:52:17 +00:00
|
|
|
pkg_traverse(&world, print_modversion, NULL, 2, global_traverse_flags);
|
2012-05-07 02:31:20 +00:00
|
|
|
|
|
|
|
goto out;
|
2011-07-25 06:03:35 +00:00
|
|
|
}
|
|
|
|
|
2011-07-27 01:04:09 +00:00
|
|
|
if (want_variables)
|
|
|
|
{
|
|
|
|
wanted_something = 0;
|
|
|
|
want_cflags = 0;
|
|
|
|
want_libs = 0;
|
|
|
|
|
2012-05-06 01:52:17 +00:00
|
|
|
pkg_traverse(&world, print_variables, NULL, 2, global_traverse_flags);
|
2012-05-07 02:31:20 +00:00
|
|
|
|
|
|
|
goto out;
|
2011-07-27 01:04:09 +00:00
|
|
|
}
|
|
|
|
|
2011-07-27 00:59:53 +00:00
|
|
|
if (want_requires)
|
|
|
|
{
|
|
|
|
pkg_dependency_t *iter;
|
|
|
|
|
|
|
|
wanted_something = 0;
|
|
|
|
want_cflags = 0;
|
|
|
|
want_libs = 0;
|
|
|
|
|
2012-05-07 03:55:00 +00:00
|
|
|
PKG_FOREACH_LIST_ENTRY(world.requires, iter)
|
2011-07-27 00:59:53 +00:00
|
|
|
{
|
|
|
|
pkg_t *pkg;
|
|
|
|
|
2012-05-03 17:42:04 +00:00
|
|
|
pkg = pkg_verify_dependency(iter, global_traverse_flags, NULL);
|
2012-05-12 01:02:23 +00:00
|
|
|
print_requires(pkg);
|
2012-05-07 02:31:20 +00:00
|
|
|
|
|
|
|
pkg_free(pkg);
|
2011-07-27 00:59:53 +00:00
|
|
|
}
|
2012-05-07 02:31:20 +00:00
|
|
|
|
|
|
|
goto out;
|
2011-07-27 00:59:53 +00:00
|
|
|
}
|
|
|
|
|
2012-05-03 00:55:52 +00:00
|
|
|
if (want_requires_private)
|
|
|
|
{
|
|
|
|
pkg_dependency_t *iter;
|
|
|
|
|
|
|
|
wanted_something = 0;
|
|
|
|
want_cflags = 0;
|
|
|
|
want_libs = 0;
|
|
|
|
|
2012-05-07 03:55:00 +00:00
|
|
|
PKG_FOREACH_LIST_ENTRY(world.requires, iter)
|
2012-05-03 00:55:52 +00:00
|
|
|
{
|
|
|
|
pkg_t *pkg;
|
|
|
|
|
2012-05-03 17:42:04 +00:00
|
|
|
pkg = pkg_verify_dependency(iter, global_traverse_flags | PKGF_SEARCH_PRIVATE, NULL);
|
2012-05-12 01:02:23 +00:00
|
|
|
print_requires_private(pkg);
|
2012-05-07 02:31:20 +00:00
|
|
|
|
|
|
|
pkg_free(pkg);
|
2012-05-03 00:55:52 +00:00
|
|
|
}
|
2012-05-07 02:31:20 +00:00
|
|
|
|
|
|
|
goto out;
|
2012-05-03 00:55:52 +00:00
|
|
|
}
|
|
|
|
|
2011-07-25 06:03:35 +00:00
|
|
|
if (want_cflags)
|
|
|
|
{
|
2012-05-12 01:13:47 +00:00
|
|
|
pkg_fragment_t *list;
|
2012-05-03 20:37:24 +00:00
|
|
|
|
2011-07-25 06:03:35 +00:00
|
|
|
wanted_something++;
|
2012-05-12 01:13:47 +00:00
|
|
|
list = pkg_cflags(&world, maximum_traverse_depth, global_traverse_flags | PKGF_SEARCH_PRIVATE);
|
2012-05-03 20:37:24 +00:00
|
|
|
print_cflags(list);
|
2012-05-07 02:16:32 +00:00
|
|
|
|
|
|
|
pkg_fragment_free(list);
|
2011-07-25 06:03:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (want_libs)
|
|
|
|
{
|
2012-05-12 01:18:12 +00:00
|
|
|
pkg_fragment_t *list;
|
2012-05-03 20:37:24 +00:00
|
|
|
|
2011-07-25 06:03:35 +00:00
|
|
|
wanted_something++;
|
2012-05-12 01:18:12 +00:00
|
|
|
list = pkg_libs(&world, maximum_traverse_depth, global_traverse_flags);
|
2012-05-03 20:37:24 +00:00
|
|
|
print_libs(list);
|
2012-05-07 02:16:32 +00:00
|
|
|
|
|
|
|
pkg_fragment_free(list);
|
2011-07-25 04:46:10 +00:00
|
|
|
}
|
2011-07-25 05:19:55 +00:00
|
|
|
|
2011-07-25 23:17:28 +00:00
|
|
|
if (want_variable)
|
|
|
|
{
|
|
|
|
wanted_something++;
|
2012-05-07 04:30:02 +00:00
|
|
|
pkg_traverse(&world, print_variable, NULL, 2, global_traverse_flags | PKGF_SKIP_ROOT_VIRTUAL);
|
2011-07-25 23:17:28 +00:00
|
|
|
}
|
|
|
|
|
2011-07-25 05:19:55 +00:00
|
|
|
if (wanted_something)
|
|
|
|
printf("\n");
|
|
|
|
|
2012-05-07 02:31:20 +00:00
|
|
|
out:
|
2012-05-07 02:08:47 +00:00
|
|
|
pkg_free(&world);
|
|
|
|
|
2012-05-07 02:22:40 +00:00
|
|
|
return retval;
|
2011-07-25 04:54:39 +00:00
|
|
|
}
|
2011-07-25 04:46:10 +00:00
|
|
|
|
2011-07-25 05:26:55 +00:00
|
|
|
static void
|
|
|
|
version(void)
|
|
|
|
{
|
2012-07-20 21:29:57 +00:00
|
|
|
printf("%s %s%s\n", PACKAGE_NAME, PACKAGE_VERSION, HAVE_STRICT_MODE ? " [strict]" : " [pkg-config compatible]");
|
2012-07-20 19:29:58 +00:00
|
|
|
printf("Copyright (c) 2011 - 2012 William Pitcock <nenolod@dereferenced.org>.\n\n");
|
|
|
|
printf("Permission to use, copy, modify, and/or distribute this software for any\n");
|
|
|
|
printf("purpose with or without fee is hereby granted, provided that the above\n");
|
|
|
|
printf("copyright notice and this permission notice appear in all copies.\n\n");
|
2012-07-20 19:31:58 +00:00
|
|
|
printf("This software is provided 'as is' and without any warranty, express or\n");
|
|
|
|
printf("implied. In no event shall the authors be liable for any damages arising\n");
|
2012-07-20 19:29:58 +00:00
|
|
|
printf("from the use of this software.\n\n");
|
|
|
|
printf("Report bugs at <%s>.\n", PACKAGE_BUGREPORT);
|
2011-07-25 05:26:55 +00:00
|
|
|
}
|
|
|
|
|
2012-05-01 01:10:56 +00:00
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
printf("usage: %s [OPTIONS] [LIBRARIES]\n", PACKAGE_NAME);
|
|
|
|
|
|
|
|
printf("\nbasic options:\n\n");
|
|
|
|
|
|
|
|
printf(" --help this message\n");
|
|
|
|
printf(" --version print pkgconf version to stdout\n");
|
|
|
|
printf(" --atleast-pkgconfig-version check whether or not pkgconf is compatible\n");
|
|
|
|
printf(" with a specified pkg-config version\n");
|
2012-07-02 02:21:31 +00:00
|
|
|
printf(" --errors-to-stdout print all errors on stdout instead of stderr\n");
|
2012-07-21 19:33:07 +00:00
|
|
|
printf(" --silence-errors explicitly be silent about errors\n");
|
2012-05-01 01:10:56 +00:00
|
|
|
|
|
|
|
printf("\nchecking specific pkg-config database entries:\n\n");
|
|
|
|
|
|
|
|
printf(" --atleast-version require a specific version of a module\n");
|
2012-05-07 08:27:55 +00:00
|
|
|
printf(" --exact-version require an exact version of a module\n");
|
|
|
|
printf(" --max-version require a maximum version of a module\n");
|
2012-05-01 01:10:56 +00:00
|
|
|
printf(" --exists check whether or not a module exists\n");
|
2012-05-06 04:10:05 +00:00
|
|
|
printf(" --uninstalled check whether or not an uninstalled module will be used\n");
|
2012-05-07 00:49:50 +00:00
|
|
|
printf(" --no-uninstalled never use uninstalled modules when satisfying dependencies\n");
|
2012-05-01 01:10:56 +00:00
|
|
|
printf(" --maximum-traverse-depth maximum allowed depth for dependency graph\n");
|
|
|
|
printf(" --static be more aggressive when computing dependency graph\n");
|
|
|
|
printf(" (for static linking)\n");
|
2012-05-02 23:19:50 +00:00
|
|
|
printf(" --env-only look only for package entries in PKG_CONFIG_PATH\n");
|
2012-05-12 01:54:37 +00:00
|
|
|
printf(" --ignore-conflicts ignore 'conflicts' rules in modules\n");
|
2012-05-01 01:10:56 +00:00
|
|
|
|
|
|
|
printf("\nquerying specific pkg-config database fields:\n\n");
|
|
|
|
|
2012-05-07 04:32:08 +00:00
|
|
|
printf(" --define-variable=varname=value define variable 'varname' as 'value'\n");
|
2012-05-01 01:10:56 +00:00
|
|
|
printf(" --variable=varname print specified variable entry to stdout\n");
|
|
|
|
printf(" --cflags print required CFLAGS to stdout\n");
|
2012-05-03 19:52:36 +00:00
|
|
|
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");
|
2012-05-01 01:10:56 +00:00
|
|
|
printf(" --libs print required linker flags to stdout\n");
|
2012-05-03 20:21:57 +00:00
|
|
|
printf(" --libs-only-L print required LDPATH linker flags to stdout\n");
|
|
|
|
printf(" --libs-only-l print required LIBNAME linker flags to stdout\n");
|
|
|
|
printf(" --libs-only-other print required other linker flags to stdout\n");
|
2012-05-01 01:10:56 +00:00
|
|
|
printf(" --print-requires print required dependency frameworks to stdout\n");
|
2012-05-03 00:55:52 +00:00
|
|
|
printf(" --print-requires-private print required dependency frameworks for static\n");
|
|
|
|
printf(" linking to stdout\n");
|
2012-05-01 01:10:56 +00:00
|
|
|
printf(" --print-variables print all known variables in module to stdout\n");
|
|
|
|
printf(" --digraph print entire dependency graph in graphviz 'dot' format\n");
|
2012-05-07 00:56:19 +00:00
|
|
|
printf(" --keep-system-cflags keep -I%s entries in cflags output\n", INCLUDEDIR);
|
2012-05-07 00:57:56 +00:00
|
|
|
printf(" --keep-system-libs keep -L%s entries in libs output\n", LIBDIR);
|
2012-05-01 01:10:56 +00:00
|
|
|
|
|
|
|
printf("\nreport bugs to <%s>.\n", PACKAGE_BUGREPORT);
|
|
|
|
}
|
|
|
|
|
2011-07-25 04:54:39 +00:00
|
|
|
int
|
2012-04-30 18:50:31 +00:00
|
|
|
main(int argc, char *argv[])
|
2011-07-25 04:54:39 +00:00
|
|
|
{
|
2011-07-25 05:06:37 +00:00
|
|
|
int ret;
|
2011-07-25 05:19:55 +00:00
|
|
|
pkg_queue_t *pkgq = NULL;
|
|
|
|
pkg_queue_t *pkgq_head = NULL;
|
2012-05-07 08:33:00 +00:00
|
|
|
char *builddir;
|
2012-07-02 02:21:31 +00:00
|
|
|
int want_errors_on_stdout = 0;
|
2012-07-24 02:07:19 +00:00
|
|
|
int want_silence_errors = 0;
|
2011-07-25 05:06:37 +00:00
|
|
|
|
2012-07-20 18:46:14 +00:00
|
|
|
struct pkg_option options[] = {
|
2012-04-30 18:50:31 +00:00
|
|
|
{ "version", no_argument, &want_version, 1, },
|
|
|
|
{ "atleast-version", required_argument, NULL, 2, },
|
|
|
|
{ "atleast-pkgconfig-version", required_argument, NULL, 3, },
|
|
|
|
{ "libs", no_argument, &want_libs, 4, },
|
|
|
|
{ "cflags", no_argument, &want_cflags, 5, },
|
|
|
|
{ "modversion", no_argument, &want_modversion, 6, },
|
|
|
|
{ "variable", required_argument, NULL, 7, },
|
|
|
|
{ "exists", no_argument, NULL, 8, },
|
|
|
|
{ "print-errors", no_argument, NULL, 9, },
|
|
|
|
{ "short-errors", no_argument, NULL, 10, },
|
|
|
|
{ "maximum-traverse-depth", required_argument, NULL, 11, },
|
|
|
|
{ "static", no_argument, &want_static, 12, },
|
|
|
|
{ "print-requires", no_argument, &want_requires, 13, },
|
|
|
|
{ "print-variables", no_argument, &want_variables, 14, },
|
|
|
|
{ "digraph", no_argument, &want_digraph, 15, },
|
2012-05-01 01:10:56 +00:00
|
|
|
{ "help", no_argument, &want_help, 16, },
|
2012-05-02 23:19:50 +00:00
|
|
|
{ "env-only", no_argument, &want_env_only, 17, },
|
2012-05-03 00:55:52 +00:00
|
|
|
{ "print-requires-private", no_argument, &want_requires_private, 18, },
|
2012-05-03 19:52:36 +00:00
|
|
|
{ "cflags-only-I", no_argument, &want_cflags, WANT_CFLAGS_ONLY_I, },
|
|
|
|
{ "cflags-only-other", no_argument, &want_cflags, WANT_CFLAGS_ONLY_OTHER, },
|
2012-05-03 20:21:57 +00:00
|
|
|
{ "libs-only-L", no_argument, &want_libs, WANT_LIBS_ONLY_LDPATH, },
|
|
|
|
{ "libs-only-l", no_argument, &want_libs, WANT_LIBS_ONLY_LIBNAME, },
|
|
|
|
{ "libs-only-other", no_argument, &want_libs, WANT_LIBS_ONLY_OTHER, },
|
2012-05-06 04:10:05 +00:00
|
|
|
{ "uninstalled", no_argument, &want_uninstalled, 24, },
|
2012-05-07 00:49:50 +00:00
|
|
|
{ "no-uninstalled", no_argument, &want_no_uninstalled, 25, },
|
2012-05-07 00:56:19 +00:00
|
|
|
{ "keep-system-cflags", no_argument, &want_keep_system_cflags, 26, },
|
|
|
|
{ "keep-system-libs", no_argument, &want_keep_system_libs, 26, },
|
2012-05-07 04:32:08 +00:00
|
|
|
{ "define-variable", required_argument, NULL, 27, },
|
2012-05-07 08:26:17 +00:00
|
|
|
{ "exact-version", required_argument, NULL, 28, },
|
|
|
|
{ "max-version", required_argument, NULL, 29, },
|
2012-05-12 01:54:37 +00:00
|
|
|
{ "ignore-conflicts", no_argument, &want_ignore_conflicts, 30, },
|
2012-07-02 02:21:31 +00:00
|
|
|
{ "errors-to-stdout", no_argument, &want_errors_on_stdout, 31, },
|
2012-07-21 19:33:07 +00:00
|
|
|
{ "silence-errors", no_argument, &want_silence_errors, 32, },
|
2012-04-30 18:50:31 +00:00
|
|
|
{ NULL, 0, NULL, 0 }
|
2011-07-25 05:06:37 +00:00
|
|
|
};
|
|
|
|
|
2012-07-20 22:12:06 +00:00
|
|
|
while ((ret = pkg_getopt_long_only(argc, argv, "", options, NULL)) != -1)
|
2011-07-25 05:06:37 +00:00
|
|
|
{
|
2012-04-30 18:50:31 +00:00
|
|
|
switch (ret)
|
|
|
|
{
|
|
|
|
case 2:
|
2012-07-20 18:46:14 +00:00
|
|
|
required_module_version = pkg_optarg;
|
2012-04-30 18:50:31 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2012-07-20 18:46:14 +00:00
|
|
|
required_pkgconfig_version = pkg_optarg;
|
2012-04-30 18:50:31 +00:00
|
|
|
break;
|
|
|
|
case 7:
|
2012-07-20 18:46:14 +00:00
|
|
|
want_variable = pkg_optarg;
|
2012-04-30 18:50:31 +00:00
|
|
|
break;
|
|
|
|
case 11:
|
2012-07-20 18:46:14 +00:00
|
|
|
maximum_traverse_depth = atoi(pkg_optarg);
|
2012-04-30 18:50:31 +00:00
|
|
|
break;
|
2012-05-07 04:32:08 +00:00
|
|
|
case 27:
|
2012-07-20 18:46:14 +00:00
|
|
|
pkg_tuple_define_global(pkg_optarg);
|
2012-05-07 04:32:08 +00:00
|
|
|
break;
|
2012-05-07 08:26:17 +00:00
|
|
|
case 28:
|
2012-07-20 18:46:14 +00:00
|
|
|
required_exact_module_version = pkg_optarg;
|
2012-05-07 08:26:17 +00:00
|
|
|
break;
|
|
|
|
case 29:
|
2012-07-20 18:46:14 +00:00
|
|
|
required_max_module_version = pkg_optarg;
|
2012-05-07 08:26:17 +00:00
|
|
|
break;
|
2012-07-20 22:19:43 +00:00
|
|
|
case '?':
|
|
|
|
case ':':
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
break;
|
2012-04-30 18:50:31 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2011-07-25 05:06:37 +00:00
|
|
|
}
|
2011-07-25 06:48:40 +00:00
|
|
|
|
2011-07-25 05:26:55 +00:00
|
|
|
if (want_version)
|
|
|
|
{
|
|
|
|
version();
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2012-05-01 01:10:56 +00:00
|
|
|
if (want_help)
|
|
|
|
{
|
|
|
|
usage();
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2012-07-02 02:21:31 +00:00
|
|
|
error_msgout = stderr;
|
|
|
|
if (want_errors_on_stdout)
|
|
|
|
error_msgout = stdout;
|
2012-07-21 19:33:07 +00:00
|
|
|
if (want_silence_errors)
|
|
|
|
error_msgout = fopen(PATH_DEV_NULL, "w");
|
2012-07-02 02:21:31 +00:00
|
|
|
|
2012-05-12 01:54:37 +00:00
|
|
|
if (want_ignore_conflicts || getenv("PKG_CONFIG_IGNORE_CONFLICTS") != NULL)
|
|
|
|
global_traverse_flags |= PKGF_SKIP_CONFLICTS;
|
|
|
|
|
2011-07-26 23:44:28 +00:00
|
|
|
if (want_static)
|
2012-05-12 01:07:45 +00:00
|
|
|
global_traverse_flags |= (PKGF_SEARCH_PRIVATE | PKGF_MERGE_PRIVATE_FRAGMENTS);
|
2011-07-26 23:44:28 +00:00
|
|
|
|
2012-05-02 23:19:50 +00:00
|
|
|
if (want_env_only)
|
|
|
|
global_traverse_flags |= PKGF_ENV_ONLY;
|
|
|
|
|
2012-05-07 00:49:50 +00:00
|
|
|
if (want_no_uninstalled || getenv("PKG_CONFIG_DISABLE_UNINSTALLED") != NULL)
|
|
|
|
global_traverse_flags |= PKGF_NO_UNINSTALLED;
|
|
|
|
|
2012-05-07 00:56:19 +00:00
|
|
|
if (getenv("PKG_CONFIG_ALLOW_SYSTEM_CFLAGS") != NULL)
|
|
|
|
want_keep_system_cflags = 1;
|
|
|
|
|
|
|
|
if (getenv("PKG_CONFIG_ALLOW_SYSTEM_LIBS") != NULL)
|
|
|
|
want_keep_system_libs = 1;
|
|
|
|
|
2012-05-07 08:33:00 +00:00
|
|
|
if ((builddir = getenv("PKG_CONFIG_TOP_BUILD_DIR")) != NULL)
|
|
|
|
pkg_tuple_add_global("pc_top_builddir", builddir);
|
|
|
|
else
|
2012-07-21 19:33:07 +00:00
|
|
|
pkg_tuple_add_global("pc_top_builddir", "$(top_builddir)");
|
2012-05-07 08:33:00 +00:00
|
|
|
|
2012-05-07 08:45:24 +00:00
|
|
|
if ((sysroot_dir = getenv("PKG_CONFIG_SYSROOT_DIR")) != NULL)
|
|
|
|
pkg_tuple_add_global("pc_sysrootdir", sysroot_dir);
|
|
|
|
else
|
2012-07-21 19:33:07 +00:00
|
|
|
pkg_tuple_add_global("pc_sysrootdir", "/");
|
2012-05-07 08:45:24 +00:00
|
|
|
|
2011-07-25 05:36:57 +00:00
|
|
|
if (required_pkgconfig_version != NULL)
|
|
|
|
{
|
2012-05-06 02:51:25 +00:00
|
|
|
if (pkg_compare_version(PKG_PKGCONFIG_VERSION_EQUIV, required_pkgconfig_version) >= 0)
|
2011-07-26 17:05:29 +00:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
|
|
|
return EXIT_FAILURE;
|
2011-07-25 05:36:57 +00:00
|
|
|
}
|
|
|
|
|
2011-07-26 23:47:42 +00:00
|
|
|
if (required_module_version != NULL)
|
|
|
|
{
|
|
|
|
pkg_t *pkg;
|
2012-07-02 02:57:49 +00:00
|
|
|
pkg_dependency_t *pkghead = NULL, *pkgiter = NULL;
|
2011-07-26 23:47:42 +00:00
|
|
|
|
2012-07-20 18:46:14 +00:00
|
|
|
while (argv[pkg_optind])
|
2012-07-02 02:57:49 +00:00
|
|
|
{
|
2012-07-20 18:46:14 +00:00
|
|
|
pkghead = pkg_dependency_parse_str(pkghead, argv[pkg_optind]);
|
|
|
|
pkg_optind++;
|
2012-07-02 02:57:49 +00:00
|
|
|
}
|
2011-07-26 23:47:42 +00:00
|
|
|
|
2012-07-02 02:57:49 +00:00
|
|
|
PKG_FOREACH_LIST_ENTRY(pkghead, pkgiter)
|
|
|
|
{
|
|
|
|
pkg = pkg_find(pkgiter->package, global_traverse_flags);
|
|
|
|
if (pkg == NULL)
|
|
|
|
return EXIT_FAILURE;
|
2011-07-26 23:47:42 +00:00
|
|
|
|
2012-07-02 02:57:49 +00:00
|
|
|
if (pkg_compare_version(pkg->version, required_module_version) >= 0)
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
2011-07-26 23:47:42 +00:00
|
|
|
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-05-07 08:26:17 +00:00
|
|
|
if (required_exact_module_version != NULL)
|
|
|
|
{
|
|
|
|
pkg_t *pkg;
|
2012-07-02 02:57:49 +00:00
|
|
|
pkg_dependency_t *pkghead = NULL, *pkgiter = NULL;
|
2012-05-07 08:26:17 +00:00
|
|
|
|
2012-07-20 18:46:14 +00:00
|
|
|
while (argv[pkg_optind])
|
2012-07-02 02:57:49 +00:00
|
|
|
{
|
2012-07-20 18:46:14 +00:00
|
|
|
pkghead = pkg_dependency_parse_str(pkghead, argv[pkg_optind]);
|
|
|
|
pkg_optind++;
|
2012-07-02 02:57:49 +00:00
|
|
|
}
|
2012-05-07 08:26:17 +00:00
|
|
|
|
2012-07-02 02:57:49 +00:00
|
|
|
PKG_FOREACH_LIST_ENTRY(pkghead, pkgiter)
|
|
|
|
{
|
|
|
|
pkg = pkg_find(pkgiter->package, global_traverse_flags);
|
|
|
|
if (pkg == NULL)
|
|
|
|
return EXIT_FAILURE;
|
2012-05-07 08:26:17 +00:00
|
|
|
|
2012-07-02 03:02:45 +00:00
|
|
|
if (pkg_compare_version(pkg->version, required_exact_module_version) == 0)
|
2012-07-02 02:57:49 +00:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
2012-05-07 08:26:17 +00:00
|
|
|
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (required_max_module_version != NULL)
|
|
|
|
{
|
|
|
|
pkg_t *pkg;
|
2012-07-02 02:57:49 +00:00
|
|
|
pkg_dependency_t *pkghead = NULL, *pkgiter = NULL;
|
2012-05-07 08:26:17 +00:00
|
|
|
|
2012-07-20 18:46:14 +00:00
|
|
|
while (argv[pkg_optind])
|
2012-07-02 02:57:49 +00:00
|
|
|
{
|
2012-07-20 18:46:14 +00:00
|
|
|
pkghead = pkg_dependency_parse_str(pkghead, argv[pkg_optind]);
|
|
|
|
pkg_optind++;
|
2012-07-02 02:57:49 +00:00
|
|
|
}
|
2012-05-07 08:26:17 +00:00
|
|
|
|
2012-07-02 02:57:49 +00:00
|
|
|
PKG_FOREACH_LIST_ENTRY(pkghead, pkgiter)
|
|
|
|
{
|
|
|
|
pkg = pkg_find(pkgiter->package, global_traverse_flags);
|
|
|
|
if (pkg == NULL)
|
|
|
|
return EXIT_FAILURE;
|
2012-05-07 08:26:17 +00:00
|
|
|
|
2012-07-02 03:02:45 +00:00
|
|
|
if (pkg_compare_version(pkg->version, required_max_module_version) <= 0)
|
2012-07-02 02:57:49 +00:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
2012-05-07 08:26:17 +00:00
|
|
|
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2011-07-25 05:06:37 +00:00
|
|
|
while (1)
|
|
|
|
{
|
2012-07-20 18:46:14 +00:00
|
|
|
const char *package = argv[pkg_optind];
|
2012-05-06 02:39:37 +00:00
|
|
|
|
2011-07-25 05:06:37 +00:00
|
|
|
if (package == NULL)
|
|
|
|
break;
|
|
|
|
|
2012-07-20 18:46:14 +00:00
|
|
|
if (argv[pkg_optind + 1] == NULL || !PKG_OPERATOR_CHAR(*(argv[pkg_optind + 1])))
|
2012-05-06 02:39:37 +00:00
|
|
|
{
|
|
|
|
pkgq = pkg_queue_push(pkgq, package);
|
|
|
|
|
|
|
|
if (pkgq_head == NULL)
|
|
|
|
pkgq_head = pkgq;
|
|
|
|
|
2012-07-20 18:46:14 +00:00
|
|
|
pkg_optind++;
|
2012-05-06 02:39:37 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-07-21 19:38:13 +00:00
|
|
|
char packagebuf[PKG_BUFSIZE];
|
2012-05-06 02:39:37 +00:00
|
|
|
|
2012-07-20 18:46:14 +00:00
|
|
|
snprintf(packagebuf, sizeof packagebuf, "%s %s %s", package, argv[pkg_optind + 1], argv[pkg_optind + 2]);
|
|
|
|
pkg_optind += 3;
|
2012-05-06 02:39:37 +00:00
|
|
|
|
|
|
|
pkgq = pkg_queue_push(pkgq, packagebuf);
|
|
|
|
|
|
|
|
if (pkgq_head == NULL)
|
|
|
|
pkgq_head = pkgq;
|
|
|
|
}
|
2011-07-25 05:06:37 +00:00
|
|
|
}
|
|
|
|
|
2011-07-25 05:26:55 +00:00
|
|
|
if (pkgq_head == NULL)
|
|
|
|
{
|
2012-07-02 02:21:31 +00:00
|
|
|
fprintf(error_msgout, "Please specify at least one package name on the command line.\n");
|
2011-07-25 05:26:55 +00:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-05-07 04:10:41 +00:00
|
|
|
ret = pkg_queue_walk(pkgq_head);
|
|
|
|
|
|
|
|
pkg_tuple_free_global();
|
|
|
|
return ret;
|
2011-07-25 04:46:10 +00:00
|
|
|
}
|