]> git.saurik.com Git - apt.git/blobdiff - cmdline/apt-sortpkgs.cc
* fixed the changelog entires (once more)
[apt.git] / cmdline / apt-sortpkgs.cc
index bacaf01dd51eac26a9d12682e39fe56e322c0023..e6a6b9a56f43f16f3a7a62b8474b417d173e7f04 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;
@@ -153,7 +156,7 @@ int ShowHelp()
       "  -h   This help text\n"
       "  -s   Use source file sorting\n"
       "  -c=? Read this configuration file\n"
-      "  -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n");
+      "  -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n");
 
    return 0;
 }
@@ -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 ||