From bbe45a0623bdb0783b951cbef5b7b29507f27565 Mon Sep 17 00:00:00 2001 From: mycroft Date: Fri, 13 Sep 2002 03:22:08 +0000 Subject: [PATCH] Remove a dumb #ifdef -- if VARPSZ is not defined on sparc, the build will bomb anyway. --- libexec/ld.elf_so/rtld.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/libexec/ld.elf_so/rtld.h b/libexec/ld.elf_so/rtld.h index 60c54bfe97ae..c4052f7ac40f 100644 --- a/libexec/ld.elf_so/rtld.h +++ b/libexec/ld.elf_so/rtld.h @@ -1,4 +1,4 @@ -/* $NetBSD: rtld.h,v 1.48 2002/09/12 22:56:29 mycroft Exp $ */ +/* $NetBSD: rtld.h,v 1.49 2002/09/13 03:22:08 mycroft Exp $ */ /* * Copyright 1996 John D. Polstra. @@ -66,11 +66,7 @@ extern int _rtld_pagesz; # define PAGESIZE _rtld_pagesz # endif # else -# ifndef __sparc__ -# define PAGESIZE NBPG -# else - #error "Sparc has a variable page size" -# endif +# define PAGESIZE NBPG # endif #endif