~ubuntu-core-dev/apt/ubuntu

« back to all changes in this revision

Viewing changes to apt-pkg/deb/deblistparser.cc

* merged the apt-breaks-iwj branch
* pulled in the other remaining ubuntu changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
      return false;
106
106
   if (ParseDepends(Ver,"Conflicts",pkgCache::Dep::Conflicts) == false)
107
107
      return false;
 
108
   if (ParseDepends(Ver,"Breaks",pkgCache::Dep::DpkgBreaks) == false)
 
109
      return false;
108
110
   if (ParseDepends(Ver,"Replaces",pkgCache::Dep::Replaces) == false)
109
111
      return false;
110
112
 
193
195
//                            "Suggests",
194
196
//                            "Recommends",
195
197
                            "Conflicts",
 
198
                            "Breaks",
196
199
                            "Replaces",0};
197
200
   unsigned long Result = INIT_FCS;
198
201
   char S[1024];