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:
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
|
@ -34,7 +34,7 @@ USE_OPENSSL= yes
|
|||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if (${OSVERSION} >= 503000)
|
||||
.if ${OSVERSION} >= 503000
|
||||
CONFIGURE_ARGS+= --enable-threads
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-threads
|
||||
|
|
|
@ -34,7 +34,7 @@ USE_OPENSSL= yes
|
|||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if (${OSVERSION} >= 503000)
|
||||
.if ${OSVERSION} >= 503000
|
||||
CONFIGURE_ARGS+= --enable-threads
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-threads
|
||||
|
|
|
@ -34,7 +34,7 @@ USE_OPENSSL= yes
|
|||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if (${OSVERSION} >= 503000)
|
||||
.if ${OSVERSION} >= 503000
|
||||
CONFIGURE_ARGS+= --enable-threads
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-threads
|
||||
|
|
|
@ -34,7 +34,7 @@ USE_OPENSSL= yes
|
|||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if (${OSVERSION} >= 503000)
|
||||
.if ${OSVERSION} >= 503000
|
||||
CONFIGURE_ARGS+= --enable-threads
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-threads
|
||||
|
|
Loading…
Reference in a new issue