mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Configure updates
Fixed my_print_defaults --no-defaults Docs/manual.texi: Updated changelog acinclude.m4: Patches for large file support configure.in: New TCP libwrap extra/my_print_defaults.c: Fixed that --no-defaults include/my_pthread.h: Fixes for Tru64 ltconfig: Fixes for Tru64 ltmain.sh: Fixes for Tru64 mysql-test/README: Fixed types mysql-test/mysql-test-run.sh: Changed to long options
This commit is contained in:
@ -393,8 +393,8 @@ struct hostent *my_gethostbyname_r(const char *name,
|
||||
|
||||
#else
|
||||
#ifdef HAVE_GETHOSTBYNAME_R_WITH_HOSTENT_DATA
|
||||
#define GETHOSTBYNAME_BUFF_SIZE sizeof(hostent_data)
|
||||
#define my_gethostbyname_r(A,B,C,D,E) gethostbyname_r((A),(B),(hostent_data*) (C))
|
||||
#define GETHOSTBYNAME_BUFF_SIZE sizeof(struct hostent_data)
|
||||
#define my_gethostbyname_r(A,B,C,D,E) gethostbyname_r((A),(B),(struct hostent_data*) (C))
|
||||
#else
|
||||
#define GETHOSTBYNAME_BUFF_SIZE 2048
|
||||
#define my_gethostbyname_r(A,B,C,D,E) gethostbyname_r((A),(B),(C),(D),(E))
|
||||
|
Reference in New Issue
Block a user