diff options
author | Jim McDonough <jmcd@samba.org> | 2006-05-19 18:37:35 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:09 -0500 |
commit | 96a858b5cd6243c15fb9649956d2f7718521661b (patch) | |
tree | 78b9c6edf221e5953fc97ebd64a8c07bd4600ceb /source4/lib/replace/replace.c | |
parent | 7f0e17e9030ad734977f66c2cc27faec501154a2 (diff) | |
download | samba-96a858b5cd6243c15fb9649956d2f7718521661b.tar.gz samba-96a858b5cd6243c15fb9649956d2f7718521661b.tar.bz2 samba-96a858b5cd6243c15fb9649956d2f7718521661b.zip |
r15719: Fix build on systems (AIX) that don't have vsyslog or strcasestr, with
--enable-developer on. syslog() and toupper() required more includes.
Someone more familiar with samba4 builds should verify this, please.
(This used to be commit d28f49fc6d3b7ee1b7077e2d35b2aee54d2d1469)
Diffstat (limited to 'source4/lib/replace/replace.c')
-rw-r--r-- | source4/lib/replace/replace.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/lib/replace/replace.c b/source4/lib/replace/replace.c index 337a54f24f..f72394cb0f 100644 --- a/source4/lib/replace/replace.c +++ b/source4/lib/replace/replace.c @@ -19,10 +19,12 @@ */ #include "includes.h" +#include "system/locale.h" #include "system/wait.h" #include "system/time.h" #include "system/network.h" #include "system/filesys.h" +#include "system/syslog.h" void replace_dummy(void); void replace_dummy(void) {} |