changeset 10198:5056e8a13405

Include gettext.h only in those files that need it.
author Bruno Haible <bruno@clisp.org>
date Wed, 11 Jun 2008 02:33:46 +0200
parents d079dd7b69bc
children 9a94025d6470
files ChangeLog lib/acl-internal.h lib/copy-acl.c lib/set-mode-acl.c
diffstat 4 files changed, 13 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-06-10  Bruno Haible  <bruno@clisp.org>
+
+	* lib/acl-internal.h: Don't include gettext.h here.
+	* lib/set-mode-acl.c: Include gettext.h here.
+	* lib/copy-acl.c: Likewise.
+
 2008-06-10  Bruno Haible  <bruno@clisp.org>
 
 	* lib/wait-process.h (wait_subprocess): Add termsigp argument.
--- a/lib/acl-internal.h
+++ b/lib/acl-internal.h
@@ -46,9 +46,6 @@
 # define ENOTSUP (-1)
 #endif
 
-#include "gettext.h"
-#define _(msgid) gettext (msgid)
-
 #ifndef HAVE_FCHMOD
 # define HAVE_FCHMOD false
 # define fchmod(fd, mode) (-1)
--- a/lib/copy-acl.c
+++ b/lib/copy-acl.c
@@ -23,6 +23,9 @@
 
 #include "acl-internal.h"
 
+#include "gettext.h"
+#define _(msgid) gettext (msgid)
+
 
 /* Copy access control lists from one file to another. If SOURCE_DESC is
    a valid file descriptor, use file descriptor operations, else use
--- a/lib/set-mode-acl.c
+++ b/lib/set-mode-acl.c
@@ -23,6 +23,10 @@
 
 #include "acl-internal.h"
 
+#include "gettext.h"
+#define _(msgid) gettext (msgid)
+
+
 /* If DESC is a valid file descriptor use fchmod to change the
    file's mode to MODE on systems that have fchown. On systems
    that don't have fchown and if DESC is invalid, use chown on