diff options
author | drochner <drochner@pkgsrc.org> | 2008-03-18 17:46:27 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2008-03-18 17:46:27 +0000 |
commit | efcdd4e743348fa06d50eeedb206323e6d6da2f6 (patch) | |
tree | cd9a0be25c882951d7ac200fc8c96c4ca9f06f5b /sysutils | |
parent | b0f9c2722ebb48bc84ed1ba8f5261c4b3380c58e (diff) | |
download | pkgsrc-efcdd4e743348fa06d50eeedb206323e6d6da2f6.tar.gz |
remove a check which allows only selected NetBSD archs tu build.
There is no machine dependency in the NetBSD support code, and even
if there is some left, a compiler error message is more helpful than
"make" rejecting it from the beginnng.
in response to PR pkg/38252 by Stuart Shelton
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/libgtop/Makefile | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/sysutils/libgtop/Makefile b/sysutils/libgtop/Makefile index 9e0baae6e63..2ec269a29ab 100644 --- a/sysutils/libgtop/Makefile +++ b/sysutils/libgtop/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2008/03/12 21:43:30 drochner Exp $ +# $NetBSD: Makefile,v 1.17 2008/03/18 17:46:27 drochner Exp $ DISTNAME= libgtop-2.20.2 CATEGORIES= sysutils gnome @@ -40,20 +40,7 @@ PRINT_PLIST_AWK+= /^include\/libgtop-2.0\/glibtop_suid.h$$/ \ .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == NetBSD - CONFIGURE_ENV+= fu_cv_sys_mounted_getmntinfo=yes - -. if (${MACHINE_ARCH} != alpha) && \ - (${MACHINE_ARCH} != arm) && (${MACHINE_ARCH} != arm32) && \ - (${MACHINE_ARCH} != i386) && (${MACHINE_ARCH} != m68k) && \ - (${MACHINE_ARCH} != mipsel) && (${MACHINE_ARCH} != powerpc) && \ - (${MACHINE_ARCH} != sparc) && (${MACHINE_ARCH} != sparc64) && \ - (${MACHINE_ARCH} != x86_64) -PKG_FAIL_REASON+= "${PKGNAME} has not yet been ported to ${MACHINE_ARCH}." -PKG_FAIL_REASON+= "Please look at /usr/include/${MACHINE_ARCH}/pcb.h" -PKG_FAIL_REASON+= "and update ${WRKSRC}/sysdeps/freebsd/prockernel.c appropriately." -PKG_FAIL_REASON+= "(More information can be found in libgtop.info.)" -. endif .endif .if ${OPSYS} == "Linux" |