Browse Source

gallium/build: Fix visibility CFLAGS in automake

v2: Andreas Boll <andreas.boll.dev@gmail.com>
    - Fix formatting - use one CFLAG per line

NOTE: This is a candidate for the 9.1 branch.

Signed-off-by: Maarten Lankhorst <m.b.lankhorst@gmail.com>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=59238
Reviewed-by: Andreas Boll <andreas.boll.dev@gmail.com>
tags/mesa-9.2-rc1
Maarten Lankhorst 12 years ago
parent
commit
f70c385351

+ 5
- 2
src/gallium/auxiliary/Makefile.am View File

@@ -7,7 +7,10 @@ noinst_LTLIBRARIES = libgallium.la

AM_CFLAGS = \
-I$(top_srcdir)/src/gallium/auxiliary/util \
$(GALLIUM_CFLAGS)
$(GALLIUM_CFLAGS) \
$(VISIBILITY_CFLAGS)

AM_CXXFLAGS = $(VISIBILITY_CXXFLAGS)

libgallium_la_SOURCES = \
$(C_SOURCES) \
@@ -18,7 +21,7 @@ if HAVE_MESA_LLVM
AM_CFLAGS += \
$(LLVM_CFLAGS)

AM_CXXFLAGS = \
AM_CXXFLAGS += \
$(GALLIUM_CFLAGS) \
$(LLVM_CXXFLAGS)


+ 1
- 0
src/gallium/drivers/rbug/Makefile.am View File

@@ -30,6 +30,7 @@ noinst_LTLIBRARIES = librbug.la
# preprocessor is determined by the ordering of the -I flags.
AM_CFLAGS = \
$(GALLIUM_CFLAGS) \
$(VISIBILITY_CFLAGS) \
-I$(top_srcdir)/src/gallium/drivers \
-I$(top_srcdir)/include


+ 2
- 0
src/gallium/drivers/svga/Makefile.am View File

@@ -29,6 +29,8 @@ AM_CPPFLAGS = \
-I$(top_srcdir)/include \
$(GALLIUM_CFLAGS)

AM_CFLAGS = $(VISIBILITY_CFLAGS)

#On some systems -std= must be added to CFLAGS to be the last -std=
CFLAGS += -std=gnu99


+ 2
- 1
src/gallium/drivers/trace/Makefile.am View File

@@ -1,7 +1,8 @@
include $(top_srcdir)/src/gallium/Automake.inc

AM_CFLAGS = \
$(GALLIUM_CFLAGS)
$(GALLIUM_CFLAGS) \
$(VISIBILITY_CFLAGS)

noinst_LTLIBRARIES = libtrace.la


+ 3
- 1
src/gallium/state_trackers/xa/Makefile.am View File

@@ -24,7 +24,9 @@ include $(top_srcdir)/src/gallium/Automake.inc

AM_CFLAGS = \
-Wall -pedantic \
$(GALLIUM_CFLAGS)
$(GALLIUM_CFLAGS) \
$(VISIBILITY_CFLAGS)

AM_CPPFLAGS = \
-I$(top_srcdir)/src/gallium/ \
-I$(top_srcdir)/src/gallium/winsys \

+ 2
- 0
src/gallium/winsys/svga/drm/Makefile.am View File

@@ -31,6 +31,8 @@ AM_CPPFLAGS = \
$(GALLIUM_CFLAGS) \
$(LIBDRM_CFLAGS)

AM_CFLAGS = $(VISIBILITY_CFLAGS)

#On some systems -std= must be added to CFLAGS to be the last -std=
CFLAGS += -std=gnu99 -D_FILE_OFFSET_BITS=64


Loading…
Cancel
Save