aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.local
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-11-01 22:01:15 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-11-01 22:35:48 -0700
commitc81cecf620d506653a1ead83858b8b3fc240abb5 (patch)
treef69fd387af5c9c28637f6f4f2fa0253df0be9571 /Makefile.local
parent67c3bc9db48c9e12d648df4792c706cae723676c (diff)
lib: Add GCC visibility(hidden) pragmas to private header files.
This prevents any of the private functions from being leaked out through the library interface (at least when compiling with a recent-enough gcc to support the visibility pragma).
Diffstat (limited to 'Makefile.local')
-rw-r--r--Makefile.local3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.local b/Makefile.local
index a602ed08..66ccd6d1 100644
--- a/Makefile.local
+++ b/Makefile.local
@@ -249,7 +249,8 @@ notmuch_client_srcs = \
notmuch-time.c \
query-string.c \
show-message.c \
- json.c
+ json.c \
+ xutil.c
notmuch_client_modules = $(notmuch_client_srcs:.c=.o)