diff options
author | steve <steve@FreeBSD.org> | 1999-04-16 23:34:30 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-04-16 23:34:30 +0000 |
commit | 0486d317d596c6fb4365dbd37372cd58a14c5e07 (patch) | |
tree | 606d0c99b6b2ada5531ab8ae4770e82af1c034ec /converters/libutf-8/files | |
parent | feda8970bd5860d0859f08d141c429438438c110 (diff) | |
download | FreeBSD-ports-0486d317d596c6fb4365dbd37372cd58a14c5e07.zip FreeBSD-ports-0486d317d596c6fb4365dbd37372cd58a14c5e07.tar.gz |
Initial import of libutf-8 version 1.0.
A library of routines for the conversion between 31-bit Unicode values (UCS-4)
and their 8-bit encoding (UTF-9) defined in RFC 2044. The routines can handle
input and output from/to files and memory. Useful for i18n programmers.
PR: 10919
Submitted by: G. Adam Stanislav <zen@buddhist.com>
Diffstat (limited to 'converters/libutf-8/files')
-rw-r--r-- | converters/libutf-8/files/patch-aa | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/converters/libutf-8/files/patch-aa b/converters/libutf-8/files/patch-aa new file mode 100644 index 0000000..05f4eaf --- /dev/null +++ b/converters/libutf-8/files/patch-aa @@ -0,0 +1,9 @@ +--- Makefile.orig Thu Apr 1 01:00:12 1999 ++++ Makefile Fri Apr 16 18:11:12 1999 +@@ -29,5 +29,5 @@ + all: libutf-8.so.1 + + libutf-8.so.1: fget.utf-8.o sget.utf-8.o fput.utf-8.o sput.utf-8.o nomacros.o +- ld -o libutf-8.so.1 fget.utf-8.o sget.utf-8.o fput.utf-8.o sput.utf-8.o nomacros.o -shared -soname libutf-8.so ++ ld -o $@ fget.utf-8.o sget.utf-8.o fput.utf-8.o sput.utf-8.o nomacros.o -shared -soname $@ + |