ICU-157 udata updates -> configure changes [compile C files using C++ to work around broken HP compiler]

X-SVN-Rev: 423
This commit is contained in:
Steven R. Loomis 1999-12-15 21:48:22 +00:00
parent 8b2688a865
commit e152130070
2 changed files with 14 additions and 2 deletions

View file

@ -2218,10 +2218,16 @@ esac
case "${host}" in
*-*-hpux*)
for file in tools/gencol/gencol samples/date/date \
samples/cal/cal test/cintltst/cintltst
samples/cal/cal test/cintltst/cintltst \
tools/makeconv/makeconv tools/genrb/genrb \
tools/rbdump/read tools/genccode/genccode \
tools/gencmn/gencmn tools/gencnval/gencnval \
tools/gennames/gennames
do
if test -f $file.c; then
mv $file.c $file.cpp
else
echo "# $file.c does not exist or is already renamed [warning]"
fi
done
;;

View file

@ -241,10 +241,16 @@ dnl by renaming some .c files to .cpp
case "${host}" in
*-*-hpux*)
for file in tools/gencol/gencol samples/date/date \
samples/cal/cal test/cintltst/cintltst
samples/cal/cal test/cintltst/cintltst \
tools/makeconv/makeconv tools/genrb/genrb \
tools/rbdump/read tools/genccode/genccode \
tools/gencmn/gencmn tools/gencnval/gencnval \
tools/gennames/gennames
do
if test -f $file.c; then
mv $file.c $file.cpp
else
echo "# $file.c does not exist or is already renamed [warning]"
fi
done
;;