mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
bc1b0038da
Some features are Unicode normalization, stripping of default ignorable characters, case folding and detection of grapheme cluster boundaries. A special character mapping is available, which converts for example the characters "Hyphen" (U+2010), "Minus" (U+2212) and "Hyphen-Minus" (U+002D, ASCII Minus) all into the ASCII minus sign, to make them equal for comparisons. WWW: http://www.flexiguided.de/publications.utf8proc.en.html
12 lines
250 B
Plaintext
12 lines
250 B
Plaintext
--- Makefile.orig 2007-07-22 14:53:03.000000000 +0800
|
|
+++ Makefile 2007-10-15 10:43:18.000000000 +0800
|
|
@@ -4,7 +4,7 @@
|
|
# settings
|
|
|
|
cflags = -O2 -std=c99 -pedantic -Wall -fpic $(CFLAGS)
|
|
-cc = gcc $(cflags)
|
|
+cc = $(CC) $(cflags)
|
|
|
|
|
|
# meta targets
|