+2002-04-30 Jakub Jelinek <jakub@redhat.com>
+
+ * locale/programs/locarchive.c (create_archive): Add archivefname
+ argument, create fname from it.
+ (enlarge_archive): Honour output_prefix.
+ (open_archive): Likewise.
+
+2002-04-30 Jakub Jelinek <jakub@redhat.com>
+
+ * locale/programs/locarchive.c (add_locales_to_archive): Don't nest
+ too many stpcpy macros.
+
+2002-04-26 Bruno Haible <bruno@clisp.org>
+
+ * locale/programs/ld-collate.c (collate_read): Cast first argument
+ for "%.*s" to int.
+
+2002-04-26 Bruno Haible <bruno@clisp.org>
+
+ * include/libintl.h (__ngettext, __dngettext, __dcngettext,
+ __dcngettext_internal): New declarations.
+ (__gettext, __dgettext, __dcgettext, __dcgettext_internal): Add
+ attribute declarations.
+
2002-04-30 Roland McGrath <roland@frob.com>
Removed old GNU stdio implementation; GNU libio is now the only option.
#include "simple-hash.h"
#include "localedef.h"
+extern const char *output_prefix;
-static const char archivefname[] = LOCALEDIR "/locale-archive";
+#define ARCHIVE_NAME LOCALEDIR "/locale-archive"
static const char *locnames[] =
{
static void
-create_archive (struct locarhandle *ah)
+create_archive (const char *archivefname, struct locarhandle *ah)
{
int fd;
- char fname[] = LOCALEDIR "/locale-archive.XXXXXX";
+ char fname[strlen (archivefname) + sizeof (".XXXXXX")];
struct locarhead head;
void *p;
size_t total;
+ strcpy (stpcpy (fname, archivefname), ".XXXXXX");
+
/* Create a temporary file in the correct directory. */
fd = mkstemp (fname);
if (fd == -1)
{
struct stat64 st;
int fd;
- char fname[] = LOCALEDIR "/locale-archive.XXXXXX";
struct locarhead newhead;
size_t total;
void *p;
struct namehashent *oldnamehashtab;
struct locrecent *oldlocrectab;
struct locarhandle new_ah;
+ size_t prefix_len = output_prefix ? strlen (output_prefix) : 0;
+ char archivefname[prefix_len + sizeof (ARCHIVE_NAME)];
+ char fname[prefix_len + sizeof (ARCHIVE_NAME) + sizeof (".XXXXXX") - 1];
+
+ if (output_prefix)
+ memcpy (archivefname, output_prefix, prefix_len);
+ strcpy (archivefname + prefix_len, ARCHIVE_NAME);
+ strcpy (stpcpy (fname, archivefname), ".XXXXXX");
/* Not all of the old file has to be mapped. Change this now this
we will have to access the whole content. */
int fd;
struct locarhead head;
int retry = 0;
+ size_t prefix_len = output_prefix ? strlen (output_prefix) : 0;
+ char archivefname[prefix_len + sizeof (ARCHIVE_NAME)];
+
+ if (output_prefix)
+ memcpy (archivefname, output_prefix, prefix_len);
+ strcpy (archivefname + prefix_len, ARCHIVE_NAME);
again:
/* Open the archive. We must have exclusive write access. */
/* Maybe the file does not yet exist. */
if (errno == ENOENT)
{
- create_archive (ah);
+ create_archive (archivefname, ah);
return;
}
else
directory and it therefore must contain a
regular file with the same name except a
"SYS_" prefix. */
- strcpy (stpcpy (stpcpy (stpcpy (stpcpy (fullname,
- fname),
- "/"),
- d->d_name),
- "/SYS_"),
+ char *t = stpcpy (stpcpy (fullname, fname), "/");
+ strcpy (stpcpy (stpcpy (t, d->d_name), "/SYS_"),
d->d_name);
if (stat64 (fullname, &st) == -1)
if (S_ISDIR (st.st_mode))
{
+ char *t;
close (fd);
- strcpy (stpcpy (stpcpy (stpcpy (stpcpy (fullname, fname),
- "/"),
- locnames[cnt]),
- "/SYS_"),
+ t = stpcpy (stpcpy (fullname, fname), "/");
+ strcpy (stpcpy (stpcpy (t, locnames[cnt]), "/SYS_"),
locnames[cnt]);
fd = open64 (fullname, O_RDONLY);