Changes of Revision 6
[-] | Changed | ipv6_functions_mysql.spec |
x 1
2 %define pkgname mysql-udf-ipv6 3 Name: mysql-ipv6-functions 4 Version: 0.3 5 -Release: 1 6 +Release: 2 7 License: EUPL 8 Group: Server 9 Summary: IPv6 functions for mysql 10
11 %files 12 %defattr(-,root,root) 13 %doc README 14 -%{_libdir}/mysql_udf_ipv6.so 15 +%dir %{_libdir}/mysql 16 +%dir %{_libdir}/mysql/plugin 17 +%{_libdir}/mysql/plugin/mysql_udf_ipv6.so 18 19 %changelog 20 +* Wed Feb 23 2011 Carsten Schoene <cs@linux-administrator.com> - 0.3-2 21 +- change plugin directory 22 + 23 * Thu Jul 15 2010 Carsten Schoene <cs@linux-administrator.com> - 0.3-1 24 - update to release 0.3 25 26 |
||
[+] | Changed | mysql-udf-ipv6-makefile.patch ^ |
@@ -1,12 +1,12 @@ --- Makefile.orig 2009-12-20 12:54:41.000000000 +0100 -+++ Makefile 2009-12-20 13:20:51.000000000 +0100 ++++ Makefile 2011-02-23 14:48:53.142422100 +0100 @@ -4,13 +4,15 @@ # pre 5.0.67 #LIBDIR=/usr/local/lib/ # post 5.0.67 -LIBDIR=/usr/lib/mysql/plugin/ +LIBDIR:=/usr/lib -+PLUGINDIR=$(LIBDIR)/mysql/ ++PLUGINDIR=$(LIBDIR)/mysql/plugin/ mysql_udf_ipv6.so: $(SRC) gcc -O2 $(INC) -shared -o $(OBJ) -fPIC $(SRC) @@ -14,7 +14,7 @@ install: - cp -f $(OBJ) $(LIBDIR) + mkdir -p $(DESTDIR)$(LIBDIR) -+ cp -f $(OBJ) $(DESTDIR)$(LIBDIR) ++ cp -f $(OBJ) $(DESTDIR)$(PLUGINDIR) clean: rm *.so |