utf8proc
annotate pgsql/Makefile @ 2:aaad485d5335
Version 0.3
- changed normalization from NFC to NFKC for postgresql unifold function
- added support to mark the beginning of a grapheme cluster with 0xFF (option: CHARBOUND)
- added the ruby method String#chars, which is returning an array of UTF-8 encoded grapheme clusters
- added NLF2LF transformation in postgresql unifold function
- added the DECOMPOSE option, if you neither use COMPOSE or DECOMPOSE, no normalization will be performed (different from previous versions)
- using integer constants rather than C-strings for character properties
- fixed (hopefully) a problem with the ruby library on Mac OS X, which occured when compiler optimization was switched on
- changed normalization from NFC to NFKC for postgresql unifold function
- added support to mark the beginning of a grapheme cluster with 0xFF (option: CHARBOUND)
- added the ruby method String#chars, which is returning an array of UTF-8 encoded grapheme clusters
- added NLF2LF transformation in postgresql unifold function
- added the DECOMPOSE option, if you neither use COMPOSE or DECOMPOSE, no normalization will be performed (different from previous versions)
- using integer constants rather than C-strings for character properties
- fixed (hopefully) a problem with the ruby library on Mac OS X, which occured when compiler optimization was switched on
| author | jbe |
|---|---|
| date | Fri Aug 04 12:00:00 2006 +0200 (2006-08-04) |
| parents | a0368662434c |
| children |
| rev | line source |
|---|---|
| jbe@0 | 1 utf8proc_pgsql.so: utf8proc_pgsql.o |
| jbe@0 | 2 ld -shared -o utf8proc_pgsql.so utf8proc_pgsql.o |
| jbe@0 | 3 |
| jbe@0 | 4 utf8proc_pgsql.o: utf8proc_pgsql.c |
| jbe@0 | 5 gcc -Wall -fpic -c -I`pg_config --includedir-server` \ |
| jbe@0 | 6 -o utf8proc_pgsql.o utf8proc_pgsql.c |
| jbe@0 | 7 |
| jbe@0 | 8 clean: |
| jbe@0 | 9 rm -f *.o *.so |
| jbe@0 | 10 |