summaryrefslogtreecommitdiff
path: root/fc-cat/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* build-chain, replace INCLUDES directive by AM_CPPFLAGSSebastian Freundt2013-04-081-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.
* Switch .gitignore to git.mkBehdad Esfahbod2013-01-021-0/+2
|
* Use automake variable instead of cleaning files in clean-localAkira TAGOH2012-10-261-4/+3
| | | | just for git.mk coming up from Behdad's threadsafe branch
* Fix a build issue due to the use of non-portable variablesAkira TAGOH2012-03-161-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.
* Revert "Fix a build fail on some environment."Akira TAGOH2012-03-161-3/+3
| | | | | | | | This reverts commit 0fdfddf2ac93c1c0238b70a265998fd6b5ffe7af. Conflicts: doc/Makefile.am
* Fix a build fail on some environment.Akira TAGOH2012-03-101-3/+3
|
* Cleanup copyright notices to replace "Keith Packard" with "the author(s)"Behdad Esfahbod2010-11-101-2/+2
|
* Replace 'KEITH PACKARD' with 'THE AUTHOR(S)' in license text in all filesBehdad Esfahbod2009-03-131-2/+2
|
* Cleanup all manpage.* filesBehdad Esfahbod2009-02-131-1/+1
| | | | Recent doc2man generates files called manpage.log. This was breaking build.
* Get rid of $Id$ tagsBehdad Esfahbod2009-02-131-1/+1
|
* Fix build with !ENABLE_DOCS and no built manpages.Eric Anholt2008-04-181-2/+6
|
* Eliminate references to freetype from utility Makefile.am'sKeith Packard2008-01-081-2/+2
| | | | | The utility programs don't use any freetype interfaces, so they don't need to directly refer to freetype headers or libraries.
* Distribute man source files for command line programs (bug 9678).Keith Packard2007-10-251-3/+3
| | | | | For systems on whch DOCBOOK is unavailable, distribute command line program manual pages in .man format.
* Hide private functions in shared library. Export functionality for utilities.Keith Packard2006-09-041-1/+1
| | | | | | | | | | Borrowing header stuff written for cairo, fontconfig now exposes in the shared library only the symbols which are included in the public header files. All private symbols are hidden using suitable compiler directives. A few new public functions were required for the fontconfig utility programs (fc-cat and fc-cache) so those were added, bumping the .so minor version number in the process.
* Change $(pkgcachedir) to $(fc_cachedir) in fc-cat and fc-cache Makefile.amKeith Packard2006-08-311-2/+0
| | | | | make distcheck caught this bug; the effect of 'make uninstall' would have been to execute 'rm -rf /', somewhat less that desirable.
* LD_ADD missing dependencies for binaries. Reported by Edson Alves Pereira.Patrick Lam2006-04-071-1/+1
| | | | reviewed by: plam
* Make 'make distcheck' work with automake 1.6.3.Patrick Lam2006-02-051-1/+1
| | | | reviewed by: plam
* Migrate cache files from fonts directories to /var/cache/fontconfig. ThisPatrick Lam2005-12-091-0/+2
| | | | | | | helps make fontconfig FHS-compliant, but requires that all caches get rebuilt. Also, autogen.sh now needs the additional parameter --localstatedir=/var.
* Add new command-line utility, fc-cat, to convert fonts.cache-2 files intoPatrick Lam2005-09-231-0/+55
fonts.cache-1 files (e.g. for grepping and validation of the mmap codepath), as per James Cloos' request. Remove done 'TODO' comment. Updates for development release 2.3.90.