mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2026-02-17 22:05:58 -05:00
build: Stop putting FFI_CFLAGS in AM_CFLAGS
AM_CFLAGS are the defaults passed to anything that doesn't specify its own _CFLAGS, so instead of putting FFI_CFLAGS there, let's just add that to anything that actually needs it. The only thing that needs it but didn't have it specifically was libwayland_util (for connection.c) Signed-off-by: Derek Foreman <derekf@osg.samsung.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
This commit is contained in:
parent
e06f88cf91
commit
aeeca31696
1 changed files with 2 additions and 1 deletions
|
|
@ -9,7 +9,7 @@ AM_CPPFLAGS = \
|
|||
-I$(top_srcdir)/src \
|
||||
-I$(top_builddir)/protocol
|
||||
|
||||
AM_CFLAGS = $(GCC_CFLAGS) $(FFI_CFLAGS)
|
||||
AM_CFLAGS = $(GCC_CFLAGS)
|
||||
|
||||
aclocaldir = $(datadir)/aclocal
|
||||
dist_aclocal_DATA = wayland-scanner.m4
|
||||
|
|
@ -39,6 +39,7 @@ nodist_include_HEADERS = \
|
|||
protocol/wayland-server-protocol.h \
|
||||
protocol/wayland-client-protocol.h
|
||||
|
||||
libwayland_util_la_CFLAGS = $(FFI_CFLAGS) $(GCC_CFLAGS)
|
||||
libwayland_util_la_SOURCES = \
|
||||
src/connection.c \
|
||||
src/wayland-util.c \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue