diff options
author | Max Khon <fjoe@FreeBSD.org> | 2004-06-28 01:19:44 +0000 |
---|---|---|
committer | Max Khon <fjoe@FreeBSD.org> | 2004-06-28 01:19:44 +0000 |
commit | 537115a154e05125c786d3f6a80852c327d0da29 (patch) | |
tree | 6372c013ce07aa78f2cb4464dd6f8db600dc46eb /databases/unixODBC | |
parent | 8fbb1f7acc48d72e60e28906def769e9db3c53b4 (diff) |
Build with thread supports by default.
Bump PORTREVISION.
Notes
Notes:
svn path=/head/; revision=112427
Diffstat (limited to 'databases/unixODBC')
-rw-r--r-- | databases/unixODBC/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/databases/unixODBC/Makefile b/databases/unixODBC/Makefile index 24373faae749..32c8a4b8dcfb 100644 --- a/databases/unixODBC/Makefile +++ b/databases/unixODBC/Makefile @@ -7,6 +7,7 @@ PORTNAME= unixODBC PORTVERSION= 2.2.9 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://www.unixodbc.org/ @@ -37,7 +38,7 @@ CONFIGURE_ARGS+= --disable-gui PLIST_SUB= GUI:="@comment " .endif -.if defined(WITH_PTHREAD) || defined(WITH_GUI) +.if !defined(WITHOUT_THREADS) || defined(WITH_GUI) CONFIGURE_ARGS+= --enable-threads=yes .else CONFIGURE_ARGS+= --enable-threads=no |