~ubuntu-branches/ubuntu/trusty/apt/trusty

« back to all changes in this revision

Viewing changes to cmdline/apt-internal-solver.cc

  • Committer: Package Import Robot
  • Author(s): Michael Vogt
  • Date: 2014-04-01 17:48:58 UTC
  • mfrom: (1.4.87 sid)
  • Revision ID: package-import@ubuntu.com-20140401174858-4mv29mm29zu22fn1
Tags: 1.0.1ubuntu1
merge with the debian/sid 1.0.1 version
(LP: #1302033)

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include <apt-pkg/fileutl.h>
21
21
#include <apt-pkg/pkgsystem.h>
22
22
#include <apt-pkg/upgrade.h>
 
23
#include <apt-pkg/configuration.h>
 
24
#include <apt-pkg/depcache.h>
 
25
#include <apt-pkg/pkgcache.h>
 
26
#include <apt-pkg/cacheiterators.h>
23
27
 
 
28
#include <string.h>
 
29
#include <iostream>
 
30
#include <list>
 
31
#include <string>
24
32
#include <unistd.h>
25
33
#include <cstdio>
26
34
 
30
38
// ShowHelp - Show a help screen                                        /*{{{*/
31
39
// ---------------------------------------------------------------------
32
40
/* */
33
 
bool ShowHelp(CommandLine &CmdL) {
 
41
static bool ShowHelp(CommandLine &) {
34
42
        ioprintf(std::cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION,
35
43
                 COMMON_ARCH,__DATE__,__TIME__);
36
44