diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-07-25 19:21:06 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-07-25 19:21:06 +0000 |
commit | f6d2a31ff887a74c19177eec8082e34d3390eb84 (patch) | |
tree | fe9114963d2bd40dc6e7be1b5ac23a72dc78a92a /sys/modules/libiconv | |
parent | 14e433b6b78db71a76fff7d87fdc38174d09f67c (diff) | |
download | FreeBSD-src-f6d2a31ff887a74c19177eec8082e34d3390eb84.zip FreeBSD-src-f6d2a31ff887a74c19177eec8082e34d3390eb84.tar.gz |
Add build infrastructure for a libiconv loadable kernel module.
This should allow the use of the smbfs module without the
requirement to rebuild the kernel with LIBICONV.
Diffstat (limited to 'sys/modules/libiconv')
-rw-r--r-- | sys/modules/libiconv/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/modules/libiconv/Makefile b/sys/modules/libiconv/Makefile new file mode 100644 index 0000000..0bd7145 --- /dev/null +++ b/sys/modules/libiconv/Makefile @@ -0,0 +1,12 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../libkern ${.CURDIR}/../../sys + +KMOD= libiconv +SRCS= iconv.c iconv_xlat.c +SRCS+= iconv.h +SRCS+= iconv_converter_if.c iconv_converter_if.h +MFILES= libkern/iconv_converter_if.m +NOMAN= true + +.include <bsd.kmod.mk> |