diff options
author | will <will@FreeBSD.org> | 2003-06-03 12:52:55 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2003-06-03 12:52:55 +0800 |
commit | c3018c957b92d3a432fbb8b1f9f1018e5af468a0 (patch) | |
tree | e2868fba515eb9cc7d21ea89a684f4134289a3d0 /misc/utftools/files | |
parent | 4970485e397a68ee2db1ebf8f75c8a0ff06f12ae (diff) | |
download | freebsd-ports-gnome-c3018c957b92d3a432fbb8b1f9f1018e5af468a0.tar.gz freebsd-ports-gnome-c3018c957b92d3a432fbb8b1f9f1018e5af468a0.tar.zst freebsd-ports-gnome-c3018c957b92d3a432fbb8b1f9f1018e5af468a0.zip |
Add utftools 1.6, an UTF-aware wc, fmt, expand, and unexpand.
PR: 52031
Submitted by: Serge Gagnon <gagnon__s@videotron.ca>
Diffstat (limited to 'misc/utftools/files')
-rw-r--r-- | misc/utftools/files/patch-Makefile.in | 13 | ||||
-rw-r--r-- | misc/utftools/files/patch-expand.c | 10 | ||||
-rw-r--r-- | misc/utftools/files/patch-fmt.c | 10 | ||||
-rw-r--r-- | misc/utftools/files/patch-unexpand.c | 10 | ||||
-rw-r--r-- | misc/utftools/files/patch-wc.c | 10 |
5 files changed, 53 insertions, 0 deletions
diff --git a/misc/utftools/files/patch-Makefile.in b/misc/utftools/files/patch-Makefile.in new file mode 100644 index 000000000000..1204279524fe --- /dev/null +++ b/misc/utftools/files/patch-Makefile.in @@ -0,0 +1,13 @@ +--- Makefile.in.orig Sat May 10 13:57:39 2003 ++++ Makefile.in Sat May 10 14:01:43 2003 +@@ -39,8 +39,8 @@ + + install : all + $(srcdir)/mkinstalldirs $(BINDIR) $(MANDIR)/man1 +- for bin in $(BINS) ; do $(INSTALL) $$bin $(BINDIR)/$$bin ; done +- for man in $(MANS) ; do $(INSTALL_DATA) $(srcdir)/$$man $(MANDIR)/man1/$$man ; done ++ for bin in $(BINS) ; do $(INSTALL) $$bin $(BINDIR)/utf8-$$bin ; done ++ for man in $(MANS) ; do $(INSTALL_DATA) $(srcdir)/$$man $(MANDIR)/man1/utf8-$$man ; done + + uninstall : + -for bin in $(BINS) ; do rm $(BINDIR)/$$bin ; done diff --git a/misc/utftools/files/patch-expand.c b/misc/utftools/files/patch-expand.c new file mode 100644 index 000000000000..3d8eb5889997 --- /dev/null +++ b/misc/utftools/files/patch-expand.c @@ -0,0 +1,10 @@ +--- expand.c.orig Sat May 10 13:52:15 2003 ++++ expand.c Sat May 10 13:52:31 2003 +@@ -5,6 +5,7 @@ + #include <stdio.h> + #include <string.h> + #include <errno.h> ++#include <unistd.h> + + #include <utf.h> + #include <utftools.h> diff --git a/misc/utftools/files/patch-fmt.c b/misc/utftools/files/patch-fmt.c new file mode 100644 index 000000000000..1c21a61679c1 --- /dev/null +++ b/misc/utftools/files/patch-fmt.c @@ -0,0 +1,10 @@ +--- fmt.c.orig Sat May 10 13:50:39 2003 ++++ fmt.c Sat May 10 13:51:23 2003 +@@ -4,6 +4,7 @@ + #include <stdio.h> + #include <string.h> + #include <errno.h> ++#include <unistd.h> + + #include <utf.h> + #include <utftools.h> diff --git a/misc/utftools/files/patch-unexpand.c b/misc/utftools/files/patch-unexpand.c new file mode 100644 index 000000000000..380261da9c43 --- /dev/null +++ b/misc/utftools/files/patch-unexpand.c @@ -0,0 +1,10 @@ +--- unexpand.c.orig Sat May 10 13:52:43 2003 ++++ unexpand.c Sat May 10 13:52:58 2003 +@@ -5,6 +5,7 @@ + #include <stdio.h> + #include <string.h> + #include <errno.h> ++#include <unistd.h> + + #include <utf.h> + #include <utftools.h> diff --git a/misc/utftools/files/patch-wc.c b/misc/utftools/files/patch-wc.c new file mode 100644 index 000000000000..7f1028b7b2d3 --- /dev/null +++ b/misc/utftools/files/patch-wc.c @@ -0,0 +1,10 @@ +--- wc.c.orig Sat May 10 13:51:37 2003 ++++ wc.c Sat May 10 13:52:00 2003 +@@ -4,6 +4,7 @@ + + #include <stdio.h> + #include <string.h> ++#include <unistd.h> + + #include <utf.h> + #include <utftools.h> |