d36a5b8830
This is a library for handling page faults in user mode. A page fault occurs when a program tries to access to a region of memory that is currently not available. Catching and handling a page fault is a useful technique for implementing: * pageable virtual memory, * memory-mapped access to persistent databases, * generational garbage collectors, * stack overflow handlers, * distributed shared memory, based on a submission by Scott Vokes <vokes.s at gmail.com> (MAINTAINER) with lots of tweaks by me and kurt@ help and ok kurt@
30 lines
620 B
Makefile
30 lines
620 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/07/09 20:05:29 jasper Exp $
|
|
|
|
ONLY_FOR_ARCHS= alpha amd64 arm m68k mips64 powerpc sparc64 sparc
|
|
|
|
COMMENT= library for handling page faults in user mode
|
|
|
|
DISTNAME= libsigsegv-2.4
|
|
|
|
CATEGORIES= devel
|
|
HOMEPAGE= http://libsigsegv.sourceforge.net/
|
|
|
|
MAINTAINER= Scott Vokes <vokes.s@gmail.com>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=libsigsegv/}
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
|
|
|
.include <bsd.port.mk>
|