diff options
author | Narayanan V <v.narayanan@sun.com> | 2008-08-06 23:43:37 +0530 |
---|---|---|
committer | Narayanan V <v.narayanan@sun.com> | 2008-08-06 23:43:37 +0530 |
commit | 3236c07b7f75473bc46da8a526ca9300c6d0b894 (patch) | |
tree | 861b85f8c8e3b1934475552ca7db4a49a75304f5 /include/mysql.h.pp | |
parent | e3e2331cddf9ca1114fdbcc82c843264ddb8d434 (diff) | |
download | mariadb-git-3236c07b7f75473bc46da8a526ca9300c6d0b894.tar.gz |
WL#4380
1) Remove solaris sparc specific output produced by the
pre-processor in the .out files
2) Ensure compatibility of preprocessor options for solaris/sparc
platform.
Makefile.am:
1) Added a sed regular expression to remove output produced
by the preprocessor in the solaris sparc platform
2) Removed the -dI option from the preprocessor to enable
solaris/sparc compatibility
include/mysql.h.pp:
Since the -dI option has been removed from the preprocessor
the .pp files will correspondingly change.
Diffstat (limited to 'include/mysql.h.pp')
-rw-r--r-- | include/mysql.h.pp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/mysql.h.pp b/include/mysql.h.pp index 633cde41130..d4f92bc2ee5 100644 --- a/include/mysql.h.pp +++ b/include/mysql.h.pp @@ -1,8 +1,5 @@ -#include <sys/types.h> typedef char my_bool; typedef int my_socket; -#include "mysql_version.h" -#include "mysql_com.h" enum enum_server_command { COM_SLEEP, COM_QUIT, COM_INIT_DB, COM_QUERY, COM_FIELD_LIST, @@ -146,7 +143,6 @@ char *get_tty_password(const char *opt_message); const char *mysql_errno_to_sqlstate(unsigned int mysql_errno); my_bool my_thread_init(void); void my_thread_end(void); -#include "mysql_time.h" enum enum_mysql_timestamp_type { MYSQL_TIMESTAMP_NONE= -2, MYSQL_TIMESTAMP_ERROR= -1, @@ -159,7 +155,6 @@ typedef struct st_mysql_time my_bool neg; enum enum_mysql_timestamp_type time_type; } MYSQL_TIME; -#include "my_list.h" typedef struct st_list { struct st_list *prev,*next; void *data; @@ -200,8 +195,6 @@ typedef struct st_mysql_field { typedef char **MYSQL_ROW; typedef unsigned int MYSQL_FIELD_OFFSET; typedef unsigned long long my_ulonglong; -#include "typelib.h" -#include "my_alloc.h" typedef struct st_used_mem { struct st_used_mem *next; @@ -239,7 +232,6 @@ typedef struct st_mysql_rows { unsigned long length; } MYSQL_ROWS; typedef MYSQL_ROWS *MYSQL_ROW_OFFSET; -#include "my_alloc.h" typedef struct embedded_query_result EMBEDDED_QUERY_RESULT; typedef struct st_mysql_data { MYSQL_ROWS *data; |