| 1 | = MySQL FDO Provider Notes = |
| 2 | |
| 3 | The MySQL provider allows access to MySQL databases. |
| 4 | |
| 5 | == Build Issues == |
| 6 | |
| 7 | On some linux configurations, locally installed zlib versions can cause errors during the build. e.g.: |
| 8 | |
| 9 | {{{ |
| 10 | |
| 11 | /usr/lib/mysql/libz.a(zutil.o)(.text+0x41): In function `zcalloc': /export/home/my/tmp-201004061343-5.1.46-24340/rpm/BUILD/mysql-5.1.46/zlib/zutil.c:304: multiple definition of `zcalloc' |
| 12 | /usr/lib/mysql/libmysqlclient.a(zutil.o)(.text+0x41):/export/home/my/tmp-201004061343-5.1.46-24340/rpm/BUILD/mysql-5.1.46/zlib/zutil.c:304: first defined here |
| 13 | |
| 14 | }}} |
| 15 | |
| 16 | This can often be resolved as follows: |
| 17 | |
| 18 | {{{ |
| 19 | ar d /usr/lib/mysql/libmysqlclient.a adler32.o compress.o crc32.o deflate.o gzio.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o |
| 20 | }}} |
| 21 | |
| 22 | Explanation of the problem (and fix) available in the MySQL bug tracker: |
| 23 | |
| 24 | http://bugs.mysql.com/bug.php?id=28569 |
| 25 | |
| 26 | == Open Tickets == |
| 27 | |
| 28 | [[TicketQuery(status=new|assigned|reopened&component^=MySQL&order=priority)]] |