summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 17:03:38 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 17:03:38 +0000
commitc8ca0ce1e16444e632d1e7cda0b787cd4b2b2db5 (patch)
tree1862ec0457e7c0824ea48039cbdf0fbd1ef61b77
parent25252292d2b2d961b228f6d3c8fc2e6607ef92b9 (diff)
* Add #include <langinfo.h> to cmdline/apt-get.cc. Thi...
Author: mdz Date: 2003-09-10 19:28:55 GMT * Add #include <langinfo.h> to cmdline/apt-get.cc. This apparently gets pulled in by something else with recent g++ and/or glibc, but is required when building on, e.g., stable
-rw-r--r--cmdline/apt-get.cc3
-rw-r--r--debian/changelog3
2 files changed, 5 insertions, 1 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index 328d5dc87..b74bdbc4a 100644
--- a/cmdline/apt-get.cc
+++ b/cmdline/apt-get.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-get.cc,v 1.140 2003/08/22 02:46:09 mdz Exp $
+// $Id: apt-get.cc,v 1.141 2003/09/10 19:28:55 mdz Exp $
/* ######################################################################
apt-get - Cover for dpkg
@@ -46,6 +46,7 @@
#include "acqprogress.h"
#include <locale.h>
+#include <langinfo.h>
#include <fstream>
#include <termios.h>
#include <sys/ioctl.h>
diff --git a/debian/changelog b/debian/changelog
index 6ee787406..3d27e91e3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,9 @@ apt (0.5.11) unstable; urgency=low
* Clean up reportbug script a bit, and extend it to distinguish between a
configuration file not existing and the user declining to submit it with
the report
+ * Add #include <langinfo.h> to cmdline/apt-get.cc. This apparently gets
+ pulled in by something else with recent g++ and/or glibc, but is
+ required when building on, e.g., stable
--