summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2002-01-08 10:50:21 +0000
committerBruno Haible <bruno@clisp.org>2009-06-22 00:38:59 +0200
commit94038f3c1e911e06ce674f1c36a73e39ce632890 (patch)
tree26d6a540cdae15883033ab4656fc39694334f498
parent27611c7efb2d100758c6f75b7d4ce02a57a62cda (diff)
downloadexternal_gettext-94038f3c1e911e06ce674f1c36a73e39ce632890.zip
external_gettext-94038f3c1e911e06ce674f1c36a73e39ce632890.tar.gz
external_gettext-94038f3c1e911e06ce674f1c36a73e39ce632890.tar.bz2
AIX 3 alloca now done in liballoca.h.
-rw-r--r--src/ChangeLog1
-rw-r--r--src/write-mo.c7
2 files changed, 1 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4092e49..ee8cfe4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -201,7 +201,6 @@
* format-lisp.c (parse_upto): Fix prototype. char promotes to int.
* po-lex.c (mb_iseq, mb_setascii): Likewise.
* po-hash-gen.y: alloca fix for AIX 3.
- * write-mo.c: Likewise.
* x-lisp.c (syntax_code_of, read_char_syntax, attribute_of, is_number):
Move prototypes, to avoid compilation errors on AIX 3.
(syntax_code_of, attribute_of): Fix prototype. unsigned char promotes
diff --git a/src/write-mo.c b/src/write-mo.c
index a4b6d9c..0127d47 100644
--- a/src/write-mo.c
+++ b/src/write-mo.c
@@ -1,5 +1,5 @@
/* Writing binary .mo files.
- Copyright (C) 1995-1998, 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 1995-1998, 2000-2002 Free Software Foundation, Inc.
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, April 1995.
This program is free software; you can redistribute it and/or modify
@@ -16,11 +16,6 @@
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-/* AIX 3 forces us to put this declaration at the beginning of the file. */
-#if defined _AIX && !defined __GNUC__
- #pragma alloca
-#endif
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif