diff options
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/init.cc | 4 | ||||
-rw-r--r-- | apt-pkg/makefile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc index 5a2e6761f..db75e6166 100644 --- a/apt-pkg/init.cc +++ b/apt-pkg/init.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: init.cc,v 1.18 2002/10/16 05:21:33 jgg Exp $ +// $Id: init.cc,v 1.19 2002/11/11 07:00:16 doogie Exp $ /* ###################################################################### Init - Initialize the package library @@ -96,7 +96,7 @@ bool pkgInitConfig(Configuration &Cnf) if (Cnf.Exists("Dir::Locale")) { - bindtextdomain(DOMAIN,Cnf.FindDir("Dir::Locale").c_str()); + bindtextdomain(APT_DOMAIN,Cnf.FindDir("Dir::Locale").c_str()); bindtextdomain(textdomain(0),Cnf.FindDir("Dir::Locale").c_str()); } diff --git a/apt-pkg/makefile b/apt-pkg/makefile index 3a51849ba..0f7f879be 100644 --- a/apt-pkg/makefile +++ b/apt-pkg/makefile @@ -16,7 +16,7 @@ LIBEXT=$(GLIBC_VER)$(LIBSTDCPP_VER) MAJOR=3.3 MINOR=0 SLIBS=$(PTHREADLIB) -DOMAIN:=libapt-pkg$(MAJOR) +APT_DOMAIN:=libapt-pkg$(MAJOR) # Source code for the contributed non-core things SOURCE = contrib/mmap.cc contrib/error.cc contrib/strutl.cc \ |