blob: dd91d66921cae3c9f94617dad0fd43e5ec98f359 (
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
|
# $NetBSD: openwin.mk,v 1.4 2006/05/22 22:22:04 jlam Exp $
FILES_LIST= ${FILESDIR}/openwin
# Fix bugs in older versions of openwin headers
STDC_REPLACE= -e 's/^\#if (__STDC__/\#if (defined(__STDC__)/'
STDC_REPLACE+= -e 's/^\#if ((__STDC__/\#if ((defined(__STDC__)/'
CREATE_X11LINK= case $$file in \
include/X11/Xlibint.h) \
${SED} ${STDC_REPLACE} < $$src > $$dest; \
;; \
include/X11/Xmd.h) \
${SED} ${STDC_REPLACE} < $$src > $$dest; \
;; \
include/X11/extensions/multibufst.h) \
${SED} ${STDC_REPLACE} < $$src > $$dest; \
;; \
*) \
${LN} -s $$src $$dest; \
esac
# disable checking of shared library dependencies, as openwin/dt can
# have some libraries missing in a "normal" installation and this
# shouldn't break the package.
#
CHECK_SHLIBS_SUPPORTED= no
|