c3c3b42290
changes: - Lots of new classes and implementations were added for Schrödinger. - Several i386 implementations also compile on amd64, so these were copied over to a separate directory and are now enabled on amd64. - Feature detection on amd64 has been fixed. - All known startup warnings have been fixed. - The core now handles arrays that are 'N plus a constant' in length. - Wrap a bunch of functions in HAVE_UNALIGNED_ACCESS to indicate that they require an architecture that handles unaligned access.
33 lines
850 B
Makefile
33 lines
850 B
Makefile
# $NetBSD: Makefile,v 1.10 2006/11/24 13:02:48 drochner Exp $
|
|
#
|
|
|
|
DISTNAME= liboil-0.3.10
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://liboil.freedesktop.org/download/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://liboil.freedesktop.org/wiki/
|
|
COMMENT= Library of simple, CPU-optimized functions
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
|
|
CONFIGURE_ARGS+= --disable-glib # Only used by examples.
|
|
#CONFIGURE_ARGS+= --enable-debug
|
|
|
|
PKGCONFIG_OVERRIDE+= liboil-uninstalled.pc.in
|
|
PKGCONFIG_OVERRIDE+= liboil.pc.in
|
|
|
|
TEST_TARGET= check
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(MACHINE_PLATFORM:MSunOS-5.8-*)
|
|
SUBST_CLASSES+= solaris
|
|
SUBST_STAGE.solaris= pre-configure
|
|
SUBST_MESSAGE.solaris= Replacing <stdint.h> with <inttypes.h>
|
|
SUBST_FILES.solaris= liboil/*.h
|
|
SUBST_SED.solaris= -e 's,<stdint\.h>,<inttypes.h>,'
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|