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
cf5dd176
Commit
cf5dd176
authored
Aug 23, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build using --without-server. (Bug #11680)
parent
8888e917
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
configure.in
configure.in
+3
-4
dbug/my_main.c
dbug/my_main.c
+2
-0
mysys/Makefile.am
mysys/Makefile.am
+1
-1
mysys/mf_getdate.c
mysys/mf_getdate.c
+1
-1
sql/share/Makefile.am
sql/share/Makefile.am
+1
-1
tests/Makefile.am
tests/Makefile.am
+1
-2
No files found.
configure.in
View file @
cf5dd176
...
@@ -2444,7 +2444,7 @@ thread_dirs=
...
@@ -2444,7 +2444,7 @@ thread_dirs=
dnl This probably should be cleaned up more -
for
now the threaded
dnl This probably should be cleaned up more -
for
now the threaded
dnl client is just using plain-old libs.
dnl client is just using plain-old libs.
sql_client_dirs
=
"
libmysql strings regex
client"
sql_client_dirs
=
"
strings regex mysys sql/share libmysql
client"
linked_client_targets
=
"linked_libmysql_sources"
linked_client_targets
=
"linked_libmysql_sources"
if
test
"
$THREAD_SAFE_CLIENT
"
!=
"no"
if
test
"
$THREAD_SAFE_CLIENT
"
!=
"no"
...
@@ -2482,10 +2482,10 @@ then
...
@@ -2482,10 +2482,10 @@ then
AC_DEFINE
([
THREAD],
[
1],
AC_DEFINE
([
THREAD],
[
1],
[
Define
if
you want to have threaded code. This may be undef on client code]
)
[
Define
if
you want to have threaded code. This may be undef on client code]
)
# Avoid _PROGRAMS names
# Avoid _PROGRAMS names
THREAD_LOBJECTS
=
"thr_alarm.o thr_lock.o thr_mutex.o thr_rwlock.o my_pthread.o my_thr_init.o"
THREAD_LOBJECTS
=
"thr_alarm.o thr_lock.o thr_mutex.o thr_rwlock.o my_pthread.o my_thr_init.o
mf_keycache.o
"
AC_SUBST
(
THREAD_LOBJECTS
)
AC_SUBST
(
THREAD_LOBJECTS
)
server_scripts
=
"mysqld_safe mysql_install_db"
server_scripts
=
"mysqld_safe mysql_install_db"
sql_server_dirs
=
"strings
mysys
dbug extra regex"
sql_server_dirs
=
"strings dbug extra regex"
#
#
...
@@ -2593,7 +2593,6 @@ esac
...
@@ -2593,7 +2593,6 @@ esac
# END of configuration for optional table handlers
# END of configuration for optional table handlers
#
#
sql_server_dirs
=
"
$sql_server_dirs
myisam myisammrg heap vio sql"
sql_server_dirs
=
"
$sql_server_dirs
myisam myisammrg heap vio sql"
fi
fi
# IMPORTANT - do not modify LIBS past this line - this hack is the only way
# IMPORTANT - do not modify LIBS past this line - this hack is the only way
...
...
dbug/my_main.c
View file @
cf5dd176
...
@@ -18,7 +18,9 @@ char *argv[];
...
@@ -18,7 +18,9 @@ char *argv[];
#if defined(HAVE_PTHREAD_INIT) && defined(THREAD)
#if defined(HAVE_PTHREAD_INIT) && defined(THREAD)
pthread_init
();
/* Must be called before DBUG_ENTER */
pthread_init
();
/* Must be called before DBUG_ENTER */
#endif
#endif
#ifdef THREAD
my_thread_global_init
();
my_thread_global_init
();
#endif
{
{
DBUG_ENTER
(
"main"
);
DBUG_ENTER
(
"main"
);
DBUG_PROCESS
(
argv
[
0
]);
DBUG_PROCESS
(
argv
[
0
]);
...
...
mysys/Makefile.am
View file @
cf5dd176
...
@@ -30,7 +30,7 @@ libmysys_a_SOURCES = my_init.c my_getwd.c mf_getdate.c my_mmap.c \
...
@@ -30,7 +30,7 @@ libmysys_a_SOURCES = my_init.c my_getwd.c mf_getdate.c my_mmap.c \
mf_path.c mf_loadpath.c my_file.c
\
mf_path.c mf_loadpath.c my_file.c
\
my_open.c my_create.c my_dup.c my_seek.c my_read.c
\
my_open.c my_create.c my_dup.c my_seek.c my_read.c
\
my_pread.c my_write.c
\
my_pread.c my_write.c
\
mf_keycache
.c mf_keycache
s.c my_crc32.c
\
mf_keycaches.c my_crc32.c
\
mf_iocache.c mf_iocache2.c mf_cache.c mf_tempfile.c
\
mf_iocache.c mf_iocache2.c mf_cache.c mf_tempfile.c
\
mf_tempdir.c my_lock.c mf_brkhant.c my_alarm.c
\
mf_tempdir.c my_lock.c mf_brkhant.c my_alarm.c
\
my_malloc.c my_realloc.c my_once.c mulalloc.c
\
my_malloc.c my_realloc.c my_once.c mulalloc.c
\
...
...
mysys/mf_getdate.c
View file @
cf5dd176
...
@@ -54,7 +54,7 @@ void get_date(register my_string to, int flag, time_t date)
...
@@ -54,7 +54,7 @@ void get_date(register my_string to, int flag, time_t date)
if
(
flag
&
GETDATE_GMT
)
if
(
flag
&
GETDATE_GMT
)
start_time
=
localtime
(
&
skr
);
start_time
=
localtime
(
&
skr
);
else
else
gmtime
(
&
skr
,
&
tm_tmp
);
start_time
=
gmtime
(
&
skr
);
#endif
#endif
if
(
flag
&
GETDATE_SHORT_DATE
)
if
(
flag
&
GETDATE_SHORT_DATE
)
sprintf
(
to
,
"%02d%02d%02d"
,
sprintf
(
to
,
"%02d%02d%02d"
,
...
...
sql/share/Makefile.am
View file @
cf5dd176
...
@@ -33,7 +33,7 @@ all-local: english/errmsg.sys
...
@@ -33,7 +33,7 @@ all-local: english/errmsg.sys
# created. Normally these are created by extra/Makefile
# created. Normally these are created by extra/Makefile
english/errmsg.sys
:
errmsg.txt
english/errmsg.sys
:
errmsg.txt
rm
$(top_builddir)
/include/mysqld_error.h
rm
-f
$(top_builddir)
/include/mysqld_error.h
(
cd
$(top_builddir)
/extra
&&
$(MAKE)
)
(
cd
$(top_builddir)
/extra
&&
$(MAKE)
)
install-data-local
:
install-data-local
:
...
...
tests/Makefile.am
View file @
cf5dd176
...
@@ -42,8 +42,7 @@ INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include \
...
@@ -42,8 +42,7 @@ INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include \
LIBS
=
@CLIENT_LIBS@
LIBS
=
@CLIENT_LIBS@
LDADD
=
@CLIENT_EXTRA_LDFLAGS@
\
LDADD
=
@CLIENT_EXTRA_LDFLAGS@
\
$(top_builddir)
/libmysql/libmysqlclient.la
$(top_builddir)
/libmysql/libmysqlclient.la
mysql_client_test_LDADD
=
$(LDADD)
$(CXXLDFLAGS)
\
mysql_client_test_LDADD
=
$(LDADD)
$(CXXLDFLAGS)
$(top_builddir)
/mysys/libmysys.a
mysql_client_test_SOURCES
=
mysql_client_test.c
$(yassl_dummy_link_fix)
mysql_client_test_SOURCES
=
mysql_client_test.c
$(yassl_dummy_link_fix)
insert_test_SOURCES
=
insert_test.c
$(yassl_dummy_link_fix)
insert_test_SOURCES
=
insert_test.c
$(yassl_dummy_link_fix)
select_test_SOURCES
=
select_test.c
$(yassl_dummy_link_fix)
select_test_SOURCES
=
select_test.c
$(yassl_dummy_link_fix)
...
...
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