From: Kristian Høgsberg Date: Tue, 24 Mar 2015 16:41:08 +0000 (-0700) Subject: mesa: Apply visibility flags to src/Makefile.am targets X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=169b389a34966b921fe4b75baff5503c3a31a98a;p=mesa.git mesa: Apply visibility flags to src/Makefile.am targets We were building libglsl_util.la without our visibility flags and leaking hash_table_* symbols. Signed-off-by: Kristian Høgsberg Reviewed-by: Matt Turner --- diff --git a/src/Makefile.am b/src/Makefile.am index 8edf33373e9..874a3334a83 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -55,6 +55,9 @@ endif EXTRA_DIST = egl/docs getopt hgl SConscript +AM_CFLAGS = $(VISIBILITY_CFLAGS) +AM_CXXFLAGS = $(VISIBILITY_CXXFLAGS) + AM_CPPFLAGS = \ -I$(top_srcdir)/include/ \ -I$(top_srcdir)/src/mapi/ \