diff options
author | obache <obache@pkgsrc.org> | 2013-09-17 11:35:47 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2013-09-17 11:35:47 +0000 |
commit | 19fa4d2d772323415b8abe8cafec13e5ed539f73 (patch) | |
tree | e624ce60e5cad93416980a4d23ce5de1beb29b2e /databases/mysqlcc/patches/patch-aa | |
parent | 33a6f42ca8fef53fa35fe4b4edeba2a01f86152f (diff) | |
download | pkgsrc-19fa4d2d772323415b8abe8cafec13e5ed539f73.tar.gz |
Update mysqlcc to 1.0.2.
No changelog, but at least, buildable with recent MySQL.
while here:
* removed OpenSSL related stuffs, no reason is found.
* set LICENSE=gnu-gpl-v2 (or later).
* drop needless definitions.
Diffstat (limited to 'databases/mysqlcc/patches/patch-aa')
-rw-r--r-- | databases/mysqlcc/patches/patch-aa | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/databases/mysqlcc/patches/patch-aa b/databases/mysqlcc/patches/patch-aa deleted file mode 100644 index 8873328961e..00000000000 --- a/databases/mysqlcc/patches/patch-aa +++ /dev/null @@ -1,44 +0,0 @@ -$NetBSD: patch-aa,v 1.1.1.1 2003/12/21 07:58:31 martti Exp $ - ---- acinclude.m4.orig 2003-12-13 23:10:43.000000000 +0000 -+++ acinclude.m4 2003-12-20 18:24:25.000000000 +0000 -@@ -1 +1,39 @@ -+AC_DEFUN(AC_LIB_OPENSSL, [ -+ AC_ARG_WITH(openssl-lib, -+ [ --with-openssl-lib=DIR Look for OpenSSL client library in DIR], -+ openssl_lib=$withval, openssl_lib="") -+ -+ AC_MSG_CHECKING([for libssl]) -+ AC_MSG_RESULT() -+ -+ ssl_ok=no -+ -+ SAVE_LIBS=$LIBS -+ -+ ssl_lib="$openssl_lib /usr/lib \ -+ /usr/local/lib" -+ -+ for dir in $ssl_lib; do -+ if test "x$ssl_found" != "xyes" -+ then -+ AC_CHECK_FILE("$dir/libssl.a", -+ ssl_found=yes, ssl_found=no) -+ if test "x$ssl_found" = "xyes" -+ then -+ LIBS="$SAVE_LIBS -L$dir -lcrypto -lssl" -+ OPENSSL_LIB="$dir/libssl.a $dir/libcrypto.a" -+ AC_SUBST(OPENSSL_LIB) -+ AC_CHECK_LIB(ssl, SSL_library_init, -+ ssl_ok=yes, ssl_ok=no) -+ -+ fi -+ fi -+ done -+ -+ if test "x$ssl_ok" != "xyes" -+ then -+ AC_MSG_ERROR([Could not find libssl in '$ssl_lib']) -+ fi -+]) -+ - AC_DEFUN(AC_LIB_MYSQL, [ |