Depend on glib20 for AMD64. This should fix build on AMD64

This commit is contained in:
Tilman Keskinoz 2004-02-17 12:52:00 +00:00
parent 678793e873
commit c2e5d1e669
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=101204

View File

@ -23,7 +23,7 @@ USE_GNOME= gnometarget pkgconfig
USE_GMAKE= yes
USE_LIBTOOL= yes
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
CONFIGURE_ARGS= --with-exporter --without-glib --with-libwmf=${LOCALBASE}
CONFIGURE_ARGS= --with-exporter --with-libwmf=${LOCALBASE}
MAKEFILE= GNUmakefile
INSTALLS_SHLIB= yes
@ -34,4 +34,11 @@ MLINKS= wvWare.1 wvConvert.1
CPPFLAGS= -I${LOCALBASE}/include/libpng -I${LOCALBASE}/include
LDFLAGS= -L${LOCALBASE}/lib
.if ${MACHINE_ARCH:L} == "amd64"
USE_GNOME+= glib20
CONFIGURE_ARGS+= --with-glib
.else
CONFIGURE_ARGS+= --without-glib
.endif
.include <bsd.port.mk>