]> git.pld-linux.org Git - packages/percona-server.git/blobdiff - mysql-libs.patch
- builds on ac-amd64: RPMS/mysql-5.5.8-0.1.amd64.rpm
[packages/percona-server.git] / mysql-libs.patch
index 733f455c15ad86b741d54d194d3463a890042334..bbca817343d3b565889cc2b2d950022e12c3b307 100644 (file)
@@ -1,72 +1,53 @@
---- mysql-4.0.15/acinclude.m4.orig     2003-10-04 13:43:46.567663608 +0200
-+++ mysql-4.0.15/acinclude.m4  2003-10-04 13:44:02.120299248 +0200
-@@ -745,7 +745,7 @@
-       for d in /usr/ssl/lib /usr/local/ssl/lib /usr/lib/openssl \
- /usr/lib /usr/lib64 /opt/ssl/lib /opt/openssl/lib /usr/local/lib/ ; do
--      if test -f $d/libssl.a ; then
-+      if test -f $d/libssl.so -o -f $d/libssl.a ; then
-         OPENSSL_LIB=$d
-       fi
-       done
-@@ -757,7 +757,7 @@
-       if test -f $incs/openssl/ssl.h  ; then
-         OPENSSL_INCLUDE=-I$incs
-       fi
--      if test -f $libs/libssl.a ; then
-+      if test -f $libs/libssl.so -o -f $libs/libssl.a ; then
-         OPENSSL_LIB=$libs
-       fi
-       ;;
---- mysql-4.0.15/configure.in.orig     2003-10-04 13:29:18.000000000 +0200
-+++ mysql-4.0.15/configure.in  2003-10-04 13:46:50.506700624 +0200
-@@ -746,19 +746,21 @@
+--- mysql-5.1.21-beta/configure.in~    2007-08-29 19:00:29.000000000 +0300
++++ mysql-5.1.21-beta/configure.in     2007-08-29 19:00:35.000000000 +0300
+@@ -836,8 +836,9 @@
  
  AC_CHECK_LIB(m, floor, [], AC_CHECK_LIB(m, __infinity))
  
 -AC_CHECK_LIB(nsl_r, gethostbyname_r, [],
 -  AC_CHECK_LIB(nsl, gethostbyname_r))
--AC_CHECK_FUNC(gethostbyname_r)
-+AC_CHECK_FUNC(gethostbyname_r, [],
-+[AC_CHECK_LIB(nsl_r, gethostbyname_r, [],
-+  [AC_CHECK_LIB(nsl, gethostbyname_r)])])
++AC_CHECK_FUNC(gethostbyname_r, [], [
++ AC_CHECK_LIB(nsl_r, gethostbyname_r, [],
++  AC_CHECK_LIB(nsl, gethostbyname_r)) ])
+ AC_CHECK_FUNC(gethostbyname_r)
  
- AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
--AC_CHECK_FUNC(yp_get_default_domain, ,
--  AC_CHECK_LIB(nsl, yp_get_default_domain))
- AC_CHECK_FUNC(p2open, , AC_CHECK_LIB(gen, p2open))
- # This may get things to compile even if bind-8 is installed
- AC_CHECK_FUNC(bind, , AC_CHECK_LIB(bind, bind))
- # For crypt() on Linux
--AC_CHECK_LIB(crypt, crypt)
+ AC_SEARCH_LIBS(setsockopt, socket)
+@@ -845,6 +846,11 @@
+ AC_SEARCH_LIBS(bind, bind)
+ # Check if crypt() exists in libc or libcrypt, sets LIBS if needed
+ AC_SEARCH_LIBS(crypt, crypt, AC_DEFINE(HAVE_CRYPT, 1, [crypt]))
 +save_LIBS="$LIBS"
-+LIBCRYPT=
 +AC_CHECK_LIB(crypt, crypt, [LIBS="-lcrypt $LIBS"; LIBCRYPT="-lcrypt"])
 +AC_SUBST(LIBCRYPT)
