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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
d9fcc304
Commit
d9fcc304
authored
Jun 04, 2007
by
mhansson@dl145s.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mhansson@bk-internal.mysql.com:/home/bk/mysql-5.0-opt
into dl145s.mysql.com:/dev/shm/mhansson/my50-bug27741
parents
44b46b73
3ee16518
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+11
-0
sql/udf_example.c
sql/udf_example.c
+2
-1
No files found.
mysql-test/mysql-test-run.pl
View file @
d9fcc304
...
@@ -1784,6 +1784,17 @@ sub environment_setup () {
...
@@ -1784,6 +1784,17 @@ sub environment_setup () {
split
('
:
',
$ENV
{'
DYLD_LIBRARY_PATH
'})
:
());
split
('
:
',
$ENV
{'
DYLD_LIBRARY_PATH
'})
:
());
mtr_debug
("
DYLD_LIBRARY_PATH:
$ENV
{'DYLD_LIBRARY_PATH'}
");
mtr_debug
("
DYLD_LIBRARY_PATH:
$ENV
{'DYLD_LIBRARY_PATH'}
");
# The environment variable used for shared libs on AIX
$ENV
{'
SHLIB_PATH
'}
=
join
("
:
",
@ld_library_paths
,
$ENV
{'
SHLIB_PATH
'}
?
split
('
:
',
$ENV
{'
SHLIB_PATH
'})
:
());
mtr_debug
("
SHLIB_PATH:
$ENV
{'SHLIB_PATH'}
");
# The environment variable used for shared libs on hp-ux
$ENV
{'
LIBPATH
'}
=
join
("
:
",
@ld_library_paths
,
$ENV
{'
LIBPATH
'}
?
split
('
:
',
$ENV
{'
LIBPATH
'})
:
());
mtr_debug
("
LIBPATH:
$ENV
{'LIBPATH'}
");
# --------------------------------------------------------------------------
# --------------------------------------------------------------------------
# Also command lines in .opt files may contain env vars
# Also command lines in .opt files may contain env vars
...
...
sql/udf_example.c
View file @
d9fcc304
...
@@ -130,7 +130,8 @@ typedef long long longlong;
...
@@ -130,7 +130,8 @@ typedef long long longlong;
#include <m_string.h>
/* To get strmov() */
#include <m_string.h>
/* To get strmov() */
#else
#else
/* when compiled as standalone */
/* when compiled as standalone */
#define strmov(a,b) strcpy(a,b)
#include <string.h>
#define strmov(a,b) stpcpy(a,b)
#define bzero(a,b) memset(a,0,b)
#define bzero(a,b) memset(a,0,b)
#define memcpy_fixed(a,b,c) memcpy(a,b,c)
#define memcpy_fixed(a,b,c) memcpy(a,b,c)
#endif
#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