diff options
Diffstat (limited to 'Build/source/libs/graphite-engine/graphite-engine.ac')
-rw-r--r-- | Build/source/libs/graphite-engine/graphite-engine.ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Build/source/libs/graphite-engine/graphite-engine.ac b/Build/source/libs/graphite-engine/graphite-engine.ac new file mode 100644 index 00000000000..dddbe63cb82 --- /dev/null +++ b/Build/source/libs/graphite-engine/graphite-engine.ac @@ -0,0 +1,13 @@ +if test "$needs_graphite" = no; then + GRAPHITECPPFLAGS= + LDGRAPHITE= + GRAPHITEDEP= +else + GRAPHITECPPFLAGS='-I$(GRAPHITESRCDIR)/include' + LDGRAPHITE='$(GRAPHITEDIR)/src/.libs/libgraphite.a' + GRAPHITEDEP='$(GRAPHITEDIR)/src/.libs/libgraphite.a' +fi + +AC_SUBST(GRAPHITECPPFLAGS) +AC_SUBST(LDGRAPHITE) +AC_SUBST(GRAPHITEDEP) |