Don't set CPP_THROW_NEW for non-gnu compilers until I figure out why every commercial compiler (except MSVC) dies on this.

This commit is contained in:
seawood%netscape.com 2002-07-02 22:59:34 +00:00
Родитель cbebcfcea3
Коммит 4adafe90e0
2 изменённых файлов: 2 добавлений и 2 удалений

2
configure поставляемый
Просмотреть файл

@ -12506,7 +12506,7 @@ _MOZ_CPP_EXCEPTIONS=1
fi
if test "$_MOZ_CPP_EXCEPTIONS"; then
if test "$_MOZ_CPP_EXCEPTIONS" -o -z "$GNU_CC"; then
cat >> confdefs.h <<\EOF
#define CPP_THROW_NEW
EOF

Просмотреть файл

@ -4032,7 +4032,7 @@ else
fi
_MOZ_CPP_EXCEPTIONS=1 ])
if test "$_MOZ_CPP_EXCEPTIONS"; then
if test "$_MOZ_CPP_EXCEPTIONS" -o -z "$GNU_CC"; then
AC_DEFINE(CPP_THROW_NEW, [])
else
AC_DEFINE(CPP_THROW_NEW, [throw()])