mirror of
https://github.com/samba-team/samba.git
synced 2025-01-29 21:47:30 +03:00
006515d889
This reverts commit cb5492978b6b157f529806afb2f5fc6202888129. For more information, please have a look at the discussion on samba-technical starting with [1]. [1] http://lists.samba.org/archive/samba-technical/2008-June/059511.html Karolin (cherry picked from commit 1e5aeb96f92fef8056ec9010e125f4d0d31dd90e) (This used to be commit d06baf0e744d779b836783f61ec97d3a6d380eb5)
46 lines
794 B
Bash
Executable File
46 lines
794 B
Bash
Executable File
#! /bin/sh
|
|
|
|
#
|
|
# mksyms.sh
|
|
#
|
|
# Extract symbols to export from C-header files.
|
|
# output in version-script format for linking shared libraries.
|
|
#
|
|
# This is the shell warpper for the mksyms.awk core script.
|
|
#
|
|
# Copyright (C) 2008 Micheal Adam <obnox@samba.org>
|
|
#
|
|
|
|
LANG=C; export LANG
|
|
LC_ALL=C; export LC_ALL
|
|
LC_COLLATE=C; export LC_COLLATE
|
|
|
|
if [ $# -lt 2 ]
|
|
then
|
|
echo "Usage: $0 awk output_file header_files"
|
|
exit 1
|
|
fi
|
|
|
|
awk="$1"
|
|
shift
|
|
|
|
symsfile="$1"
|
|
shift
|
|
symsfile_tmp="$symsfile.$$.tmp~"
|
|
|
|
proto_src="`echo $@ | tr ' ' '\n' | sort | uniq `"
|
|
|
|
echo creating $symsfile
|
|
|
|
mkdir -p `dirname $symsfile`
|
|
|
|
${awk} -f `dirname $0`/mksyms.awk $proto_src > $symsfile_tmp
|
|
|
|
if cmp -s $symsfile $symsfile_tmp 2>/dev/null
|
|
then
|
|
echo "$symsfile unchanged"
|
|
rm $symsfile_tmp
|
|
else
|
|
mv $symsfile_tmp $symsfile
|
|
fi
|