summaryrefslogtreecommitdiff
path: root/sql/tztime.cc
diff options
context:
space:
mode:
authorunknown <jani@a193-229-222-105.elisa-laajakaista.fi>2005-12-13 18:30:10 +0200
committerunknown <jani@a193-229-222-105.elisa-laajakaista.fi>2005-12-13 18:30:10 +0200
commit120466962061ba50d5de5326258c15848bcc2910 (patch)
tree6aa9e75ff46f35e765edb4f3db321cc710d5dfd5 /sql/tztime.cc
parent4fc6562f6604dca883e6cc7df894b25f976c3ce4 (diff)
downloadmariadb-git-120466962061ba50d5de5326258c15848bcc2910.tar.gz
Minor Netware specific changes.
netware/BUILD/compile-linux-tools: Fixed compilation problem with Linux tools. scripts/make_binary_distribution.sh: Netware specific changes. Discard platform specific files and added a couple of missing files. sql/tztime.cc: Code not ported to Netware yet.
Diffstat (limited to 'sql/tztime.cc')
-rw-r--r--sql/tztime.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/tztime.cc b/sql/tztime.cc
index b5ebc9f350a..b0a32748998 100644
--- a/sql/tztime.cc
+++ b/sql/tztime.cc
@@ -2359,6 +2359,7 @@ scan_tz_dir(char * name_end)
int
main(int argc, char **argv)
{
+#ifndef __NETWARE__
MY_INIT(argv[0]);
if (argc != 2 && argc != 3)
@@ -2417,6 +2418,10 @@ main(int argc, char **argv)
free_root(&tz_storage, MYF(0));
}
+#else
+ fprintf(stderr, "This tool has not been ported to NetWare\n");
+#endif /* __NETWARE__ */
+
return 0;
}