* Decoration options interpreted under Windows-XP and UNIX as follows: DECOR_SHRINKABLE means window may be smaller, but not larger, than default size; DECOR_STRETCHABLE means window may be larger, but not smaller, than default size; and finally, DECOR_RESIZE means window may be both smaller or larger than default size. * Fixed regression in glUseFXFont() when using Xft instead of XLFD. * Fixed bug in FXVisual which caused drawing to FXBitmap to fail. * Fixed bug FXWindow setDNDData() which affected MS-Windows clipboard operations. * Fixed issue with bold-face text not drawing correctly in FXText if gap happens to be in the text-fragment being drawn. * Fixed issue in multi-head API access under older Windows operating systems than Windows-XP. * FXMDIChild resize animation speed changed a little bit. * Some MacOS-X porting issues fixed.
46 lines
1.4 KiB
Makefile
46 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.37 2007/06/10 11:40:52 xtraeme Exp $
|
|
|
|
DISTNAME= fox-1.6.27
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://www.fox-toolkit.org/ftp/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.fox-toolkit.org/
|
|
COMMENT= Fast and extensive C++ GUI toolkit
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-release
|
|
CONFIGURE_ARGS+= --with-opengl
|
|
CONFIGURE_ARGS+= --with-shm
|
|
CONFIGURE_ARGS+= --with-xft
|
|
CONFIGURE_ARGS+= --with-x
|
|
|
|
CONFIGURE_ENV+= REAL_PTHREAD_LIBS=${PTHREAD_LIBS:Q}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# NetBSD < 3.0 does not have getpwnam_r() getpwuin_r()
|
|
.if ${OPSYS} == "NetBSD" && !empty(OS_VERSION:M[1-2]*) || ${OPSYS} == "DragonFly"
|
|
CONFIGURE_ARGS+= --disable-threadsafe
|
|
.endif
|
|
|
|
BUILDLINK_DEPMETHOD.libXt?= build
|
|
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
.include "../../graphics/freetype2/buildlink3.mk"
|
|
.include "../../graphics/glu/buildlink3.mk"
|
|
.include "../../graphics/jpeg/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../graphics/tiff/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXcursor/buildlink3.mk"
|
|
.include "../../x11/libXext/buildlink3.mk"
|
|
.include "../../x11/libXft/buildlink3.mk"
|
|
.include "../../x11/libXrandr/buildlink3.mk"
|
|
.include "../../x11/libXt/buildlink3.mk"
|
|
.include "../../x11/xextproto/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|