Remove unused function.
authorgraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Fri, 6 Nov 2009 04:27:48 +0000 (04:27 +0000)
committergraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Fri, 6 Nov 2009 04:27:48 +0000 (04:27 +0000)
git-svn-id: http://opkg.googlecode.com/svn/trunk@268 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358

libopkg/pkg_depends.c
libopkg/pkg_depends.h

index 3210e9df5cffd81b3f1aee15009bad854a39edd1..971ebede263d5acb9797fa4808b370f9eb5821ed 100644 (file)
@@ -607,32 +607,6 @@ char ** add_unresolved_dep(pkg_t * pkg, char ** the_lost, int ref_ndx)
     
     return resized;
 }
     
     return resized;
 }
-       
-void printDepends(pkg_t * pkg)
-{
-    int i, j;
-    compound_depend_t * depend;
-    int count;
-    
-    count = pkg->pre_depends_count + pkg->depends_count;
-    
-    depend = pkg->depends;
-    if(!depend){
-       fprintf(stderr, "Depends pointer is NULL\n");
-       return;
-    }
-    for(i = 0; i < count; i++){
-       fprintf(stderr, "%s has %d possibilities:\n", 
-               (depend->type == GREEDY_DEPEND) ? "Greedy-Depend" : ((depend->type == DEPEND) ? "Depend" : "Pre-Depend"),
-               depend->possibility_count);
-       for(j = 0; j < depend->possibility_count; j++)
-           fprintf(stderr, "\t%s version %s (%d)\n",
-                   depend->possibilities[j]->pkg->name,
-                   depend->possibilities[j]->version,
-                   depend->possibilities[j]->constraint);
-       depend++;
-    }
-}
 
 int buildProvides(hash_table_t * hash, abstract_pkg_t * ab_pkg, pkg_t * pkg)
 {
 
 int buildProvides(hash_table_t * hash, abstract_pkg_t * ab_pkg, pkg_t * pkg)
 {
index 462a4db3e2484dfeddedb93f1acb124c67e99f7d..eb80e0f4a00cd4a62206a7e0872675d838d7afad 100644 (file)
@@ -96,7 +96,6 @@ int pkg_conflicts(pkg_t *pkg, pkg_t *conflicts);
 char *pkg_depend_str(pkg_t *pkg, int index);
 void buildDependedUponBy(pkg_t * pkg, abstract_pkg_t * ab_pkg);
 void freeDepends(pkg_t *pkg);
 char *pkg_depend_str(pkg_t *pkg, int index);
 void buildDependedUponBy(pkg_t * pkg, abstract_pkg_t * ab_pkg);
 void freeDepends(pkg_t *pkg);
-void printDepends(pkg_t * pkg);
 int version_constraints_satisfied(depend_t * depends, pkg_t * pkg);
 int pkg_hash_fetch_unsatisfied_dependencies(opkg_conf_t *conf, pkg_t * pkg, pkg_vec_t *depends, char *** unresolved);
 pkg_vec_t * pkg_hash_fetch_conflicts(hash_table_t * hash, pkg_t * pkg);
 int version_constraints_satisfied(depend_t * depends, pkg_t * pkg);
 int pkg_hash_fetch_unsatisfied_dependencies(opkg_conf_t *conf, pkg_t * pkg, pkg_vec_t *depends, char *** unresolved);
 pkg_vec_t * pkg_hash_fetch_conflicts(hash_table_t * hash, pkg_t * pkg);