summaryrefslogtreecommitdiff
path: root/fc-scan
AgeCommit message (Collapse)AuthorFilesLines
2020-09-15fc-scan: add --sysroot optionAkira TAGOH1-9/+20
and fix scanning to get things work with sysroot Fixes https://gitlab.freedesktop.org/fontconfig/fontconfig/-/issues/225
2020-07-31Add Meson build systemTim-Philipp Müller1-0/+9
See https://mesonbuild.com
2020-07-07fccompat: fix build on Windows without unistd.hTim-Philipp Müller1-1/+4
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/access-waccess?view=vs-2019
2018-03-15call setlocaleAkira TAGOH1-0/+2
2017-11-07Add the ruleset description supportAkira TAGOH1-11/+19
Trying to address what these configuration files really do. This change allows to see the short description that mention the purpose of the content in the config file and obtain them through API. This change also encourage one who want to make some UI for the user-specific configuration management. it is the main purpose of this change for me though. Aside from that, I've also made programs translatable. so we see more dependencies on the build time for gettext, and itstool to generate PO from xml.
2017-09-20[fc-match/fc-list/fc-query/fc-scan] Add --brief that is like --verbose ↵Behdad Esfahbod1-2/+15
without charset
2017-09-12Add FcFreeTypeQueryAll()Behdad Esfahbod1-3/+1
Like FcFreeTypeQuery(), but adds patterns for all fonts found, including named instances of variable fonts. If id is -1, then all collection faces are queried. Returns number of fonts added. This merges the same face loop that was in fc-query. and fcdir.c. Needs documentation update.
2017-09-12Remove blanks support from fc-scanBehdad Esfahbod2-27/+5
2015-05-12Add missing description for usageAkira TAGOH1-3/+4
2015-05-11Observe blanks to compute correct languages in fc-query/fc-scanAkira TAGOH2-7/+28
Added --ignore-blanks option to get back the behavior. https://bugs.freedesktop.org/show_bug.cgi?id=79955
2013-04-08build-chain, replace INCLUDES directive by AM_CPPFLAGSSebastian Freundt1-1/+1
As of automake-13.1 the INCLUDES directive is no longer supported. An automake run will return with an error. This changeset simply follows automake's advice to replace INCLUDES by AM_CPPFLAGS.
2013-01-03Remove FcInit() calls from toolsBehdad Esfahbod1-6/+0
Library is supposed to automatically initialize itself. If it doesn't, it's a bug.
2013-01-02Switch .gitignore to git.mkBehdad Esfahbod1-0/+2
2012-10-26Use automake variable instead of cleaning files in clean-localAkira TAGOH1-4/+3
just for git.mk coming up from Behdad's threadsafe branch
2012-06-01Fix the wrong estimation for the memory usage information in fontconfigAkira TAGOH1-1/+1
2012-03-16Fix a build issue due to the use of non-portable variablesAkira TAGOH1-2/+2
$< isn't supported in BSD make say. $(RM) is pre-defined in GNU make though, not in BSD make say. so changed to check on configure if it's pre-defined by make, otherwise set the appropriate command to $(RM). This would be a workaround until it has the certain pre-defined value.
2012-03-16Revert "Fix a build fail on some environment."Akira TAGOH1-4/+4
This reverts commit 0fdfddf2ac93c1c0238b70a265998fd6b5ffe7af. Conflicts: doc/Makefile.am
2012-03-10Fix a build fail on some environment.Akira TAGOH1-4/+4
2010-11-10Cleanup copyright notices to replace "Keith Packard" with "the author(s)"Behdad Esfahbod2-4/+4
2010-04-20Add fc-pattern cmdline toolBehdad Esfahbod1-0/+1
2009-07-24Fix doc syntax (#22902)Behdad Esfahbod1-1/+1
2009-03-13Replace 'KEITH PACKARD' with 'THE AUTHOR(S)' in license text in all filesBehdad Esfahbod2-4/+4
2009-02-15[fcformat] Add element filtering and deletionBehdad Esfahbod1-2/+5
The filtering, '%{+elt1,elt2,elt3{subexpr}}' will evaluate subexpr with a pattern only having the listed elements from the surrounding pattern. The deletion, '%{-elt1,elt2,elt3{subexpr}}' will evaluate subexpr with a the surrounding pattern sans the listed elements.
2009-02-13Cleanup all manpage.* filesBehdad Esfahbod1-1/+1
Recent doc2man generates files called manpage.log. This was breaking build.
2009-02-13Add fc-scan too that runs FcFileScan/FcDirScanBehdad Esfahbod3-0/+416
This is quite similar to fc-query, but calling FcFileScan/FcDirScan instead of FcFreeTypeQuery.