diff options
-rw-r--r-- | apt-pkg/init.cc | 4 | ||||
-rw-r--r-- | apt-pkg/makefile | 2 | ||||
-rw-r--r-- | buildlib/apti18n.h.in | 6 | ||||
-rw-r--r-- | buildlib/library.mak | 2 | ||||
-rw-r--r-- | buildlib/podomain.mak | 6 | ||||
-rw-r--r-- | methods/makefile | 2 |
6 files changed, 11 insertions, 11 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 \ diff --git a/buildlib/apti18n.h.in b/buildlib/apti18n.h.in index 9bdd6bbca..4c32e585e 100644 --- a/buildlib/apti18n.h.in +++ b/buildlib/apti18n.h.in @@ -1,5 +1,5 @@ // -*- mode: cpp; mode: fold -*- -// $Id: apti18n.h.in,v 1.4 2002/10/16 05:24:02 jgg Exp $ +// $Id: apti18n.h.in,v 1.5 2002/11/11 07:00:16 doogie Exp $ /* Internationalization macros for apt. This header should be included last in each C file. */ @@ -10,8 +10,8 @@ #if USE_NLS==yes && USE_INCLUDED_LIBINTL==no // apt will use the gettext implementation of the C library # include <libintl.h> -# ifdef DOMAIN -# define _(x) dgettext(DOMAIN,x) +# ifdef APT_DOMAIN +# define _(x) dgettext(APT_DOMAIN,x) # else # define _(x) gettext(x) # endif diff --git a/buildlib/library.mak b/buildlib/library.mak index 9f8b78541..de8833cbb 100644 --- a/buildlib/library.mak +++ b/buildlib/library.mak @@ -8,7 +8,7 @@ # $(LIBRARY) - The name of the library without lib or .so # $(MAJOR) - The major version number of this library # $(MINOR) - The minor version number of this library -# $(DOMAIN) - The text domain for this library +# $(APT_DOMAIN) - The text domain for this library # All output is writtin to .opic files in the build directory to # signify the PIC output. diff --git a/buildlib/podomain.mak b/buildlib/podomain.mak index 2bf72ac58..602e9e080 100644 --- a/buildlib/podomain.mak +++ b/buildlib/podomain.mak @@ -5,9 +5,9 @@ # CPPFLAG for the compilation. MY_DOMAIN := $(PACKAGE) -ifdef DOMAIN -$($(LOCAL)-OBJS): CPPFLAGS := $(CPPFLAGS) -DDOMAIN='"$(DOMAIN)"' -MY_DOMAIN := $(DOMAIN) +ifdef APT_DOMAIN +$($(LOCAL)-OBJS): CPPFLAGS := $(CPPFLAGS) -DAPT_DOMAIN='"$(APT_DOMAIN)"' +MY_DOMAIN := $(APT_DOMAIN) endif MKDIRS += $(PO_DOMAINS)/$(MY_DOMAIN) diff --git a/methods/makefile b/methods/makefile index dcdb0dc46..5700caa23 100644 --- a/methods/makefile +++ b/methods/makefile @@ -8,7 +8,7 @@ BIN := $(BIN)/methods # FIXME.. LIB_APT_PKG_MAJOR = 3.3 -DOMAIN := libapt-pkg$(LIB_APT_PKG_MAJOR) +APT_DOMAIN := libapt-pkg$(LIB_APT_PKG_MAJOR) # The file method PROGRAM=file |