4191b0c799
(almost) every single architecture we support. If something is not supported it's a good incentive to fix it.
31 lines
761 B
Makefile
31 lines
761 B
Makefile
# $OpenBSD: Makefile,v 1.20 2014/03/19 13:56:08 jasper Exp $
|
|
|
|
COMMENT = library for handling page faults in user mode
|
|
|
|
DISTNAME = libsigsegv-2.10
|
|
REVISION = 0
|
|
SHARED_LIBS = sigsegv 1.0
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://www.gnu.org/software/libsigsegv/
|
|
|
|
MAINTAINER = Scott Vokes <vokes.s@gmail.com>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MASTER_SITES = ${MASTER_SITE_GNU:=libsigsegv/}
|
|
|
|
SEPARATE_BUILD = Yes
|
|
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += ${CONFIGURE_SHARED}
|
|
# We know these values, so don't run the configure tests for them which may
|
|
# take hours to complete on certain OpenBSD platforms, such as mips64.
|
|
CONFIGURE_ENV += sv_cv_fault_linux_i386=no \
|
|
sv_cv_fault_linux_i386_old=no \
|
|
sv_cv_fault_linux_m68k=no
|
|
|
|
.include <bsd.port.mk>
|