summaryrefslogtreecommitdiff
path: root/source4/lib/util
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-02-20 04:33:43 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-02-20 04:33:43 +0100
commit39a817d310964f8e9a63cfb096b3ad24fa03bd5e (patch)
tree3fa2381e086942f94372cecba60e919bd7805cb7 /source4/lib/util
parent0020793515ade04f3ef5754717490e2eb2ca6bb9 (diff)
downloadsamba-39a817d310964f8e9a63cfb096b3ad24fa03bd5e.tar.gz
samba-39a817d310964f8e9a63cfb096b3ad24fa03bd5e.tar.bz2
samba-39a817d310964f8e9a63cfb096b3ad24fa03bd5e.zip
Fix use of some modules (needed _PUBLIC_).
(This used to be commit ce332130ea77159832da23bab760fa26921719e2)
Diffstat (limited to 'source4/lib/util')
-rw-r--r--source4/lib/util/attr.h2
-rw-r--r--source4/lib/util/util.h3
2 files changed, 2 insertions, 3 deletions
diff --git a/source4/lib/util/attr.h b/source4/lib/util/attr.h
index 8f6c4f5d8a..f64b272a67 100644
--- a/source4/lib/util/attr.h
+++ b/source4/lib/util/attr.h
@@ -29,13 +29,11 @@
/** Feel free to add definitions for other compilers here. */
#endif
-#ifndef _PUBLIC_
#ifdef HAVE_VISIBILITY_ATTR
# define _PUBLIC_ __attribute__((visibility("default")))
#else
# define _PUBLIC_
#endif
-#endif
#ifndef _DEPRECATED_
#if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1 )
diff --git a/source4/lib/util/util.h b/source4/lib/util/util.h
index 9e106052f2..550b60c625 100644
--- a/source4/lib/util/util.h
+++ b/source4/lib/util/util.h
@@ -21,6 +21,8 @@
#ifndef _SAMBA_UTIL_H_
#define _SAMBA_UTIL_H_
+#include "util/attr.h"
+
#include "charset/charset.h"
/* for TALLOC_CTX */
@@ -36,7 +38,6 @@ struct smbsrv_tcon;
extern const char *logfile;
extern const char *panic_action;
-#include "util/attr.h"
#include "util/time.h"
#include "util/data_blob.h"
#include "util/xfile.h"