- AC_CHECK_FUNC(crypt, AC_DEFINE(HAVE_CRYPT)) 
++AC_CHECK_FUNC(crypt, AC_DEFINE([HAVE_CRYPT], [1], [crypt]))
 +LIBS="$save_LIBS"
+ # See if we need a library for address lookup.
+ AC_SEARCH_LIBS(inet_aton, [socket nsl resolv])
  
- # For sem_xxx functions on Solaris 2.6
- AC_CHECK_FUNC(sem_init, , AC_CHECK_LIB(posix4, sem_init))
---- mysql-4.0.15/libmysql_r/Makefile.am.orig   2003-10-04 13:29:16.000000000 +0200
-+++ mysql-4.0.15/libmysql_r/Makefile.am        2003-10-04 13:47:15.957831464 +0200
-@@ -30,7 +30,7 @@
- libmysql_dir = $(top_srcdir)/libmysql
- libmysqlclient_r_la_SOURCES = $(target_sources)
--libmysqlclient_r_la_LIBADD = $(target_libadd)
-+libmysqlclient_r_la_LIBADD = $(target_libadd) -lpthread
- libmysqlclient_r_la_LDFLAGS = $(target_ldflags)
- # This is called from the toplevel makefile
---- mysql-4.0.15/sql/Makefile.am.orig  2003-09-06 08:35:50.000000000 +0200
-+++ mysql-4.0.15/sql/Makefile.am       2003-10-04 13:47:34.660988152 +0200
+--- mysql-5.1.21-beta/sql/Makefile.am~ 2007-08-29 18:58:33.000000000 +0300
++++ mysql-5.1.21-beta/sql/Makefile.am  2007-08-29 19:01:33.000000000 +0300
 @@ -43,7 +43,7 @@
- mysqld_LDADD =                @MYSQLD_EXTRA_LDFLAGS@ \
-                       @bdb_libs@ @innodb_libs@ @pstack_libs@ \
-                         @innodb_system_libs@ \
--                      $(LDADD)  $(CXXLDFLAGS) $(WRAPLIBS) @LIBDL@ @openssl_libs@
-+                      $(LDADD)  $(CXXLDFLAGS) $(WRAPLIBS) @LIBDL@ @openssl_libs@ @LIBCRYPT@
+                       @pstack_libs@ \
+                       @mysql_plugin_libs@ \
+                       $(LDADD)  $(CXXLDFLAGS) $(WRAPLIBS) @LIBDL@ \
+-                      $(yassl_libs) $(openssl_libs) @MYSQLD_EXTRA_LIBS@
++                      $(yassl_libs) $(openssl_libs) @LIBCRYPT@ @MYSQLD_EXTRA_LIBS@
  noinst_HEADERS =      item.h item_func.h item_sum.h item_cmpfunc.h \
-                       item_strfunc.h item_timefunc.h item_uniq.h \
-                       item_create.h mysql_priv.h \
+                       item_strfunc.h item_timefunc.h \
+--- mysql-5.1.26-rc/config/ac-macros/ssl.m4.orig       2008-07-01 00:35:01.000000000 +0200
++++ mysql-5.1.26-rc/config/ac-macros/ssl.m4    2008-08-25 19:53:00.258254465 +0200
+@@ -102,7 +102,12 @@
+   #
+   # Try to link with openSSL libs in <location>
+   #
+-  openssl_libs="-L$location/lib/ -lssl -lcrypto"
++  if test "$location" != "/usr"
++  then
++  openssl_libs="-L$location/lib -lssl -lcrypto"
++  else
++  openssl_libs="-lssl -lcrypto"
++  fi
+   MYSQL_CHECK_SSL_DIR([$openssl_includes], [$openssl_libs])
+   if test "$mysql_ssl_found" == "no"
This page took 0.085214 seconds and 4 git commands to generate.