summaryrefslogtreecommitdiff
path: root/fc-list
AgeCommit message (Collapse)AuthorFilesLines
2018-03-15call setlocaleAkira TAGOH1-0/+2
2017-11-07Add the ruleset description supportAkira TAGOH1-16/+24
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-6/+18
without charset
2013-10-03exit with the error code when FcNameParse() failedAkira TAGOH1-0/+5
2013-09-25Add the description of -q option to the man pageAkira TAGOH1-0/+12
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-5/+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
2012-02-21fc-{list,match}: constify format stringMike Frysinger1-10/+10
We don't free this string anywhere, so mark it const to avoid gcc warnings and possible bugs in the future (if people did try freeing it). fc-list.c: In function 'main': fc-list.c:161:16: warning: pointer targets in assignment differ in signedness [-Wpointer-sign] fc-match.c: In function 'main': fc-match.c:201:13: warning: pointer targets in assignment differ in signedness [-Wpointer-sign] fc-match.c:203:13: warning: pointer targets in assignment differ in signedness [-Wpointer-sign] Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-06-20Bug 26718 - "fc-match sans file" doesn't workBehdad Esfahbod1-13/+4
- Do not throw away FC_FILE in FcNameUnparse - Update the builtin "fclist" format to remove FC_FILE properly instead - Switch fc-list to use FcPatternFormat() Note that I had previously broken fc-list and it was not showing the file name anymore. No one noticed that it seems! Now fixed.
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-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-13[fc-match] Accept list of elements like fc-list (bug #13017)Behdad Esfahbod2-21/+20
Also make --verbose not ignore list of elements and only print those. Update docs.
2009-02-13Add fc-scan too that runs FcFileScan/FcDirScanBehdad Esfahbod1-3/+4
This is quite similar to fc-query, but calling FcFileScan/FcDirScan instead of FcFreeTypeQuery.
2009-02-13Implement FcPatternFormat and use it in cmdline tools (bug #17107)Behdad Esfahbod2-13/+47
Still need to add more features, but the API is there, and used by cmdline tools with -f or --format.
2009-02-13Implement fc-list --quiet ala grep (bug #17141)Behdad Esfahbod1-7/+20
Exits 1 if no fonts matched, 0 otherwise.
2009-02-13Handle -h and --help according to GNU Coding Standards (#17104)Behdad Esfahbod2-18/+22
Added -h instead of -?. And upon -h and --help, write usave to stdout instead of stdin, and return 0 instead of 1. -? still works like before as that's what getopt returns upon unknown arguments.
2009-02-13Get rid of $Id$ tagsBehdad Esfahbod1-1/+1
2009-02-13Implement fc-list --verbose (#13015)Behdad Esfahbod2-20/+31
A private FcObjectGetSet() is implemented that provides an FcObjectSet of all registered elements. FcFontSetList() is then modified to use the object set from FcObjectGetSet() if provided object-set is NULL. Alternatively FcObjectGetSet() can be made public. In that case fc-list can use that as a base if --verbose is included, and also add any elements provided by the user (though that has no effect, as all elements from the cache are already registered). Currently fc-list ignores user-provided elements if --verbose is specified.
2009-02-13Add fc-query (#13019)Behdad Esfahbod1-0/+1
2009-02-13Update man pagesBehdad Esfahbod1-4/+8
2009-02-13Replace RCS Id tags with the file nameBehdad Esfahbod1-1/+1
2008-04-18Fix build with !ENABLE_DOCS and no built manpages.Eric Anholt1-2/+6
2008-01-08Eliminate references to freetype from utility Makefile.am'sKeith Packard1-2/+2
The utility programs don't use any freetype interfaces, so they don't need to directly refer to freetype headers or libraries.
2007-10-25Distribute man source files for command line programs (bug 9678).Keith Packard1-3/+3
For systems on whch DOCBOOK is unavailable, distribute command line program manual pages in .man format.
2006-09-03Remove all .cvsignore filesKeith Packard1-6/+0
2006-08-31Revert ABI changes from version 2.3Keith Packard1-1/+1
Accidental ABI changes and additions were discovered by looking at the differences in fontconfig.h. All of those have been reverted.
2006-04-07LD_ADD missing dependencies for binaries. Reported by Edson Alves Pereira.Patrick Lam1-2/+1
reviewed by: plam
2006-02-21Eliminate unused vars reported by Intel's compiler.Patrick Lam1-2/+2
reviewed by: plam
2006-02-05Make 'make distcheck' work with automake 1.6.3.Patrick Lam1-1/+1
reviewed by: plam
2005-10-21Prevent fc-list from escaping strings when printing them.Patrick Lam1-1/+1
2004-12-07Change files from ISO-Latin-1 to UTF-8Keith Packard2-2/+2
2004-04-14Add instructions for doing a releasefc-2_2_93Keith Packard1-1/+1
clean up .spec file; perhaps this will be useful to somebody... Update to 2.2.93 Make 'scanopen' static so GCC doesn't whine about lacking prototype Add WARN_CFLAGS to pass -W flags for GCC systems Change various char types around to match across function calls. Fixed bug in using available_sizes[i].height which is in pixels, not 64ths of a pixel.
2003-12-11Move man_MANS into the 'if USEDOCBOOK' block.Carl Worth1-2/+2
Move man_MANS into the 'if USEDOCBOOK' block. (all-local): Remove excessive whitespace. Add 'set -e' to abort when any program fails, (avoids printing of 'now type make' after configure aborts).
2003-11-16Add some example usages.Noah Levitt1-0/+23
2003-10-27Yet more cleanups to finish getting 'make distcheck' working This has beenKeith Packard1-1/+1
tested to ensure that it even works from a _build directory.
2003-10-27Attempts to fix 'make distcheck' work. Things are progressing pretty well,Keith Packard1-4/+6
but there are still failures long into the process dealing with docs (as always). The big changes here are mostly to make $(srcdir) != "." work correctly, fixing the docbook related sections and fc-lang were particularily tricky. Docbook refuses to load system entities from anywhere other than where the original .sgml file was located, so no luck looking in "." for the configure-generated version.sgml and confdir.sgml files. fc-lang needed help finding .orth files; added a -d option to set the directory as the least evil of many options. Now to go use a faster machine and try and wring out the last issues.
2003-10-09Replace fc-cache and fc-list manpages with more detailed, SGML versions.Josselin Mouette4-38/+189
2003-08-15Added new FcFini function for cleaning up all memory. Fixed a few memoryCarl Worth1-0/+4
leaks. fc-list now calls FcFini, (and is now leak-free according to valgrind)
2003-08-12Bug 103 -- FcObjectSetBuild must be terminated by (char *) 0 as varargs areKeith Packard1-1/+1
untyped
2003-05-31(Bug 87) Automake 1.4 doesn't do man_MAN1 correctly (Bug 88) Fix usage infoKeith Packard3-3/+15
on non-long option systems (Tim Mooney)
2003-03-10Ship manualKeith Packard1-0/+2