The parens around the OSVERSION test were fatal for < 4.9, and did not

provide anything useful for newer systems, so remove them.

PR:		ports/72118
Submitted by:	Michel Lavondes <fox@vader.aacc.cc.md.us>
Approved by:	portmgr (eik)
This commit is contained in:
Doug Barton 2004-09-27 04:43:55 +00:00
parent 49af9c28f0
commit 48ccb4f2c8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=118453
4 changed files with 4 additions and 4 deletions

View file

@ -34,7 +34,7 @@ USE_OPENSSL= yes
.include <bsd.port.pre.mk> .include <bsd.port.pre.mk>
.if (${OSVERSION} >= 503000) .if ${OSVERSION} >= 503000
CONFIGURE_ARGS+= --enable-threads CONFIGURE_ARGS+= --enable-threads
.else .else
CONFIGURE_ARGS+= --disable-threads CONFIGURE_ARGS+= --disable-threads

View file

@ -34,7 +34,7 @@ USE_OPENSSL= yes
.include <bsd.port.pre.mk> .include <bsd.port.pre.mk>
.if (${OSVERSION} >= 503000) .if ${OSVERSION} >= 503000
CONFIGURE_ARGS+= --enable-threads CONFIGURE_ARGS+= --enable-threads
.else .else
CONFIGURE_ARGS+= --disable-threads CONFIGURE_ARGS+= --disable-threads

View file

@ -34,7 +34,7 @@ USE_OPENSSL= yes
.include <bsd.port.pre.mk> .include <bsd.port.pre.mk>
.if (${OSVERSION} >= 503000) .if ${OSVERSION} >= 503000
CONFIGURE_ARGS+= --enable-threads CONFIGURE_ARGS+= --enable-threads
.else .else
CONFIGURE_ARGS+= --disable-threads CONFIGURE_ARGS+= --disable-threads

View file

@ -34,7 +34,7 @@ USE_OPENSSL= yes
.include <bsd.port.pre.mk> .include <bsd.port.pre.mk>
.if (${OSVERSION} >= 503000) .if ${OSVERSION} >= 503000
CONFIGURE_ARGS+= --enable-threads CONFIGURE_ARGS+= --enable-threads
.else .else
CONFIGURE_ARGS+= --disable-threads CONFIGURE_ARGS+= --disable-threads