db2af39373
it is all in the one place again. Rename libc/iconv/iconv.c to bsd_iconv.c. Compile the wrappers into libc.a so that WITHOUT_DYNAMICROOT works again. Discussed with: kib (and partly stolen from his patch)
10 lines
255 B
Makefile
10 lines
255 B
Makefile
# $FreeBSD$
|
|
|
|
.if ${MK_ICONV} == "yes"
|
|
LIBC_NONSHARED_SRCS+= \
|
|
__iconv.c __iconv_free_list.c __iconv_get_list.c \
|
|
iconv.c iconv_canonicalize.c iconv_close.c \
|
|
iconv_open.c iconv_open_into.c \
|
|
iconv_set_relocation_prefix.c iconvctl.c iconvlist.c
|
|
.endif
|