mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
5f12486229
Docs/manual.texi: Updated changelog client/mysql.cc: Free all memory, even if we can't connect to the server include/config-win.h: Ensure that we don't use SAFE_MUTEX on windows include/my_pthread.h: Optimze struct for Ia64 include/myisam.h: Hack for debugging BIG tables myisam/mi_check.c: Hack for debugging BIG tables myisam/mi_search.c: Fixed bug in packed keys myisam/myisamchk.c: Hack for debugging BIG tables mysys/thr_mutex.c: Make safe_mutex safe for windows scripts/safe_mysqld.sh: Fix nice test and echo output sql/share/Makefile.am: Fix character sets sql/sql_string.cc: Fixes for AIX (which can't handle that the length argument is 0)
23 lines
858 B
Makefile
23 lines
858 B
Makefile
## Process this file with automake to create Makefile.in
|
|
|
|
# This requires gnu cp at distribution time.
|
|
dist-hook:
|
|
for lang in @AVAILABLE_LANGUAGES@ charsets; \
|
|
do cp -a $(srcdir)/$$lang $(distdir); done
|
|
|
|
install-data-local:
|
|
for lang in @AVAILABLE_LANGUAGES@; \
|
|
do \
|
|
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$$lang; \
|
|
../../extra/comp_err $(srcdir)/$$lang/errmsg.txt $(srcdir)/$$lang/errmsg.sys; \
|
|
$(INSTALL_DATA) $(srcdir)/$$lang/errmsg.sys \
|
|
$(DESTDIR)$(pkgdatadir)/$$lang/errmsg.sys; \
|
|
$(INSTALL_DATA) $(srcdir)/$$lang/errmsg.txt \
|
|
$(DESTDIR)$(pkgdatadir)/$$lang/errmsg.txt; \
|
|
done
|
|
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/charsets
|
|
(for f in $(srcdir)/charsets/Index $(srcdir)/charsets/README $(srcdir)/charsets/*.conf; \
|
|
do \
|
|
n=`basename $$f`; \
|
|
$(INSTALL_DATA) $$f $(DESTDIR)$(pkgdatadir)/charsets/$$n; \
|
|
done)
|