summaryrefslogtreecommitdiff
path: root/lang/python24
diff options
context:
space:
mode:
authorHye-Shik Chang <perky@FreeBSD.org>2003-08-22 05:31:45 +0000
committerHye-Shik Chang <perky@FreeBSD.org>2003-08-22 05:31:45 +0000
commit9d32a5e59495997e3991e792f8909be7b13a791c (patch)
tree5f31d1f016ca1764a85a0e158cf87d10ba23b30b /lang/python24
parentupdate cad/gmsh: add USE_TRIANGLE knob (diff)
BUILD_STATIC by default because it's better.
(See http://mail.python.org/pipermail/python-dev/2003-August/037472.html)
Notes
Notes: svn path=/head/; revision=87482
Diffstat (limited to 'lang/python24')
-rw-r--r--lang/python24/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/python24/Makefile b/lang/python24/Makefile
index b0ce40ccf8e9..e0ddbf78e425 100644
--- a/lang/python24/Makefile
+++ b/lang/python24/Makefile
@@ -7,6 +7,7 @@
PORTNAME= python
PORTVERSION= 2.3
+PORTREVISION= 1
CATEGORIES= lang python ipv6
MASTER_SITES= ${MASTER_SITE_PYTHON}
MASTER_SITE_SUBDIR= ftp/python/${PORTVERSION}
@@ -52,7 +53,7 @@ CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}"
CONFIGURE_ARGS+= --enable-unicode=ucs4
.endif
-.if !defined(BUILD_STATIC)
+.if defined(BUILD_SHARED)
CONFIGURE_ARGS+= --enable-shared
INSTALLS_SHLIB= yes
PLIST_SUB+= SHARED_ONLY=""