diff options
author | unknown <monty@hundin.mysql.fi> | 2002-05-31 15:22:38 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-05-31 15:22:38 +0300 |
commit | 574000209abac9b33d9dabee8e86d4b7b38b6c7c (patch) | |
tree | 85c51f351e6086eebde739636a64e7ab09b85277 /extra | |
parent | f6b6b2623311b5423bcf7b790c6cbd78bbe62042 (diff) | |
download | mariadb-git-574000209abac9b33d9dabee8e86d4b7b38b6c7c.tar.gz |
Portability fixes for SCO and HPUX
Change TRUNCATE(number) to truncate towards zero for negative numbers
Fix NULL handling for DESCRIBE table_name
Docs/manual.texi:
Update of TRUNCATE() information
configure.in:
Fix for HPUX
extra/resolveip.c:
Fix for SCO
include/my_net.h:
Fix for HPUX
libmysql/libmysql.c:
Removed warning on HPUX 10.20
mysql-test/r/func_math.result:
Test of new TRUNCATE handling
mysql-test/t/func_math.test:
Test of new TRUNCATE handling
mysys/my_gethostbyname.c:
Portability fix
sql/item_func.cc:
Change TRUNCATE(number) to truncate towards zero for negative numbers
sql/sql_show.cc:
Fix NULL handling for DESCRIBE table_name
Diffstat (limited to 'extra')
-rw-r--r-- | extra/resolveip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/resolveip.c b/extra/resolveip.c index 9bab5846c03..ba2db0a4d65 100644 --- a/extra/resolveip.c +++ b/extra/resolveip.c @@ -20,7 +20,6 @@ #include <my_global.h> #include <m_ctype.h> -#include <my_net.h> #include <my_sys.h> #include <m_string.h> #include <sys/types.h> @@ -30,6 +29,7 @@ #endif #include <arpa/inet.h> #include <netdb.h> +#include <my_net.h> #include <getopt.h> #if !defined(_AIX) && !defined(HAVE_UNIXWARE7_THREADS) && !defined(HAVE_UNIXWARE7_POSIX) && !defined(h_errno) |