1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Update to get 3.23.23 to compile

acconfig.h:
  Added better detection of compress
acinclude.m4:
  Added better detection of compress
configure.in:
  Added better detection of compress
include/my_pthread.h:
  Fixed wrong prototype
mysys/my_pthread.c:
  Added cast (for portability)
scripts/make_binary_distribution.sh:
  Added missing conversion
sql-bench/compare-results.sh:
  Update for new web site
sql/table.cc:
  Removed extra free
This commit is contained in:
unknown
2000-08-31 17:25:30 +03:00
parent 357167f2be
commit ae172fdcc0
8 changed files with 30 additions and 16 deletions

View File

@ -290,7 +290,7 @@ int sigwait(const sigset_t *set, int *sig);
#ifndef HAVE_NONPOSIX_SIGWAIT
#define my_sigwait(A,B) sigwait((A),(B))
#else
int my_sigwait(sigset_t *set,int *sig);
int my_sigwait(const sigset_t *set,int *sig);
#endif
#ifdef HAVE_NONPOSIX_PTHREAD_MUTEX_INIT