add LIBX11_XCB; unfortunately since the library is named with a -

in it, we have to use an ugly hard coded assignment for now.
(could be cleaned up with more make variable magic i'm sure.)
This commit is contained in:
mrg 2013-05-31 06:48:43 +00:00
parent 1ecae96708
commit f8cebe2a9e
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: bsd.README,v 1.316 2013/04/28 04:44:21 joerg Exp $
# $NetBSD: bsd.README,v 1.317 2013/05/31 06:48:43 mrg Exp $
# @(#)bsd.README 8.2 (Berkeley) 4/2/94
This is the README file for the make "include" files for the NetBSD
@ -1584,6 +1584,7 @@ DPADD Additional dependencies for the program. Usually used for
LIBICE?= ${DESTDIR}/usr/X11R7/lib/libICE.a
LIBSM?= ${DESTDIR}/usr/X11R7/lib/libSM.a
LIBX11?= ${DESTDIR}/usr/X11R7/lib/libX11.a
LIBX11_XCB?= ${DESTDIR}/usr/X11R7/lib/libX11-xcb.a
LIBXTRAP?= ${DESTDIR}/usr/X11R7/lib/libXTrap.a
LIBXAU?= ${DESTDIR}/usr/X11R7/lib/libXau.a
LIBXAW?= ${DESTDIR}/usr/X11R7/lib/libXaw.a

View File

@ -1,4 +1,4 @@
# $NetBSD: bsd.prog.mk,v 1.283 2013/04/04 21:14:36 christos Exp $
# $NetBSD: bsd.prog.mk,v 1.284 2013/05/31 06:48:43 mrg Exp $
# @(#)bsd.prog.mk 8.2 (Berkeley) 4/2/94
.ifndef HOSTPROG
@ -269,6 +269,9 @@ LIB${_lib:tu}= ${DESTDIR}${X11USRLIBDIR}/lib${_lib}.a
.endif
.endfor
# Ugly one-offs
LIBX11_XCB= ${DESTDIR}${X11USRLIBDIR}/libX11-xcb.a
.if defined(RESCUEDIR)
CPPFLAGS+= -DRESCUEDIR=\"${RESCUEDIR}\"
.endif