diff options
author | Carlo Bramini <carlo.bramix@libero.it> | 2008-05-03 20:17:16 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2008-05-03 20:18:01 -0700 |
commit | 0028f72bc818ca3bc343383fb644765ae12ce769 (patch) | |
tree | 74cc78b9199132d4dc60793a450ae6f9c6b4bde4 | |
parent | bdbc26f3d970581a3248c245451f7fbfb1609601 (diff) |
Add FreeType-dependent functions to fontconfig.def file. (bug 15415)
With PUBLIC_FILES no longer containing the freetype-dependent symbols, those
must be added to the fontconfig.def file build process.
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 129d74b..b91d0e2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -142,10 +142,10 @@ fcftalias.h: $(top_srcdir)/src/makealias $(PUBLIC_FT_FILES) CLEANFILES = $(ALIAS_FILES) -fontconfig.def: $(PUBLIC_FILES) +fontconfig.def: $(PUBLIC_FILES) $(PUBLIC_FT_FILES) echo Generating $@ (echo EXPORTS; \ - (cat $(PUBLIC_FILES) || echo 'FcERROR ()' ) | \ + (cat $(PUBLIC_FILES) $(PUBLIC_FT_FILES) || echo 'FcERROR ()' ) | \ grep '^Fc[^ ]* *(' | sed -e 's/ *(.*$$//' -e 's/^/ /' | \ sort; \ echo LIBRARY libfontconfig-@LT_CURRENT_MINUS_AGE@.dll; \ |