blob: a3e125511e4bda8ee2a1c8e778b20a79f3cc622b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# $NetBSD: buildlink.mk,v 1.14 2002/09/10 16:06:36 wiz Exp $
#
# This Makefile fragment is included by packages that use libiconv.
#
# To use this Makefile fragment, simply:
#
# (1) Optionally define BUILDLINK_DEPENDS.iconv to the dependency pattern
# for the version of libiconv desired.
# (2) Include this Makefile fragment in the package Makefile,
# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header
# search path, and
# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search
# path.
.if !defined(ICONV_BUILDLINK_MK)
ICONV_BUILDLINK_MK= # defined
.include "../../mk/bsd.buildlink.mk"
BUILDLINK_DEPENDS.iconv?= libiconv>=1.8
.if defined(USE_GNU_ICONV)
_NEED_ICONV= YES
.else
. if exists(/usr/include/iconv.h)
_NEED_ICONV= NO
. else
_NEED_ICONV= YES
. endif
_INCOMPAT_ICONV?= # should be set from defs.${OPSYS}.mk
INCOMPAT_ICONV?= # empty
. for _pattern_ in ${_INCOMPAT_ICONV} ${INCOMPAT_ICONV}
. if !empty(MACHINE_PLATFORM:M${_pattern_})
_NEED_ICONV= YES
. endif
. endfor
.endif
.if ${_NEED_ICONV} == "YES"
DEPENDS+= ${BUILDLINK_DEPENDS.iconv}:../../converters/libiconv
EVAL_PREFIX+= BUILDLINK_PREFIX.iconv=libiconv
BUILDLINK_PREFIX.iconv_DEFAULT= ${LOCALBASE}
.else
BUILDLINK_PREFIX.iconv= /usr
.endif
BUILDLINK_FILES.iconv= include/iconv.h
BUILDLINK_FILES.iconv+= include/libcharset.h
BUILDLINK_FILES.iconv+= lib/libcharset.*
BUILDLINK_FILES.iconv+= lib/libiconv.*
BUILDLINK_TARGETS.iconv= iconv-buildlink
BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.iconv}
pre-configure: ${BUILDLINK_TARGETS.iconv}
iconv-buildlink: _BUILDLINK_USE
.endif # ICONV_BUILDLINK_MK
|