summaryrefslogtreecommitdiff
path: root/fc-case
Commit message (Collapse)AuthorAgeFilesLines
* Update CaseFolding.txt to Unicode 14Akira TAGOH2021-12-211-3/+46
|
* Integrate python scripts to autotools buildAkira TAGOH2020-08-261-363/+0
| | | | Recently some python scripts has been added to the build toolchain for meson build support. but we don't want to maintain multiple files for one purpose. since autotools build support will be guradually discontinued, integrating those scripts into autotools would be better.
* Add Meson build systemTim-Philipp Müller2020-07-312-0/+244
| | | | See https://mesonbuild.com
* Update CaseFolding.txt to Unicode 12.1Akira TAGOH2019-05-081-3/+10
|
* Update CaseFolding.txt to Unicode 11Akira TAGOH2018-06-081-4/+83
|
* Update CaseFolding.txt to Unicode 9.0Akira TAGOH2016-06-231-5/+86
|
* Update CaseFolding.txt to Unicode 8.0Akira TAGOH2015-06-182-3/+147
|
* Update CaseFolding.txt to Unicode 7.0Akira TAGOH2014-06-181-6/+53
|
* Update CaseFolding.txt to Unicode 6.3Akira TAGOH2013-10-111-3/+3
| | | | No real updates between 6.2 and 6.3.
* Really fix cross-compiling and building of tools this timeBehdad Esfahbod2013-01-021-39/+8
|
* Use CC_FOR_BUILD to generate source filesBehdad Esfahbod2013-01-021-7/+1
| | | | | | | | | Previously we were failing if CROSS_COMPILING and the generated headers were not present. It works just fine now. One caveat: the fix is not fully correct since config.h is being included in the files built with CC_FOR_BUILD, but config.h has config for the host system, not the build system. Should be fine though.
* Switch .gitignore to git.mkBehdad Esfahbod2013-01-021-0/+2
|
* Fix build issues on clean treeAkira TAGOH2012-11-301-2/+5
|
* Fix build when srcdir != builddirJon TURNEY2012-11-291-1/+1
| | | | | | | When ./configure'd in a directory other than the srcdir, we need to look in ${top_builddir)/src for the generated header fcstdint.h Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
* Update CaseFolding.txt to Unicode 6.2Akira TAGOH2012-11-201-3/+5
| | | | No real updates between 6.1 and 6.2, but anyway.
* Update CaseFolding.txt to Unicode 6.1Akira TAGOH2012-07-061-4/+17
|
* Fix a build issue due to the use of non-portable variablesAkira TAGOH2012-03-161-4/+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-4/+6
| | | | This reverts commit b75eb63982a54c0fb4576d8a655ef734908d3604.
* Revert "Fix a build fail on some environment."Akira TAGOH2012-03-161-1/+1
| | | | | | | | This reverts commit 0fdfddf2ac93c1c0238b70a265998fd6b5ffe7af. Conflicts: doc/Makefile.am
* Fix a build fail on some environment.Akira TAGOH2012-03-101-1/+1
|
* Fix a build fail on some environmentAkira TAGOH2012-03-101-6/+4
|
* Fix distcheck errorAkira TAGOH2012-03-091-0/+3
|
* Update CaseFolding.txt to Unicode 6.0Behdad Esfahbod2011-01-211-3/+12
|
* Make most generated-files cross-compiling-safeBehdad Esfahbod2010-12-271-6/+8
| | | | | | By simply including a copy in the tarball. Remains fc-arch which is trickier.
* Cleanup copyright notices to replace "Keith Packard" with "the author(s)"Behdad Esfahbod2010-11-103-6/+6
|
* [fc-case] Update CaseFolding.txt to Unicode 5.2.0Behdad Esfahbod2009-11-181-4/+112
|
* Clean up Makefile's a bitBehdad Esfahbod2009-11-181-4/+3
|
* Replace 'KEITH PACKARD' with 'THE AUTHOR(S)' in license text in all filesBehdad Esfahbod2009-03-133-6/+6
|
* Get rid of $Id$ tagsBehdad Esfahbod2009-02-132-2/+2
|
* Make sure alias files are built first (bug 16464)Peter2008-06-221-1/+3
| | | | Signed-off-by: Keith Packard <keithp@keithp.com>
* Remove freetype requirement for build-time applications.Keith Packard2008-01-021-1/+1
| | | | This avoids requiring the freetype development files when cross compiling
* Update CaseFolding.txt to Unicode 5.1.0Behdad Esfahbod2007-10-251-7/+177
|
* Leave generated headers out of distribution (bug 12734).Keith Packard2007-10-241-3/+1
| | | | | | | If the generated header files are included in the distribution, a build outside of the source directory will use them. For machine-specific files, this generates the wrong result (fcarch.h). Leaving them out of the distribution forces them to be built.
* Eliminate .so PLT entries for local symbols. (thanks to Arjan van de Ven)Keith Packard2006-09-051-1/+8
| | | | | | | | | Using a simple shell script that processes the public headers, two header files are constructed that map public symbols to hidden internal aliases avoiding the assocated PLT entry for referring to a public symbol. A few mistakes in the FcPrivate/FcPublic annotations were also discovered through this process
* Remove all .cvsignore filesKeith Packard2006-09-031-6/+0
|
* Rework Object name database to unify typechecking and object lookup.Keith Packard2006-08-301-13/+0
| | | | | | Eliminate ancient list of object name databases and load names into single hash table that includes type information. Typecheck all pattern values to avoid mis-typed pattern elements.
* Include more stub definitions to make HP-UX's C compiler happy.Patrick Lam2006-04-101-0/+3
|
* Fix intel compiler warnings: make many variables static, eliminatePatrick Lam2006-04-061-4/+4
| | | | | | duplicate names, reduce variable scopes, unsigned/signed printf formatting. reviewed by: plam
* Fix compilation on AIX with stub definitions (bug 6097).Patrick Lam2006-03-031-0/+10
|
* Fix more gcc4 warnings:Patrick Lam2005-09-221-4/+4
| | | | | | - Cast sizeof to int, to shut up signedness warnings in comparison. - Add consts where appropriate. reviewed by: Patrick Lam <plam@mit.edu>
* Add SEE ALSO section (bug 2085)Keith Packard2005-01-131-2/+6
| | | | | Cross compiling fixes (bug 280) reviewed by: Keith Packard <keithp@keithp.com>
* Add territory databaseKeith Packard2004-12-291-0/+6
| | | | | Reviewed by: Keith Packard Remove Han characters from Korean orthography
* Adopt some RedHat suggestions for standard font configuration.Keith Packard2004-12-294-0/+1364
Add new helper program 'fc-case' to construct case folding tables from standard Unicode CaseFolding.txt file Re-implement case insensitive functions with Unicode aware versions (including full case folding mappings)