NO_SHARED_LIBS always defined.

This commit is contained in:
espie 2004-08-02 12:45:59 +00:00
parent b626b9ae5c
commit e492e46724
2 changed files with 7 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.15 2003/05/19 08:50:43 naddy Exp $
# $OpenBSD: Makefile,v 1.16 2004/08/02 12:45:59 espie Exp $
COMMENT= "Scheme interpreter with Tk interface"
@ -17,7 +17,6 @@ PERMIT_DISTFILES_FTP= Yes
USE_X11= Yes
CONFIGURE_STYLE=gnu
CONFIGURE_ARGS= ${NO_SHARED_LIBS:S/Yes/--disable-dynload/}
FAKE_FLAGS= root=${DESTDIR}
@ -25,3 +24,7 @@ NO_REGRESS= Yes
SUBST_VARS= STK_VERSION STK_ARCH
.include <bsd.port.mk>
.if defined(NO_SHARED_LIBS) && ${NO_SHARED_LIBS:L} == "yes"
CONFIGURE_ARGS+= --disable-dynload
.endif

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.6 2002/12/29 19:43:50 fgsch Exp $
# $OpenBSD: Makefile,v 1.7 2004/08/02 12:48:13 espie Exp $
COMMENT= "High-level language for numerical computations"
VERSION= 2.0.16
@ -46,6 +46,6 @@ post-install:
.include <bsd.port.mk>
# if we can use shared libraries, make octave use modules.
.if !defined (NO_SHARED_LIBS)
.if !(defined(NO_SHARED_LIBS) && ${NO_SHARED_LIBS:L} == "yes")
CONFIGURE_ARGS+= --enable-lite-kernel
.endif