mirror of
https://github.com/brl/mutter.git
synced 2024-11-10 07:56:14 -05:00
build: Fix CPP and LD flags
• The debug flags are pre-processor ones, so they should be listed inside AM_CPPFLAGS. • Clutter's publicly exported symbols match the following regular expression: ^(clutter|cogl|json)_* The old one also listed "pango" as a possible prefix, but the Pango API is now under the Cogl namespace.
This commit is contained in:
parent
17e3b526d5
commit
59d84f7806
@ -38,14 +38,15 @@ AM_CPPFLAGS = \
|
||||
-DG_DISABLE_DEPRECATED \
|
||||
-DG_DISABLE_SINGLE_INCLUDES \
|
||||
-DG_LOG_DOMAIN=\"Clutter\" \
|
||||
$(CLUTTER_DEBUG_CFLAGS) \
|
||||
$(NULL)
|
||||
|
||||
AM_CFLAGS = $(CLUTTER_CFLAGS) $(CLUTTER_DEBUG_CFLAGS) $(MAINTAINER_CFLAGS)
|
||||
AM_CFLAGS = $(CLUTTER_CFLAGS) $(MAINTAINER_CFLAGS)
|
||||
|
||||
LDADD = \
|
||||
$(CLUTTER_LT_LDFLAGS) \
|
||||
-export-dynamic \
|
||||
-export-symbols-regex "^(clutter|cogl|json|pango).*" \
|
||||
-export-symbols-regex "^(clutter|cogl|json).*" \
|
||||
-rpath $(libdir) \
|
||||
$(NULL)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user