]> git.saurik.com Git - apt.git/blobdiff - cmdline/apt-sortpkgs.cc
Typo
[apt.git] / cmdline / apt-sortpkgs.cc
index bacaf01dd51eac26a9d12682e39fe56e322c0023..a0ec2263e85815edf984f67046e0e30dfd0e586c 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: apt-sortpkgs.cc,v 1.2 2001/02/20 07:03:17 jgg Exp $
+// $Id: apt-sortpkgs.cc,v 1.5 2003/01/11 07:18:44 jgg Exp $
 /* ######################################################################
    
    APT Sort Packages - Program to sort Package and Source files
 #include <vector>
 #include <algorithm>
 
+#include <locale.h>
 #include <unistd.h>
                                                                        /*}}}*/
 
+using namespace std;
+
 struct PkgName
 {
    string Name;
@@ -168,7 +171,11 @@ int main(unsigned int argc,const char *argv[])
       {'c',"config-file",0,CommandLine::ConfigFile},
       {'o',"option",0,CommandLine::ArbItem},
       {0,0,0,0}};
-   
+
+   // Set up gettext support
+   setlocale(LC_ALL,"");
+   textdomain(PACKAGE);
+
    // Parse the command line and initialize the package library
    CommandLine CmdL(Args,_config);
    if (pkgInitConfig(*_config) == false ||