Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
891b64fd
Commit
891b64fd
authored
May 09, 2005
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into neptunus.(none):/home/msvensson/mysql/mysql-4.1
parents
c1f04bf0
939b32f5
Changes
34
Hide whitespace changes
Inline
Side-by-side
Showing
34 changed files
with
54 additions
and
32 deletions
+54
-32
BUILD/check-cpu
BUILD/check-cpu
+16
-0
include/my_global.h
include/my_global.h
+5
-0
include/raid.h
include/raid.h
+1
-1
sql/examples/ha_archive.h
sql/examples/ha_archive.h
+1
-1
sql/examples/ha_example.h
sql/examples/ha_example.h
+1
-1
sql/field.h
sql/field.h
+1
-1
sql/ha_berkeley.h
sql/ha_berkeley.h
+1
-1
sql/ha_blackhole.h
sql/ha_blackhole.h
+1
-1
sql/ha_heap.h
sql/ha_heap.h
+1
-1
sql/ha_innodb.h
sql/ha_innodb.h
+1
-1
sql/ha_isam.h
sql/ha_isam.h
+1
-1
sql/ha_isammrg.h
sql/ha_isammrg.h
+1
-1
sql/ha_myisam.h
sql/ha_myisam.h
+1
-1
sql/ha_myisammrg.h
sql/ha_myisammrg.h
+1
-1
sql/ha_ndbcluster.h
sql/ha_ndbcluster.h
+1
-1
sql/handler.h
sql/handler.h
+1
-1
sql/item.h
sql/item.h
+1
-1
sql/item_cmpfunc.h
sql/item_cmpfunc.h
+1
-1
sql/item_func.h
sql/item_func.h
+1
-1
sql/item_geofunc.h
sql/item_geofunc.h
+1
-1
sql/item_strfunc.h
sql/item_strfunc.h
+2
-1
sql/item_subselect.h
sql/item_subselect.h
+1
-1
sql/item_sum.h
sql/item_sum.h
+1
-1
sql/item_timefunc.h
sql/item_timefunc.h
+1
-1
sql/opt_range.h
sql/opt_range.h
+1
-1
sql/procedure.h
sql/procedure.h
+1
-1
sql/protocol.h
sql/protocol.h
+1
-1
sql/set_var.h
sql/set_var.h
+1
-1
sql/sql_class.h
sql/sql_class.h
+1
-1
sql/sql_list.h
sql/sql_list.h
+1
-1
sql/sql_select.h
sql/sql_select.h
+1
-1
sql/sql_string.h
sql/sql_string.h
+1
-1
sql/sql_udf.h
sql/sql_udf.h
+1
-1
sql/tztime.h
sql/tztime.h
+1
-1
No files found.
BUILD/check-cpu
View file @
891b64fd
...
...
@@ -33,6 +33,9 @@ else
esac
fi
cpu_flag
=
""
cpu_flag_obs
=
""
case
"
$cpu_family
--
$model_name
"
in
Alpha
*
EV6
*
)
cpu_flag
=
"ev6"
;
...
...
@@ -40,11 +43,21 @@ case "$cpu_family--$model_name" in
*
Xeon
*
)
cpu_flag
=
"nocona"
;
;;
*
Pentium
*
4
*
Mobile
*
CPU
*
)
cpu_flag
=
"pentium4m"
;
;;
*
Pentium
*
4
*
CPU
*
)
cpu_flag
=
"pentium4"
;
;;
*
Pentium
*
III
*
Mobile
*
CPU
*
)
cpu_flag
=
"pentium3m"
;
;;
*
Pentium
*
III
*
CPU
*
)
cpu_flag
=
"pentium3"
;
;;
*
Athlon
*
64
*
)
cpu_flag
=
"athlon64"
;
cpu_flag_obs
=
"athlon"
;
;;
*
Athlon
*
)
cpu_flag
=
"athlon"
;
...
...
@@ -84,6 +97,9 @@ case "$cc_ver--$cc_verno" in
check_cpu_cflags
=
"-mtune=
$cpu_flag
-march=
$cpu_flag
"
;;
*
GCC
*
)
# Fix for older compiler versions
if
test
-z
"
$cpu_flag_obs
"
;
then
cpu_flag
=
$cpu_flag_obs
;
check_cpu_cflags
=
"-mcpu=
$cpu_flag
-march=
$cpu_flag
"
;;
*
)
...
...
include/my_global.h
View file @
891b64fd
...
...
@@ -43,6 +43,11 @@
#define HAVE_ERRNO_AS_DEFINE
#endif
/* __CYGWIN__ */
/* Determine when to use "#pragma interface" */
#if !defined(__CYGWIN__) && !defined(__ICC) && defined(__GNUC__) && (__GNUC__ < 3)
#define USE_PRAGMA_INTERFACE
#endif
#if defined(i386) && !defined(__i386__)
#define __i386__
#endif
...
...
include/raid.h
View file @
891b64fd
...
...
@@ -89,7 +89,7 @@ extern "C" {
#ifdef __cplusplus
}
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/examples/ha_archive.h
View file @
891b64fd
...
...
@@ -14,7 +14,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/examples/ha_example.h
View file @
891b64fd
...
...
@@ -21,7 +21,7 @@
that you can implement.
*/
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/field.h
View file @
891b64fd
...
...
@@ -20,7 +20,7 @@
variables must declare the size_of() member function.
*/
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_berkeley.h
View file @
891b64fd
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_blackhole.h
View file @
891b64fd
...
...
@@ -14,7 +14,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_heap.h
View file @
891b64fd
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_innodb.h
View file @
891b64fd
...
...
@@ -21,7 +21,7 @@
Innodb
*/
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_isam.h
View file @
891b64fd
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_isammrg.h
View file @
891b64fd
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_myisam.h
View file @
891b64fd
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_myisammrg.h
View file @
891b64fd
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_ndbcluster.h
View file @
891b64fd
...
...
@@ -21,7 +21,7 @@
/* The class defining a handle to an NDB Cluster table */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/handler.h
View file @
891b64fd
...
...
@@ -17,7 +17,7 @@
/* Definitions for parameters to do with handler-routines */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item.h
View file @
891b64fd
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_cmpfunc.h
View file @
891b64fd
...
...
@@ -17,7 +17,7 @@
/* compare and test functions */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_func.h
View file @
891b64fd
...
...
@@ -17,7 +17,7 @@
/* Function items used by mysql */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_geofunc.h
View file @
891b64fd
...
...
@@ -19,7 +19,7 @@
#ifdef HAVE_SPATIAL
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_strfunc.h
View file @
891b64fd
...
...
@@ -17,7 +17,8 @@
/* This file defines all string functions */
#ifdef __GNUC__
#ifdef USE_PRAGMA_INTERFACE
#error PRAGMA
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_subselect.h
View file @
891b64fd
...
...
@@ -16,7 +16,7 @@
/* subselect Item */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_sum.h
View file @
891b64fd
...
...
@@ -17,7 +17,7 @@
/* classes for sum functions */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_timefunc.h
View file @
891b64fd
...
...
@@ -17,7 +17,7 @@
/* Function items used by mysql */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/opt_range.h
View file @
891b64fd
...
...
@@ -20,7 +20,7 @@
#ifndef _opt_range_h
#define _opt_range_h
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/procedure.h
View file @
891b64fd
...
...
@@ -17,7 +17,7 @@
/* When using sql procedures */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/protocol.h
View file @
891b64fd
...
...
@@ -14,7 +14,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/set_var.h
View file @
891b64fd
...
...
@@ -16,7 +16,7 @@
/* Classes to support the SET command */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/sql_class.h
View file @
891b64fd
...
...
@@ -17,7 +17,7 @@
/* Classes in mysql */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/sql_list.h
View file @
891b64fd
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/sql_select.h
View file @
891b64fd
...
...
@@ -17,7 +17,7 @@
/* classes to use when handling where clause */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/sql_string.h
View file @
891b64fd
...
...
@@ -16,7 +16,7 @@
/* This file is originally from the mysql distribution. Coded by monty */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/sql_udf.h
View file @
891b64fd
...
...
@@ -17,7 +17,7 @@
/* This file defines structures needed by udf functions */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
#endif
...
...
sql/tztime.h
View file @
891b64fd
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class interface */
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment