diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-09-13 10:52:14 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-09-13 10:52:14 +0100 |
commit | 6cb3ff9c1943c58f5b6892af3f18f6aaa24494b6 (patch) | |
tree | 07ae950132347ccad6a27148a651e826f0688ee7 /src/Makefile.win32.features | |
parent | 556d064f4eb3625022f0d99461929ff3fafc9c71 (diff) |
[configure] --enable-symbol-lookup
There you go Joonas, I don't always ignore your suggestions! This is
simple patch to allow the user to disable symbol loops in case the
auto-detection fails on some obscure (perhaps OpenBSD) platform. Or in
case the user really wants to trim a few bytes from a library only used
during tracing!
Diffstat (limited to 'src/Makefile.win32.features')
-rw-r--r-- | src/Makefile.win32.features | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Makefile.win32.features b/src/Makefile.win32.features index b1c81c3c..4e55642d 100644 --- a/src/Makefile.win32.features +++ b/src/Makefile.win32.features @@ -479,3 +479,10 @@ ifeq ($(CAIRO_HAS_INTERPRETER),1) enabled_cairo_private += $(cairo_interpreter_private) $(cairo_interpreter_headers) enabled_cairo_sources += $(cairo_interpreter_sources) endif + +all_cairo_private += $(cairo_symbol_lookup_private) $(cairo_symbol_lookup_headers) +all_cairo_sources += $(cairo_symbol_lookup_sources) +ifeq ($(CAIRO_HAS_SYMBOL_LOOKUP),1) +enabled_cairo_private += $(cairo_symbol_lookup_private) $(cairo_symbol_lookup_headers) +enabled_cairo_sources += $(cairo_symbol_lookup_sources) +endif |