Hi,
New RPM are available in Fedora Rawhide and in Fedora 7 "updates-testing"
Will be pushed to official updates (FC6 and F7) soon (if no bug detected).
Just a note :
Makefile.simple have changed (use := instead of =), so the patch to have
a working Makefile for "examples" should be updated :
From :
# Fix up simple example Makefile to allow it to build on the install
# system, as opposed to the system where the Makefile was created.
%{__sed} -e 's@./examples/@@' \
-e 's@^CPPFLAGS =.*$@CPPFLAGS = $(shell mysql_config --cflags)@' \
-e 's@^LDFLAGS =.*$@LDFLAGS = $(shell mysql_config --libs)@' \
-e 's@ -Ilib -I/usr/include/mysql@@' \
Makefile.simple > doc/examples/Makefile
To :
# Fix up simple example Makefile to allow it to build on the install
# system, as opposed to the system where the Makefile was created.
%{__sed} -e 's@./examples/@@' \
-e 's@^CPPFLAGS :=.*$@CPPFLAGS := $(shell mysql_config --cflags)@' \
-e 's@^LDFLAGS :=.*$@LDFLAGS := $(shell mysql_config --libs)@' \
Makefile.simple > doc/examples/Makefile
Regards.