summaryrefslogtreecommitdiffstats
path: root/databases
diff options
context:
space:
mode:
authornork <nork@FreeBSD.org>2003-03-25 23:39:43 +0000
committernork <nork@FreeBSD.org>2003-03-25 23:39:43 +0000
commit92d02c038dcba7a22746b94ee27802e4c2576eba (patch)
tree240e1486f48bf4e0cb5727a9dcb291627749e098 /databases
parentb916ede61a88fe273f81822d4f16547d34771d30 (diff)
downloadFreeBSD-ports-92d02c038dcba7a22746b94ee27802e4c2576eba.zip
FreeBSD-ports-92d02c038dcba7a22746b94ee27802e4c2576eba.tar.gz
o Build thread-safe libs by default.
o Fix pkg-plist. o Bump PORTREVISION accordingly. PR: ports/50293 Submitted by: Alex Dupre <sysadmin@alexdupre.com> (maintainer)
Diffstat (limited to 'databases')
-rw-r--r--databases/mysql40-client/Makefile2
-rw-r--r--databases/mysql40-server/Makefile6
-rw-r--r--databases/mysql40-server/pkg-plist.client3
-rw-r--r--databases/mysql41-client/Makefile2
-rw-r--r--databases/mysql41-server/Makefile6
-rw-r--r--databases/mysql41-server/pkg-plist.client3
-rw-r--r--databases/mysql50-client/Makefile2
-rw-r--r--databases/mysql50-server/Makefile6
-rw-r--r--databases/mysql50-server/pkg-plist.client3
-rw-r--r--databases/mysql51-client/Makefile2
-rw-r--r--databases/mysql51-server/Makefile6
-rw-r--r--databases/mysql51-server/pkg-plist.client3
-rw-r--r--databases/mysql54-client/Makefile2
-rw-r--r--databases/mysql54-server/Makefile6
-rw-r--r--databases/mysql54-server/pkg-plist.client3
-rw-r--r--databases/mysql55-client/Makefile2
-rw-r--r--databases/mysql55-server/Makefile6
-rw-r--r--databases/mysql55-server/pkg-plist.client3
-rw-r--r--databases/mysql60-client/Makefile2
-rw-r--r--databases/mysql60-server/Makefile6
-rw-r--r--databases/mysql60-server/pkg-plist.client3
-rw-r--r--databases/percona55-client/Makefile2
-rw-r--r--databases/percona55-server/Makefile6
-rw-r--r--databases/percona55-server/pkg-plist.client3
24 files changed, 48 insertions, 40 deletions
diff --git a/databases/mysql40-client/Makefile b/databases/mysql40-client/Makefile
index 48990cf..7353863 100644
--- a/databases/mysql40-client/Makefile
+++ b/databases/mysql40-client/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= mysql
-PORTREVISION= 0
+PORTREVISION= 1
PKGNAMESUFFIX= -client
MASTERDIR= ${.CURDIR}/../mysql40-server
diff --git a/databases/mysql40-server/Makefile b/databases/mysql40-server/Makefile
index 7366666..0a519bc 100644
--- a/databases/mysql40-server/Makefile
+++ b/databases/mysql40-server/Makefile
@@ -44,7 +44,8 @@ CONFIGURE_ARGS= --localstatedir=${DB_DIR} \
--with-mysqlfs \
--with-vio \
--with-low-memory \
- --with-comment='FreeBSD port: ${PKGNAME}'
+ --with-comment='FreeBSD port: ${PKGNAME}' \
+ --enable-thread-safe-client
.include <bsd.port.pre.mk>
@@ -79,9 +80,6 @@ LIB_DEPENDS+= lthread.3:${PORTSDIR}/devel/linuxthreads
LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads
.endif
.endif
-.if defined(THREAD_SAFE_CLIENT)
-CONFIGURE_ARGS+=--enable-thread-safe-client
-.endif
CFLAGS+= -O3 -fno-omit-frame-pointer
CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti
diff --git a/databases/mysql40-server/pkg-plist.client b/databases/mysql40-server/pkg-plist.client
index b41d52e..42c5460 100644
--- a/databases/mysql40-server/pkg-plist.client
+++ b/databases/mysql40-server/pkg-plist.client
@@ -36,5 +36,8 @@ include/mysql/sslopt-vars.h
lib/mysql/libmysqlclient.a
lib/mysql/libmysqlclient.so
lib/mysql/libmysqlclient.so.12
+lib/mysql/libmysqlclient_r.a
+lib/mysql/libmysqlclient_r.so
+lib/mysql/libmysqlclient_r.so.12
@dirrm include/mysql
@dirrm lib/mysql
diff --git a/databases/mysql41-client/Makefile b/databases/mysql41-client/Makefile
index 48990cf..7353863 100644
--- a/databases/mysql41-client/Makefile
+++ b/databases/mysql41-client/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= mysql
-PORTREVISION= 0
+PORTREVISION= 1
PKGNAMESUFFIX= -client
MASTERDIR= ${.CURDIR}/../mysql40-server
diff --git a/databases/mysql41-server/Makefile b/databases/mysql41-server/Makefile
index 7366666..0a519bc 100644
--- a/databases/mysql41-server/Makefile
+++ b/databases/mysql41-server/Makefile
@@ -44,7 +44,8 @@ CONFIGURE_ARGS= --localstatedir=${DB_DIR} \
--with-mysqlfs \
--with-vio \
--with-low-memory \
- --with-comment='FreeBSD port: ${PKGNAME}'
+ --with-comment='FreeBSD port: ${PKGNAME}' \
+ --enable-thread-safe-client
.include <bsd.port.pre.mk>
@@ -79,9 +80,6 @@ LIB_DEPENDS+= lthread.3:${PORTSDIR}/devel/linuxthreads
LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads
.endif
.endif
-.if defined(THREAD_SAFE_CLIENT)
-CONFIGURE_ARGS+=--enable-thread-safe-client
-.endif
CFLAGS+= -O3 -fno-omit-frame-pointer
CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti
diff --git a/databases/mysql41-server/pkg-plist.client b/databases/mysql41-server/pkg-plist.client
index b41d52e..42c5460 100644
--- a/databases/mysql41-server/pkg-plist.client
+++ b/databases/mysql41-server/pkg-plist.client
@@ -36,5 +36,8 @@ include/mysql/sslopt-vars.h
lib/mysql/libmysqlclient.a
lib/mysql/libmysqlclient.so
lib/mysql/libmysqlclient.so.12
+lib/mysql/libmysqlclient_r.a
+lib/mysql/libmysqlclient_r.so
+lib/mysql/libmysqlclient_r.so.12
@dirrm include/mysql
@dirrm lib/mysql
diff --git a/databases/mysql50-client/Makefile b/databases/mysql50-client/Makefile
index 48990cf..7353863 100644
--- a/databases/mysql50-client/Makefile
+++ b/databases/mysql50-client/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= mysql
-PORTREVISION= 0
+PORTREVISION= 1
PKGNAMESUFFIX= -client
MASTERDIR= ${.CURDIR}/../mysql40-server
diff --git a/databases/mysql50-server/Makefile b/databases/mysql50-server/Makefile
index 7366666..0a519bc 100644
--- a/databases/mysql50-server/Makefile
+++ b/databases/mysql50-server/Makefile
@@ -44,7 +44,8 @@ CONFIGURE_ARGS= --localstatedir=${DB_DIR} \
--with-mysqlfs \
--with-vio \
--with-low-memory \
- --with-comment='FreeBSD port: ${PKGNAME}'
+ --with-comment='FreeBSD port: ${PKGNAME}' \
+ --enable-thread-safe-client
.include <bsd.port.pre.mk>
@@ -79,9 +80,6 @@ LIB_DEPENDS+= lthread.3:${PORTSDIR}/devel/linuxthreads
LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads
.endif
.endif
-.if defined(THREAD_SAFE_CLIENT)
-CONFIGURE_ARGS+=--enable-thread-safe-client
-.endif
CFLAGS+= -O3 -fno-omit-frame-pointer
CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti
diff --git a/databases/mysql50-server/pkg-plist.client b/databases/mysql50-server/pkg-plist.client
index b41d52e..42c5460 100644
--- a/databases/mysql50-server/pkg-plist.client
+++ b/databases/mysql50-server/pkg-plist.client
@@ -36,5 +36,8 @@ include/mysql/sslopt-vars.h
lib/mysql/libmysqlclient.a
lib/mysql/libmysqlclient.so
lib/mysql/libmysqlclient.so.12
+lib/mysql/libmysqlclient_r.a
+lib/mysql/libmysqlclient_r.so
+lib/mysql/libmysqlclient_r.so.12
@dirrm include/mysql
@dirrm lib/mysql
diff --git a/databases/mysql51-client/Makefile b/databases/mysql51-client/Makefile
index 48990cf..7353863 100644
--- a/databases/mysql51-client/Makefile
+++ b/databases/mysql51-client/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= mysql
-PORTREVISION= 0
+PORTREVISION= 1
PKGNAMESUFFIX= -client
MASTERDIR= ${.CURDIR}/../mysql40-server
diff --git a/databases/mysql51-server/Makefile b/databases/mysql51-server/Makefile
index 7366666..0a519bc 100644
--- a/databases/mysql51-server/Makefile
+++ b/databases/mysql51-server/Makefile
@@ -44,7 +44,8 @@ CONFIGURE_ARGS= --localstatedir=${DB_DIR} \
--with-mysqlfs \
--with-vio \
--with-low-memory \
- --with-comment='FreeBSD port: ${PKGNAME}'
+ --with-comment='FreeBSD port: ${PKGNAME}' \
+ --enable-thread-safe-client
.include <bsd.port.pre.mk>
@@ -79,9 +80,6 @@ LIB_DEPENDS+= lthread.3:${PORTSDIR}/devel/linuxthreads
LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads
.endif
.endif
-.if defined(THREAD_SAFE_CLIENT)
-CONFIGURE_ARGS+=--enable-thread-safe-client
-.endif
CFLAGS+= -O3 -fno-omit-frame-pointer
CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti
diff --git a/databases/mysql51-server/pkg-plist.client b/databases/mysql51-server/pkg-plist.client
index b41d52e..42c5460 100644
--- a/databases/mysql51-server/pkg-plist.client
+++ b/databases/mysql51-server/pkg-plist.client
@@ -36,5 +36,8 @@ include/mysql/sslopt-vars.h
lib/mysql/libmysqlclient.a
lib/mysql/libmysqlclient.so
lib/mysql/libmysqlclient.so.12
+lib/mysql/libmysqlclient_r.a
+lib/mysql/libmysqlclient_r.so
+lib/mysql/libmysqlclient_r.so.12
@dirrm include/mysql
@dirrm lib/mysql
diff --git a/databases/mysql54-client/Makefile b/databases/mysql54-client/Makefile
index 48990cf..7353863 100644
--- a/databases/mysql54-client/Makefile
+++ b/databases/mysql54-client/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= mysql
-PORTREVISION= 0
+PORTREVISION= 1
PKGNAMESUFFIX= -client
MASTERDIR= ${.CURDIR}/../mysql40-server
diff --git a/databases/mysql54-server/Makefile b/databases/mysql54-server/Makefile
index 7366666..0a519bc 100644
--- a/databases/mysql54-server/Makefile
+++ b/databases/mysql54-server/Makefile
@@ -44,7 +44,8 @@ CONFIGURE_ARGS= --localstatedir=${DB_DIR} \
--with-mysqlfs \
--with-vio \
--with-low-memory \
- --with-comment='FreeBSD port: ${PKGNAME}'
+ --with-comment='FreeBSD port: ${PKGNAME}' \
+ --enable-thread-safe-client
.include <bsd.port.pre.mk>
@@ -79,9 +80,6 @@ LIB_DEPENDS+= lthread.3:${PORTSDIR}/devel/linuxthreads
LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads
.endif
.endif
-.if defined(THREAD_SAFE_CLIENT)
-CONFIGURE_ARGS+=--enable-thread-safe-client
-.endif
CFLAGS+= -O3 -fno-omit-frame-pointer
CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti
diff --git a/databases/mysql54-server/pkg-plist.client b/databases/mysql54-server/pkg-plist.client
index b41d52e..42c5460 100644
--- a/databases/mysql54-server/pkg-plist.client
+++ b/databases/mysql54-server/pkg-plist.client
@@ -36,5 +36,8 @@ include/mysql/sslopt-vars.h
lib/mysql/libmysqlclient.a
lib/mysql/libmysqlclient.so
lib/mysql/libmysqlclient.so.12
+lib/mysql/libmysqlclient_r.a
+lib/mysql/libmysqlclient_r.so
+lib/mysql/libmysqlclient_r.so.12
@dirrm include/mysql
@dirrm lib/mysql
diff --git a/databases/mysql55-client/Makefile b/databases/mysql55-client/Makefile
index 48990cf..7353863 100644
--- a/databases/mysql55-client/Makefile
+++ b/databases/mysql55-client/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= mysql
-PORTREVISION= 0
+PORTREVISION= 1
PKGNAMESUFFIX= -client
MASTERDIR= ${.CURDIR}/../mysql40-server
diff --git a/databases/mysql55-server/Makefile b/databases/mysql55-server/Makefile
index 7366666..0a519bc 100644
--- a/databases/mysql55-server/Makefile
+++ b/databases/mysql55-server/Makefile
@@ -44,7 +44,8 @@ CONFIGURE_ARGS= --localstatedir=${DB_DIR} \
--with-mysqlfs \
--with-vio \
--with-low-memory \
- --with-comment='FreeBSD port: ${PKGNAME}'
+ --with-comment='FreeBSD port: ${PKGNAME}' \
+ --enable-thread-safe-client
.include <bsd.port.pre.mk>
@@ -79,9 +80,6 @@ LIB_DEPENDS+= lthread.3:${PORTSDIR}/devel/linuxthreads
LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads
.endif
.endif
-.if defined(THREAD_SAFE_CLIENT)
-CONFIGURE_ARGS+=--enable-thread-safe-client
-.endif
CFLAGS+= -O3 -fno-omit-frame-pointer
CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti
diff --git a/databases/mysql55-server/pkg-plist.client b/databases/mysql55-server/pkg-plist.client
index b41d52e..42c5460 100644
--- a/databases/mysql55-server/pkg-plist.client
+++ b/databases/mysql55-server/pkg-plist.client
@@ -36,5 +36,8 @@ include/mysql/sslopt-vars.h
lib/mysql/libmysqlclient.a
lib/mysql/libmysqlclient.so
lib/mysql/libmysqlclient.so.12
+lib/mysql/libmysqlclient_r.a
+lib/mysql/libmysqlclient_r.so
+lib/mysql/libmysqlclient_r.so.12
@dirrm include/mysql
@dirrm lib/mysql
diff --git a/databases/mysql60-client/Makefile b/databases/mysql60-client/Makefile
index 48990cf..7353863 100644
--- a/databases/mysql60-client/Makefile
+++ b/databases/mysql60-client/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= mysql
-PORTREVISION= 0
+PORTREVISION= 1
PKGNAMESUFFIX= -client
MASTERDIR= ${.CURDIR}/../mysql40-server
diff --git a/databases/mysql60-server/Makefile b/databases/mysql60-server/Makefile
index 7366666..0a519bc 100644
--- a/databases/mysql60-server/Makefile
+++ b/databases/mysql60-server/Makefile
@@ -44,7 +44,8 @@ CONFIGURE_ARGS= --localstatedir=${DB_DIR} \
--with-mysqlfs \
--with-vio \
--with-low-memory \
- --with-comment='FreeBSD port: ${PKGNAME}'
+ --with-comment='FreeBSD port: ${PKGNAME}' \
+ --enable-thread-safe-client
.include <bsd.port.pre.mk>
@@ -79,9 +80,6 @@ LIB_DEPENDS+= lthread.3:${PORTSDIR}/devel/linuxthreads
LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads
.endif
.endif
-.if defined(THREAD_SAFE_CLIENT)
-CONFIGURE_ARGS+=--enable-thread-safe-client
-.endif
CFLAGS+= -O3 -fno-omit-frame-pointer
CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti
diff --git a/databases/mysql60-server/pkg-plist.client b/databases/mysql60-server/pkg-plist.client
index b41d52e..42c5460 100644
--- a/databases/mysql60-server/pkg-plist.client
+++ b/databases/mysql60-server/pkg-plist.client
@@ -36,5 +36,8 @@ include/mysql/sslopt-vars.h
lib/mysql/libmysqlclient.a
lib/mysql/libmysqlclient.so
lib/mysql/libmysqlclient.so.12
+lib/mysql/libmysqlclient_r.a
+lib/mysql/libmysqlclient_r.so
+lib/mysql/libmysqlclient_r.so.12
@dirrm include/mysql
@dirrm lib/mysql
diff --git a/databases/percona55-client/Makefile b/databases/percona55-client/Makefile
index 48990cf..7353863 100644
--- a/databases/percona55-client/Makefile
+++ b/databases/percona55-client/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= mysql
-PORTREVISION= 0
+PORTREVISION= 1
PKGNAMESUFFIX= -client
MASTERDIR= ${.CURDIR}/../mysql40-server
diff --git a/databases/percona55-server/Makefile b/databases/percona55-server/Makefile
index 7366666..0a519bc 100644
--- a/databases/percona55-server/Makefile
+++ b/databases/percona55-server/Makefile
@@ -44,7 +44,8 @@ CONFIGURE_ARGS= --localstatedir=${DB_DIR} \
--with-mysqlfs \
--with-vio \
--with-low-memory \
- --with-comment='FreeBSD port: ${PKGNAME}'
+ --with-comment='FreeBSD port: ${PKGNAME}' \
+ --enable-thread-safe-client
.include <bsd.port.pre.mk>
@@ -79,9 +80,6 @@ LIB_DEPENDS+= lthread.3:${PORTSDIR}/devel/linuxthreads
LIB_DEPENDS+= lthread.2:${PORTSDIR}/devel/linuxthreads
.endif
.endif
-.if defined(THREAD_SAFE_CLIENT)
-CONFIGURE_ARGS+=--enable-thread-safe-client
-.endif
CFLAGS+= -O3 -fno-omit-frame-pointer
CXXFLAGS= ${CFLAGS} -felide-constructors -fno-rtti
diff --git a/databases/percona55-server/pkg-plist.client b/databases/percona55-server/pkg-plist.client
index b41d52e..42c5460 100644
--- a/databases/percona55-server/pkg-plist.client
+++ b/databases/percona55-server/pkg-plist.client
@@ -36,5 +36,8 @@ include/mysql/sslopt-vars.h
lib/mysql/libmysqlclient.a
lib/mysql/libmysqlclient.so
lib/mysql/libmysqlclient.so.12
+lib/mysql/libmysqlclient_r.a
+lib/mysql/libmysqlclient_r.so
+lib/mysql/libmysqlclient_r.so.12
@dirrm include/mysql
@dirrm lib/mysql
OpenPOWER on IntegriCloud