ncursesw-morphos/c++/edit_cfg.sh

71 lines
2.9 KiB
Bash
Raw Normal View History

1998-03-01 12:21:12 +08:00
#!/bin/sh
2007-04-08 09:10:28 +08:00
# $Id: edit_cfg.sh,v 1.16 2007/04/07 19:08:49 tom Exp $
1998-03-01 12:21:12 +08:00
##############################################################################
# Copyright (c) 1998-2005,2007 Free Software Foundation, Inc. #
1998-03-01 12:21:12 +08:00
# #
# Permission is hereby granted, free of charge, to any person obtaining a #
# copy of this software and associated documentation files (the "Software"), #
# to deal in the Software without restriction, including without limitation #
# the rights to use, copy, modify, merge, publish, distribute, distribute #
# with modifications, sublicense, and/or sell copies of the Software, and to #
# permit persons to whom the Software is furnished to do so, subject to the #
# following conditions: #
# #
# The above copyright notice and this permission notice shall be included in #
# all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
# DEALINGS IN THE SOFTWARE. #
# #
# Except as contained in this notice, the name(s) of the above copyright #
# holders shall not be used in advertising or otherwise to promote the sale, #
# use or other dealings in this Software without prior written #
# authorization. #
##############################################################################
#
# Author: Thomas E. Dickey 1997-on
1998-03-01 12:21:12 +08:00
#
# Edit the default value of the etip.h file based on the autoconf-generated
# values:
#
# $1 = ncurses_cfg.h
# $2 = etip.h
#
2000-07-09 10:46:08 +08:00
echo "substituting autoconf'd values from $1 into $2"
1998-03-01 12:21:12 +08:00
for name in \
1999-10-24 12:32:42 +08:00
CPP_HAS_PARAM_INIT \
2005-10-10 02:41:57 +08:00
CPP_HAS_STATIC_CAST \
1999-10-24 12:32:42 +08:00
ETIP_NEEDS_MATH_EXCEPTION \
ETIP_NEEDS_MATH_H \
1998-03-01 12:21:12 +08:00
HAVE_BUILTIN_H \
1999-10-24 12:32:42 +08:00
HAVE_GPP_BUILTIN_H \
2002-10-13 11:35:53 +08:00
HAVE_GXX_BUILTIN_H \
2007-04-08 09:10:28 +08:00
HAVE_IOSTREAM \
1998-03-01 12:21:12 +08:00
HAVE_TYPEINFO \
HAVE_VALUES_H
1998-03-01 12:21:12 +08:00
do
2004-02-09 10:15:26 +08:00
rm -f $2.bak
1998-03-01 12:21:12 +08:00
mv $2 $2.bak
if ( grep "[ ]$name[ ]1" $1 2>&1 >/dev/null)
then
2000-07-09 10:46:08 +08:00
value=1
sed -e 's/define '$name'.*$/define '$name' 1/' $2.bak >$2
1998-03-01 12:21:12 +08:00
else
2000-07-09 10:46:08 +08:00
value=0
sed -e 's/define '$name'.*$/define '$name' 0/' $2.bak >$2
1998-03-01 12:21:12 +08:00
fi
if (cmp -s $2 $2.bak)
then
2000-07-09 10:46:08 +08:00
echo '... '$name $value
1998-03-01 12:21:12 +08:00
mv $2.bak $2
else
2000-07-09 10:46:08 +08:00
echo '... '$name $value
1998-03-01 12:21:12 +08:00
rm -f $2.bak
fi
done