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

« back to all changes in this revision

Viewing changes to apt-pkg/versionmatch.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:
16
16
#include <apt-pkg/versionmatch.h>
17
17
#include <apt-pkg/strutl.h>
18
18
#include <apt-pkg/error.h>
 
19
#include <apt-pkg/pkgcache.h>
 
20
#include <apt-pkg/cacheiterators.h>
19
21
 
 
22
#include <stddef.h>
 
23
#include <stdlib.h>
 
24
#include <string.h>
 
25
#include <string>
20
26
#include <stdio.h>
21
27
#include <ctype.h>
22
28
#include <fnmatch.h>
23
 
#include <sys/types.h>
24
29
#include <regex.h>
25
30
                                                                        /*}}}*/
26
31