2675 Narayanan V 2008-08-06
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.
modified:
Makefile.am
include/mysql.h.pp
=== modified file 'Makefile.am'
--- a/Makefile.am 2008-07-23 06:33:27 +0000
+++ b/Makefile.am 2008-08-06 18:13:37 +0000
@@ -259,12 +259,10 @@ TEST_PREPROCESSOR_HEADER = $(top_srcdir)
# to prevent seeing these messages.
# 2) sed the output to
# 2.1) remove blank lines and lines that begin with "# "
-# (The header information is retained to enable easy
-# analysis of abi diffs at a later stage).
-# 2.2) When gcc -E is run in the Mac OS it introduces a line of output
-# that results in showing up as a difference between the .pp and
-# .out files. Remove this OS specific preprocessor text inserted by
-# the preprocessor in the MAC OS.
+# 2.2) When gcc -E is run on the Mac OS and solaris sparc platforms it
+# introduces a line of output that shows up as a difference between
+# the .pp and .out files. Remove these OS specific preprocessor text
+# inserted by the preprocessor.
# 3) diff the generated file and the canons (.pp files already in
# the repository).
# 4) delete the .out file that is generated.
@@ -294,7 +292,7 @@ abi_check_all: $(TEST_PREPROCESSOR_HEADE
do_abi_check:
set -ex; \
for file in $(abi_headers); do \
- @CC@ -E -nostdinc -dI \
+ @CC@ -E -nostdinc \
-I$(top_srcdir)/include \
-I$(top_srcdir)/include/mysql \
-I$(top_srcdir)/sql \
@@ -304,7 +302,8 @@ do_abi_check:
$$file 2>/dev/null | \
@SED@ -e '/^# /d' \
-e '/^[ ]*$$/d' \
- -e '/^#pragma GCC set_debug_pwd/d' > \
+ -e '/^#pragma GCC set_debug_pwd/d' \
+ -e '/^#ident/d' > \
$(top_builddir)/abi_check.out; \
@DIFF@ -w $$file.pp $(top_builddir)/abi_check.out; \
@RM@ $(top_builddir)/abi_check.out; \
=== modified file 'include/mysql.h.pp'
--- a/include/mysql.h.pp 2008-06-17 12:27:04 +0000
+++ b/include/mysql.h.pp 2008-08-06 18:13:37 +0000
@@ -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_m
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;
| Thread |
|---|
| • bzr push into MySQL Storage Engine API team tree:mysql-5.1-sea branch(v.narayanan:2675) WL#4380 | Narayanan V | 7 Aug |