summaryrefslogtreecommitdiff
path: root/netware
diff options
context:
space:
mode:
authorunknown <jani@a193-229-222-105.elisa-laajakaista.fi>2005-08-18 21:26:25 +0300
committerunknown <jani@a193-229-222-105.elisa-laajakaista.fi>2005-08-18 21:26:25 +0300
commit9b76bca8cf6dc34facb07c99428ea219fae037fb (patch)
tree99e88e3683f1f5e9dec34377ed608ef380f16741 /netware
parent7df203c8d1357528670f2e5644cd4e3a56a60556 (diff)
downloadmariadb-git-9b76bca8cf6dc34facb07c99428ea219fae037fb.tar.gz
Some minor fixes for Netware. These were required after we started building
against a later version of libc. include/config-netware.h: Changes for Netware. Needed to build against newer libc. netware/BUILD/nwbootstrap: Fix to build script. sql/mysqld.cc: Added an include.
Diffstat (limited to 'netware')
-rwxr-xr-xnetware/BUILD/nwbootstrap8
1 files changed, 1 insertions, 7 deletions
diff --git a/netware/BUILD/nwbootstrap b/netware/BUILD/nwbootstrap
index 2ba90e32fa7..a420aa8b64c 100755
--- a/netware/BUILD/nwbootstrap
+++ b/netware/BUILD/nwbootstrap
@@ -171,15 +171,9 @@ do
rm $file.org
done
-# create the libmysql.imp file in netware folder from libmysql/libmysql.def
-# file
-echo "generating llibmysql.imp file..."
-awk 'BEGIN{x=0;} x==1 {print $1;next} /EXPORTS/{x=1}' libmysql/libmysql.def > netware/libmysql.imp
-
# create the libmysql.imp file in netware folder from libmysql/libmysql.def file
echo "generating llibmysql.imp file..."
-awk 'BEGIN{x=0;} x==1 {print $1;next} /EXPORTS/{x=1}' libmysql/libmysql.def > netware/libmysql.imp
-
+awk 'BEGIN{x=0;} END{printf("\n");} x==1 {printf(" %s",$1); x++; next} x>1 {printf(",\n %s", $1);next} /EXPORTS/{x=1}' libmysql/libmysql.def > netware/libmysql.imp
# build linux tools
echo "compiling linux tools..."