2002-05-15 16:30:28 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2009-11-25 20:23:18 +00:00
|
|
|
# unifdefall: remove all the #if's from a source file
|
2002-05-15 16:30:28 +00:00
|
|
|
#
|
2017-11-27 15:37:16 +00:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
#
|
2013-03-28 20:33:07 +00:00
|
|
|
# Copyright (c) 2002 - 2013 Tony Finch <dot@dotat.at>
|
2010-01-19 18:18:15 +00:00
|
|
|
# Copyright (c) 2009 - 2010 Jonathan Nieder <jrnieder@gmail.com>
|
2009-11-25 20:23:18 +00:00
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
# SUCH DAMAGE.
|
|
|
|
#
|
2002-05-15 16:30:28 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2010-01-19 18:18:15 +00:00
|
|
|
unifdef="$(dirname "$0")/unifdef"
|
|
|
|
if [ ! -e "$unifdef" ]
|
|
|
|
then
|
|
|
|
unifdef=unifdef
|
|
|
|
fi
|
2010-03-12 17:55:29 +00:00
|
|
|
|
|
|
|
case "$@" in
|
|
|
|
"-d "*) echo DEBUGGING 1>&2
|
|
|
|
debug=-d
|
|
|
|
shift
|
|
|
|
esac
|
2010-01-19 18:18:15 +00:00
|
|
|
|
2013-03-13 22:50:14 +00:00
|
|
|
tmp=$(mktemp -d "${TMPDIR:-/tmp}/${0##*/}.XXXXXXXXXX") || exit 2
|
2010-03-12 17:55:29 +00:00
|
|
|
trap 'rm -r "$tmp" || exit 2' EXIT
|
2002-05-15 16:30:28 +00:00
|
|
|
|
2009-11-25 20:23:18 +00:00
|
|
|
export LC_ALL=C
|
2002-05-15 16:30:28 +00:00
|
|
|
|
2015-02-25 21:10:03 +00:00
|
|
|
# list of all controlling macros; assume these are undefined
|
|
|
|
"$unifdef" $debug -s "$@" | sort -u | sed 's/^/#undef /' >"$tmp/undefs"
|
2009-11-26 19:08:33 +00:00
|
|
|
# list of all macro definitions
|
2015-02-25 21:10:03 +00:00
|
|
|
cc -E -dM "$@" | sort >"$tmp/defs"
|
|
|
|
|
2010-03-12 17:55:29 +00:00
|
|
|
case $debug in
|
2015-02-25 21:10:03 +00:00
|
|
|
-d) cat "$tmp/undefs" "$tmp/defs" 1>&2
|
2010-03-12 17:55:29 +00:00
|
|
|
esac
|
2015-02-25 21:10:03 +00:00
|
|
|
|
|
|
|
# order of -f arguments means definitions override undefs
|
|
|
|
"$unifdef" $debug -k -f "$tmp/undefs" -f "$tmp/defs" "$@"
|