Your message dated Sat, 25 Jul 2009 10:14:01 +0000
with message-id <e1muegp-0000sw...@ries.debian.org>
and subject line Bug#508406: fixed in mysql-dfsg-5.1 5.1.36-2
has caused the Debian Bug report #508406,
regarding inconsistent flags for libmysqld.a on different arches, no 
README.Debian
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
508406: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508406
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libmysqlclient-dev
Version: 5.1.30-2
Tags: patch
Severity: serious
Justification: Violation of MUST in Debian Policy section 10.2

Hello,

This bug is related to #457915.

Currently Debian Policy section 10.2 states:

"As to the static libraries, the common case is not to have relocatable code, 
since there is no benefit, unless in specific cases; therefore the static 
version must not be compiled with the -fPIC flag. Any exception to this rule 
should be discussed on the mailing list debian-de...@lists.debian.org, and the 
reasons for compiling with the -fPIC flag must be recorded in the file 
README.Debian"

libmysqld.a is a static library and it is built with -fPIC only on amd64, but 
that is not described in README.Debian. Also please do not treat a single arch 
specially since that makes absolutely no sense. You either build with -fPIC on 
all arches or none or build both PIC and nonPIC versions on all arches (which 
I'm suggesting).

Therefore this bug is also a request to provide both -fPIC and non-fPIC 
versions of libmysqld.a. I have even written a patch for this (debdiff 
attached). I need libmysqld to be linked into dynamic library [1][2], but I 
can't use it until it is built without -fPIC on other arches.

The changes make mysql build twice without and with -fPIC respectively in 
separate build directories (the 2nd time only libmysqld and its dependencies 
are built). Then both libmysqld.a (nonPIC version) and libmysqld_pic.a (PIC 
version) are installed to libmysqlclient-dev. As a side effect of using out-
of-source-tree builds, hack in clean target is no longer needed. Patch 02  
fixes FTBFS of libmysqld examples due to undefined symbol.

The only remaining part for you is to create a README.Debian. Justification is 
of -fPIC version is simple: libmysqld_pic.a is needed to be able to include it 
into shared libraries, which is a perfectly valid use case for libmysqld. 
Since you still provide nonPIC libmysqld.a, Debian Policy is not violated.

P.S. libmysqld_pic.a and libmysqld.a are around 16MB each and they increase 
package size by 4MBs each. So it makes sense to split them both into their own 
package (libmysqld).


#457915: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=457915
1. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=501495
2. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508399

-- 
Modestas Vainius <modes...@vainius.eu>

diff -u mysql-dfsg-5.1-5.1.30/debian/control mysql-dfsg-5.1-5.1.30/debian/control
--- mysql-dfsg-5.1-5.1.30/debian/control
+++ mysql-dfsg-5.1-5.1.30/debian/control
@@ -74,7 +74,7 @@
  innotop and mysqlreport.
 
 Package: mysql-server-5.1
-Architecture: any                                                               
+Architecture: any
 Suggests: tinyca
 Recommends: mailx, libhtml-template-perl
 Pre-Depends: mysql-common (>= ${source:Version}), adduser (>= 3.40), debconf
diff -u mysql-dfsg-5.1-5.1.30/debian/changelog mysql-dfsg-5.1-5.1.30/debian/changelog
--- mysql-dfsg-5.1-5.1.30/debian/changelog
+++ mysql-dfsg-5.1-5.1.30/debian/changelog
@@ -1,3 +1,12 @@
+mysql-dfsg-5.1 (5.1.30-3~pre1) UNRELEASED; urgency=low
+
+  * Build both -fPIC (libmysql_pic.a) and non -fPIC (libmysqld.a). Switch to
+    out-of-source true build mode was a side effect of this change.
+  * Add 02_no_builtin_ndbcluster_plugin.dpatch patch to fix FTBFS in libmysqld
+    examples due to undefined symbol 'builtin_ndbcluster_plugin'.
+
+ -- Modestas Vainius <modes...@vainius.eu>  Thu, 11 Dec 2008 00:36:09 +0200
+
 mysql-dfsg-5.1 (5.1.30-2) experimental; urgency=low
 
   * Drop MySQL Cluster support, it's deprecated since 5.1.24-RC.
diff -u mysql-dfsg-5.1-5.1.30/debian/rules mysql-dfsg-5.1-5.1.30/debian/rules
--- mysql-dfsg-5.1-5.1.30/debian/rules
+++ mysql-dfsg-5.1-5.1.30/debian/rules
@@ -42,10 +42,9 @@
    TESTSUITE_FAIL_CMD=exit 1
 endif
 
-ifeq ($(findstring $(ARCH), amd64),$(ARCH))
-	FORCE_FPIC_CFLAGS=-fPIC
-	FORCE_FPIC=--with-pic --with-lib-ccflags="-fPIC"
-endif
+BUILDDIR = builddir
+BUILDDIR_PIC = builddir-pic
+builddir = $(if $(findstring -pic,$@),$(BUILDDIR_PIC),$(BUILDDIR))
 
 # This causes seg11 crashes if LDAP is used for groups in /etc/nsswitch.conf
 # so it is disabled by default although, according to MySQL, it brings >10%
@@ -54,21 +53,27 @@
     USE_STATIC_MYSQLD=--with-mysqld-ldflags=-all-static
 endif
 		
+
+configure-stamp-pic: FORCE_FPIC_CFLAGS=-fPIC
+configure-stamp-pic: FORCE_FPIC=--with-pic --with-lib-ccflags="-fPIC"
+
 configure: patch configure-stamp
-configure-stamp:
-	@echo "RULES.configure-stamp"
+configure-pic: patch configure-stamp-pic
+configure-stamp configure-stamp-pic:
+	@echo "RULES.$@"
 	dh_testdir
 
 ifneq ($(ARCH_OS),hurd)
 	if [ ! -d /proc/self ]; then echo "/proc IS NEEDED" 1>&2; exit 1; fi 
 endif
 
+	( test -d $(builddir) || mkdir $(builddir) ) && cd $(builddir) && \
 	sh -c  'PATH=$${MYSQL_BUILD_PATH:-"/bin:/usr/bin"} \
 	    	CC=$${MYSQL_BUILD_CC:-gcc} \
 	    	CFLAGS=$${MYSQL_BUILD_CFLAGS:-"-O3 -DBIG_JOINS=1 ${FORCE_FPIC_CFLAGS}"} \
 	    	CXX=$${MYSQL_BUILD_CXX:-g++} \
 	    	CXXFLAGS=$${MYSQL_BUILD_CXXFLAGS:-"-O3 -DBIG_JOINS=1 -felide-constructors -fno-exceptions -fno-rtti ${FORCE_FPIC_CFLAGS}"} \
-	    ./configure \
+	    ../configure \
 		--build=${DEB_BUILD_GNU_TYPE} \
 		--host=${DEB_HOST_GNU_TYPE} \
 		\
@@ -111,25 +116,48 @@
 	#
 	#	--with-debug
 	
-	touch configure-stamp
+	touch $@
 
 
-build: build-stamp
+build: build-stamp build-stamp-pic
+
 build-stamp: configure
+	@echo "RULES.$@"
 	dh_testdir
 
-	$(MAKE) $(MAKE_J)
+	cd $(builddir) && $(MAKE) $(MAKE_J)
 
 ifeq ($(findstring $(DEB_BUILD_OPTIONS),nocheck),)
 	if [ ! -f testsuite-stamp ] ; then \
-	  $(MAKE) $(MAKE_TEST_TARGET) || $(TESTSUITE_FAIL_CMD) ; \
+	  cd $(builddir) && $(MAKE) $(MAKE_TEST_TARGET) || $(TESTSUITE_FAIL_CMD) ; \
 	fi
 endif
 
 	touch testsuite-stamp
 
 	touch build-stamp
+
+MAKE_PIC = cd $(builddir) && $(MAKE) $(MAKE_J)
+
+build-stamp-pic: configure-pic
+	@echo "RULES.$@"
+	# Build libmysqld dependencies
+	$(MAKE_PIC) -C include
+	$(MAKE_PIC) -C sql link_sources
+	$(MAKE_PIC) -C libmysql link_sources
+	$(MAKE_PIC) -C strings
+	$(MAKE_PIC) -C regex
+	$(MAKE_PIC) -C mysys
+	$(MAKE_PIC) -C dbug
+	$(MAKE_PIC) -C vio
+	$(MAKE_PIC) -C storage
+	$(MAKE_PIC) -C extra/yassl
+	$(MAKE_PIC) -C cmd-line-utils
+	$(MAKE_PIC) -C sql lex_hash.h
+	# Build libmysqld itself
+	$(MAKE_PIC) -C libmysqld
 	
+	touch $@
 
 clean: clean-patched unpatch
 	rm -rf debian/patched
@@ -137,41 +165,22 @@
 	@echo "RULES.clean-patched"
 	dh_testdir 
 	dh_testroot
-	rm -f configure-stamp
-	rm -f build-stamp
+	rm -f configure-stamp*
+	rm -f build-stamp*
 	rm -f testsuite-stamp
 	
 	[ ! -f Makefile ] || $(MAKE) clean
 	[ ! -d mysql-test/var ] || rm -rf mysql-test/var
-
-	# We like to see how long this is neccessary
-	@echo "CRUFT BEGIN" 
-	@find -type l -print0 | xargs --no-run-if-empty -0 rm -v
-	@find -name .deps -type d -print0 | xargs --no-run-if-empty -0 rm -rfv
-	@rm -vrf ndb/docs/.doxy* ndb/docs/*html ndb/docs/*pdf innobase/autom4te.cache
-	@for i in \
-	  readline/Makefile \
-	  sql-bench/Makefile \
-	  scripts/make_win_binary_distribution \
-	  scripts/mysqlbug \
-	  sql/gen_lex_hash \
-	  sql/lex_hash.h \
-	  strings/ctype_autoconf.c \
-	  config.log \
-	  config.cache \
-	  ; \
-	do \
-	  rm -vf $$i; \
-	done
-	@echo "CRUFT END"
+	
+	rm -rf $(BUILDDIR) $(BUILDDIR_PIC)
 
 	debconf-updatepo
 	dh_clean -v
 
-	
+
 install:
-install: build
-	@echo "RULES.install"
+install install-pic: build
+	@echo "RULES.$@"
 	dh_testdir
 	dh_testroot
 	dh_clean -k
@@ -186,7 +195,7 @@
 	ln -s mysqlmanager.1 $(TMP)/usr/share/man/man1/mysqlmanagerc.1
 
 	# make install (trailing slash needed for innobase)
-	$(MAKE) install DESTDIR=$(TMP)/
+	cd $(builddir) && $(MAKE) install DESTDIR=$(TMP)/
 		
 	# After installing, remove rpath to make lintian happy.
 	set +e; \
@@ -208,8 +217,10 @@
 	fi     
 
 	# libmysqlclient-dev: forgotten header file since 3.23.25?
-	cp include/my_config.h $(TMP)/usr/include/mysql/
+	cp $(BUILDDIR)/include/my_config.h $(TMP)/usr/include/mysql/
 	cp include/my_dir.h $(TMP)/usr/include/mysql/
+	# install libmysqld built with -FPIC
+	install -m 0644 -o root -g root $(BUILDDIR_PIC)/libmysqld/libmysqld.a $(TMP)/usr/lib/mysql/libmysqld_pic.a
 
 	# mysql-common: We now provide our own config file.
 	install -d $(TMP)/etc/mysql
@@ -222,14 +233,14 @@
 	install -m 0644 -D debian/additions/innotop/InnoDBParser.pm $(TMP)/usr/share/perl5/InnoDBParser.pm
 
 	# mysql-server
-	install -m 0755 scripts/mysqld_safe $(TMP)/usr/bin/mysqld_safe
+	install -m 0755 $(BUILDDIR)/scripts/mysqld_safe $(TMP)/usr/bin/mysqld_safe
 	mkdir -p $(TMP)/usr/share/doc/mysql-server-5.1/examples
 	mv $(TMP)/usr/share/mysql/*cnf 	    $(TMP)/usr/share/doc/mysql-server-5.1/examples/
 	rm -vf $(TMP)/usr/share/mysql/mi_test_all* \
 	       $(TMP)/usr/share/mysql/mysql-log-rotate \
 	       $(TMP)/usr/share/mysql/mysql.server \
 	       $(TMP)/usr/share/mysql/binary-configure
-	nm -n sql/mysqld |gzip -9 > $(TMP)/usr/share/doc/mysql-server-5.1/mysqld.sym.gz
+	nm -n $(BUILDDIR)/sql/mysqld |gzip -9 > $(TMP)/usr/share/doc/mysql-server-5.1/mysqld.sym.gz
 	install -m 0755 debian/additions/echo_stderr $(TMP)/usr/share/mysql/
 	install -m 0755 debian/additions/debian-start $(TMP)/etc/mysql/
 	install -m 0755 debian/additions/debian-start.inc.sh $(TMP)/usr/share/mysql/
diff -u mysql-dfsg-5.1-5.1.30/debian/patches/00list mysql-dfsg-5.1-5.1.30/debian/patches/00list
--- mysql-dfsg-5.1-5.1.30/debian/patches/00list
+++ mysql-dfsg-5.1-5.1.30/debian/patches/00list
@@ -1,5 +1,6 @@
 01_MAKEFILES__Docs_Images_Makefile.in.dpatch
 01_MAKEFILES__Docs_Makefile.in.dpatch
+02_no_builtin_ndbcluster_plugin.dpatch
 33_scripts__mysql_create_system_tables__no_test.dpatch
 38_scripts__mysqld_safe.sh__signals.dpatch
 41_scripts__mysql_install_db.sh__no_test.dpatch
only in patch2:
unchanged:
--- mysql-dfsg-5.1-5.1.30.orig/debian/patches/02_no_builtin_ndbcluster_plugin.dpatch
+++ mysql-dfsg-5.1-5.1.30/debian/patches/02_no_builtin_ndbcluster_plugin.dpatch
@@ -0,0 +1,18 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 01_MAKEFILES__Docs_Makefile.in.dpatch by  <c...@debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Creates Docs/Makefile.in
+
+...@dpatch@
+
+--- old/sql/sql_builtin.cc
++++ new/sql/sql_builtin.cc
+@@ -22,6 +22,6 @@
+ 
+ struct st_mysql_plugin *mysqld_builtins[]=
+ {
+-  builtin_binlog_plugin, builtin_partition_plugin, builtin_csv_plugin, builtin_heap_plugin, builtin_myisam_plugin, builtin_myisammrg_plugin, builtin_ndbcluster_plugin,(struct st_mysql_plugin *)0
++  builtin_binlog_plugin, builtin_partition_plugin, builtin_csv_plugin, builtin_heap_plugin, builtin_myisam_plugin, builtin_myisammrg_plugin, (struct st_mysql_plugin *)0
+ };
+ 

Attachment: signature.asc
Description: This is a digitally signed message part.


--- End Message ---
--- Begin Message ---
Source: mysql-dfsg-5.1
Source-Version: 5.1.36-2

We believe that the bug you reported is fixed in the latest version of
mysql-dfsg-5.1, which is due to be installed in the Debian FTP archive:

libmysqlclient-dev_5.1.36-2_amd64.deb
  to pool/main/m/mysql-dfsg-5.1/libmysqlclient-dev_5.1.36-2_amd64.deb
libmysqlclient15-dev_5.1.36-2_all.deb
  to pool/main/m/mysql-dfsg-5.1/libmysqlclient15-dev_5.1.36-2_all.deb
libmysqlclient16_5.1.36-2_amd64.deb
  to pool/main/m/mysql-dfsg-5.1/libmysqlclient16_5.1.36-2_amd64.deb
libmysqld-dev_5.1.36-2_amd64.deb
  to pool/main/m/mysql-dfsg-5.1/libmysqld-dev_5.1.36-2_amd64.deb
libmysqld-pic_5.1.36-2_amd64.deb
  to pool/main/m/mysql-dfsg-5.1/libmysqld-pic_5.1.36-2_amd64.deb
mysql-client-5.1_5.1.36-2_amd64.deb
  to pool/main/m/mysql-dfsg-5.1/mysql-client-5.1_5.1.36-2_amd64.deb
mysql-client_5.1.36-2_all.deb
  to pool/main/m/mysql-dfsg-5.1/mysql-client_5.1.36-2_all.deb
mysql-common_5.1.36-2_all.deb
  to pool/main/m/mysql-dfsg-5.1/mysql-common_5.1.36-2_all.deb
mysql-dfsg-5.1_5.1.36-2.diff.gz
  to pool/main/m/mysql-dfsg-5.1/mysql-dfsg-5.1_5.1.36-2.diff.gz
mysql-dfsg-5.1_5.1.36-2.dsc
  to pool/main/m/mysql-dfsg-5.1/mysql-dfsg-5.1_5.1.36-2.dsc
mysql-server-5.1_5.1.36-2_amd64.deb
  to pool/main/m/mysql-dfsg-5.1/mysql-server-5.1_5.1.36-2_amd64.deb
mysql-server_5.1.36-2_all.deb
  to pool/main/m/mysql-dfsg-5.1/mysql-server_5.1.36-2_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 508...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christian Hammers <c...@debian.org> (supplier of updated mysql-dfsg-5.1 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sun, 19 Jul 2009 18:48:53 +0200
Source: mysql-dfsg-5.1
Binary: libmysqlclient16 libmysqlclient15-dev libmysqld-pic libmysqld-dev 
libmysqlclient-dev mysql-common mysql-client-5.1 mysql-server-5.1 mysql-server 
mysql-client
Architecture: source all amd64
Version: 5.1.36-2
Distribution: experimental
Urgency: low
Maintainer: Debian MySQL Maintainers <pkg-mysql-ma...@lists.alioth.debian.org>
Changed-By: Christian Hammers <c...@debian.org>
Description: 
 libmysqlclient-dev - MySQL database development files
 libmysqlclient15-dev - MySQL database development files - empty transitional 
package
 libmysqlclient16 - MySQL database client library
 libmysqld-dev - MySQL embedded database development files
 libmysqld-pic - MySQL database development files
 mysql-client - MySQL database client (metapackage depending on the latest 
versio
 mysql-client-5.1 - MySQL database client binaries
 mysql-common - MySQL database common files (e.g. /etc/mysql/my.cnf)
 mysql-server - MySQL database server (metapackage depending on the latest 
versio
 mysql-server-5.1 - MySQL database server binaries
Closes: 508406
Changes: 
 mysql-dfsg-5.1 (5.1.36-2) experimental; urgency=low
 .
   * Build both -fPIC (libmysql_pic.a) and non -fPIC (libmysqld.a) as
     some packages seem to need the -fPIC variant for their own build
     process. Documented in README.Debian. Thanks to Modestas Vainius
     for the patch. Closes: #508406
   * Switch to out-of-source true build mode was a side effect of this change.
   * Added libmysqlclient16.symbols file (thanks to Raphael Hertzog).
   * Raised debian/compat from 4 to 7.
   * Updated innotop to 1.7.1.
   * Minor cleanups that lintian suggested.
Checksums-Sha1: 
 ec4239aa64c30ed987a4cd237ea21d2ef4207dd8 1724 mysql-dfsg-5.1_5.1.36-2.dsc
 d487fe596a2e4c9cacd407f77ad8c00fc9a75b53 327072 mysql-dfsg-5.1_5.1.36-2.diff.gz
 6461c500d8a5e63123111fbd48dad1b88bb20b4c 85306 
libmysqlclient15-dev_5.1.36-2_all.deb
 af7034bf6a387c5f935dd0b939e2dd8c12832504 91640 mysql-common_5.1.36-2_all.deb
 f18db886592a29daa1ca7078677c04a91745c658 85484 mysql-server_5.1.36-2_all.deb
 0dd90d111fb1651147ae5fc0afe87c2a7bbce5d8 85362 mysql-client_5.1.36-2_all.deb
 14f73d9c21000d52669ee9da67387d4dcf06ee38 2023434 
libmysqlclient16_5.1.36-2_amd64.deb
 4ab104c41cb7d52c2649a895c013d540d829efb7 4439414 
libmysqld-pic_5.1.36-2_amd64.deb
 30975af8258023c8df8c71796a15515519e3566e 5547256 
libmysqld-dev_5.1.36-2_amd64.deb
 433310b257174f2acf65912278e35bf4d67951b2 2384964 
libmysqlclient-dev_5.1.36-2_amd64.deb
 ee6929b8321857c7e3462ef9178aa7b057d38264 8055696 
mysql-client-5.1_5.1.36-2_amd64.deb
 5ab47b1655b4a3c96920b34008029ffd12222051 10765272 
mysql-server-5.1_5.1.36-2_amd64.deb
Checksums-Sha256: 
 e5491aa0117fab135662511eef84f110f892476006cf0f6cf345539ee1eec037 1724 
mysql-dfsg-5.1_5.1.36-2.dsc
 d11317d2960b85eb4b9ff096aeb2553a5b79b68a8bc1c9967301836ff1f8a627 327072 
mysql-dfsg-5.1_5.1.36-2.diff.gz
 d3ad18e6ea6cae04012b29c9f6a6c23f619d29c0436d1ff0ed4b616b455225be 85306 
libmysqlclient15-dev_5.1.36-2_all.deb
 4c6a29550dcd153f3f096b6a5a49c84178b999456aad77ce6c96bae8c1e8cd07 91640 
mysql-common_5.1.36-2_all.deb
 f3f89399cd718e80738e50228ef9dd63d9c826c844625a3b4ce818eb6f82aa2b 85484 
mysql-server_5.1.36-2_all.deb
 eda9d90a51b6fb6c7c1c944cf81e17c6aadde7e5cf9dcfa83cfc1cca50f02cf9 85362 
mysql-client_5.1.36-2_all.deb
 c505dae6bef6988c34c42a53dc28f6fcf2f9ec0dddd85c8df3475e3c787e796a 2023434 
libmysqlclient16_5.1.36-2_amd64.deb
 1e303a7a20e2d21149d3fb9442f92c0e25dac4e8772f320a9de705077e82bba8 4439414 
libmysqld-pic_5.1.36-2_amd64.deb
 91dbe0d1858d0e95ccb230db62cf1e751b886d658a9c99b4e3007fffd84b0707 5547256 
libmysqld-dev_5.1.36-2_amd64.deb
 84d9376d2a38aa859fce0c5067fb04a0185639ccc39c8cd1677699c5fd2afc46 2384964 
libmysqlclient-dev_5.1.36-2_amd64.deb
 c37efd73450d91327d7fe6b14cbe8c0076b4cc51b35326fa9df8e43f18fcff0f 8055696 
mysql-client-5.1_5.1.36-2_amd64.deb
 a4fc85100de982bf6246b296b8be5fc6a55580b69574608eea8f1023ef878fd0 10765272 
mysql-server-5.1_5.1.36-2_amd64.deb
Files: 
 2dc227a147187e2464fbe51874097689 1724 misc optional mysql-dfsg-5.1_5.1.36-2.dsc
 14d79df7feae03fcec51bc8ae2e611e7 327072 misc optional 
mysql-dfsg-5.1_5.1.36-2.diff.gz
 61d898212217a29a8b3dc07ab4a93fa3 85306 libdevel optional 
libmysqlclient15-dev_5.1.36-2_all.deb
 0ece7a9a0a62ff4599eb3fdfa8463980 91640 database optional 
mysql-common_5.1.36-2_all.deb
 65569d20dda65c5c7cfa767288ea70b7 85484 database optional 
mysql-server_5.1.36-2_all.deb
 cc285d6b0d4c13901bd36bbf904bf375 85362 database optional 
mysql-client_5.1.36-2_all.deb
 16f647921ac63d80c8ef485e81918ed1 2023434 libs optional 
libmysqlclient16_5.1.36-2_amd64.deb
 4a6fbdc3a7480ada40f16f7cff7573a2 4439414 libdevel optional 
libmysqld-pic_5.1.36-2_amd64.deb
 7647acdd3ceceae43a8feb8a82046350 5547256 libdevel optional 
libmysqld-dev_5.1.36-2_amd64.deb
 51cdc1d5febb572ba57ee1644bc00909 2384964 libdevel optional 
libmysqlclient-dev_5.1.36-2_amd64.deb
 a412bcb26862f5d8825e358325ba2a0f 8055696 misc optional 
mysql-client-5.1_5.1.36-2_amd64.deb
 af639e79e7ff27cf9b479c9407804de3 10765272 misc optional 
mysql-server-5.1_5.1.36-2_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkpoukcACgkQkR9K5oahGOZfJQCgnMDbaFKheh7fzXETtceFgZt0
T80AmgOzhDj/ZGh5X9Tq8yCajK1s17po
=UrrI
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to