mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 18:11:05 -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_DEPRECATED \
|
||||||
-DG_DISABLE_SINGLE_INCLUDES \
|
-DG_DISABLE_SINGLE_INCLUDES \
|
||||||
-DG_LOG_DOMAIN=\"Clutter\" \
|
-DG_LOG_DOMAIN=\"Clutter\" \
|
||||||
|
$(CLUTTER_DEBUG_CFLAGS) \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
AM_CFLAGS = $(CLUTTER_CFLAGS) $(CLUTTER_DEBUG_CFLAGS) $(MAINTAINER_CFLAGS)
|
AM_CFLAGS = $(CLUTTER_CFLAGS) $(MAINTAINER_CFLAGS)
|
||||||
|
|
||||||
LDADD = \
|
LDADD = \
|
||||||
$(CLUTTER_LT_LDFLAGS) \
|
$(CLUTTER_LT_LDFLAGS) \
|
||||||
-export-dynamic \
|
-export-dynamic \
|
||||||
-export-symbols-regex "^(clutter|cogl|json|pango).*" \
|
-export-symbols-regex "^(clutter|cogl|json).*" \
|
||||||
-rpath $(libdir) \
|
-rpath $(libdir) \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user