diff options
author | brooks <brooks@FreeBSD.org> | 2012-12-18 16:37:24 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2012-12-18 16:37:24 +0000 |
commit | 25561669c9e3d0a05c2bc54cce35d2f8211c4962 (patch) | |
tree | af2fc41b0960db64adb617ce885a81fe748f415c /include/Makefile | |
parent | 84cec43191f814fd6b8dda3470035312d342caff (diff) | |
parent | 8b7c283f17726c97bbffe5e3826bf4ff2b1599cf (diff) | |
download | FreeBSD-src-25561669c9e3d0a05c2bc54cce35d2f8211c4962.zip FreeBSD-src-25561669c9e3d0a05c2bc54cce35d2f8211c4962.tar.gz |
Replace our implementation of the vis(3) and unvis(3) APIs with
NetBSD's. This output size limited versions of vis and unvis functions
as well as a set of vis variants that allow arbitrary characters to be
specified for encoding.
Finally, MIME Quoted-Printable encoding as described in RFC 2045 is
supported.
Diffstat (limited to 'include/Makefile')
-rw-r--r-- | include/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/Makefile b/include/Makefile index 161dcf0..3366339 100644 --- a/include/Makefile +++ b/include/Makefile @@ -23,9 +23,12 @@ INCS= a.out.h ar.h assert.h bitstring.h complex.h cpio.h _ctype.h ctype.h \ stdnoreturn.h stdio.h stdlib.h string.h stringlist.h \ strings.h sysexits.h tar.h termios.h tgmath.h \ time.h timeconv.h timers.h ttyent.h \ - ulimit.h unistd.h utime.h utmpx.h uuid.h varargs.h vis.h \ + ulimit.h unistd.h utime.h utmpx.h uuid.h varargs.h \ wchar.h wctype.h wordexp.h xlocale.h +.PATH: ${.CURDIR}/../contrib/libc-vis +INCS+= vis.h + MHDRS= float.h floatingpoint.h stdarg.h PHDRS= sched.h _semaphore.h |