Skip to content

Commit 4f73004

Browse files
committed
Remove exported symbol causing problem in Linux x64 build.
Thanks to Alex.
1 parent 29ab37b commit 4f73004

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

builds/posix/vers.sh.in

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ platform_aix() {
2929
echo '#!'
3030

3131
for i in `grep -v '#' ${1}`
32-
do
32+
do
3333
echo "${TAB}$i"
3434
done
3535
}
3636

3737
platform_darwin() {
3838
for i in `grep -v '#' ${1}`
39-
do
39+
do
4040
echo "${TAB}_$i"
4141
done
4242
}
4343

4444
platform_hpux() {
4545
for i in `grep -v '#' ${1}`
46-
do
46+
do
4747
echo "+e $i"
4848
done
4949
}
@@ -53,11 +53,10 @@ platform_linux() {
5353
echo 'global:'
5454

5555
for i in `grep -v '#' ${1}`
56-
do
56+
do
5757
echo "${TAB}$i;"
5858
done
5959

60-
echo "${TAB}_IO_stdin_used;"
6160
echo 'local:'
6261
echo "${TAB}*;"
6362
echo '};'

0 commit comments

Comments
 (0)