Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Contracts p2900 contract violation #8

Closed
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion libstdc++-v3/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
40 changes: 14 additions & 26 deletions libstdc++-v3/configure
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,6 @@ infodir
docdir
oldincludedir
includedir
runstatedir
localstatedir
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is indicative of using the wrong version of autoreconf (some of the distro ones are patched - we need to use exactly what the GCC requirements are - or we end up with these spurious changes)

sharedstatedir
sysconfdir
Expand Down Expand Up @@ -1028,7 +1027,6 @@ datadir='${datarootdir}'
sysconfdir='${prefix}/etc'
sharedstatedir='${prefix}/com'
localstatedir='${prefix}/var'
runstatedir='${localstatedir}/run'
includedir='${prefix}/include'
oldincludedir='/usr/include'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
Expand Down Expand Up @@ -1281,15 +1279,6 @@ do
| -silent | --silent | --silen | --sile | --sil)
silent=yes ;;

-runstatedir | --runstatedir | --runstatedi | --runstated \
| --runstate | --runstat | --runsta | --runst | --runs \
| --run | --ru | --r)
ac_prev=runstatedir ;;
-runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
| --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
| --run=* | --ru=* | --r=*)
runstatedir=$ac_optarg ;;

-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
ac_prev=sbindir ;;
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
Expand Down Expand Up @@ -1427,7 +1416,7 @@ fi
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
datadir sysconfdir sharedstatedir localstatedir includedir \
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
libdir localedir mandir runstatedir
libdir localedir mandir
do
eval ac_val=\$$ac_var
# Remove trailing slashes.
Expand Down Expand Up @@ -1580,7 +1569,6 @@ Fine tuning of the installation directories:
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
--runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run]
--libdir=DIR object code libraries [EPREFIX/lib]
--includedir=DIR C header files [PREFIX/include]
--oldincludedir=DIR C header files for non-gcc [/usr/include]
Expand Down Expand Up @@ -5092,7 +5080,7 @@ else
We can't simply define LARGE_OFF_T to be 9223372036854775807,
since some C++ compilers masquerading as C compilers
incorrectly reject 9223372036854775807. */
#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31))
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
&& LARGE_OFF_T % 2147483647 == 1)
? 1 : -1];
Expand Down Expand Up @@ -5138,7 +5126,7 @@ else
We can't simply define LARGE_OFF_T to be 9223372036854775807,
since some C++ compilers masquerading as C compilers
incorrectly reject 9223372036854775807. */
#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31))
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
&& LARGE_OFF_T % 2147483647 == 1)
? 1 : -1];
Expand All @@ -5162,7 +5150,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
We can't simply define LARGE_OFF_T to be 9223372036854775807,
since some C++ compilers masquerading as C compilers
incorrectly reject 9223372036854775807. */
#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31))
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
&& LARGE_OFF_T % 2147483647 == 1)
? 1 : -1];
Expand Down Expand Up @@ -5207,7 +5195,7 @@ else
We can't simply define LARGE_OFF_T to be 9223372036854775807,
since some C++ compilers masquerading as C compilers
incorrectly reject 9223372036854775807. */
#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31))
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
&& LARGE_OFF_T % 2147483647 == 1)
? 1 : -1];
Expand All @@ -5231,7 +5219,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
We can't simply define LARGE_OFF_T to be 9223372036854775807,
since some C++ compilers masquerading as C compilers
incorrectly reject 9223372036854775807. */
#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31))
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
&& LARGE_OFF_T % 2147483647 == 1)
? 1 : -1];
Expand Down Expand Up @@ -12292,7 +12280,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
#line 12295 "configure"
#line 12283 "configure"
#include "confdefs.h"

#if HAVE_DLFCN_H
Expand Down Expand Up @@ -12398,7 +12386,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
#line 12401 "configure"
#line 12389 "configure"
#include "confdefs.h"

#if HAVE_DLFCN_H
Expand Down Expand Up @@ -16194,7 +16182,7 @@ $as_echo "$glibcxx_cv_atomic_long_long" >&6; }
# Fake what AC_TRY_COMPILE does.

cat > conftest.$ac_ext << EOF
#line 16197 "configure"
#line 16185 "configure"
int main()
{
typedef bool atomic_type;
Expand Down Expand Up @@ -16229,7 +16217,7 @@ $as_echo "$glibcxx_cv_atomic_bool" >&6; }
rm -f conftest*

cat > conftest.$ac_ext << EOF
#line 16232 "configure"
#line 16220 "configure"
int main()
{
typedef short atomic_type;
Expand Down Expand Up @@ -16264,7 +16252,7 @@ $as_echo "$glibcxx_cv_atomic_short" >&6; }
rm -f conftest*

cat > conftest.$ac_ext << EOF
#line 16267 "configure"
#line 16255 "configure"
int main()
{
// NB: _Atomic_word not necessarily int.
Expand Down Expand Up @@ -16300,7 +16288,7 @@ $as_echo "$glibcxx_cv_atomic_int" >&6; }
rm -f conftest*

cat > conftest.$ac_ext << EOF
#line 16303 "configure"
#line 16291 "configure"
int main()
{
typedef long long atomic_type;
Expand Down Expand Up @@ -16456,7 +16444,7 @@ $as_echo "mutex" >&6; }
# unnecessary for this test.

cat > conftest.$ac_ext << EOF
#line 16459 "configure"
#line 16447 "configure"
int main()
{
_Decimal32 d1;
Expand Down Expand Up @@ -16498,7 +16486,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
# unnecessary for this test.

cat > conftest.$ac_ext << EOF
#line 16501 "configure"
#line 16489 "configure"
template<typename T1, typename T2>
struct same
{ typedef T2 type; };
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/doc/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/include/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/libsupc++/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/po/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/python/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/src/c++11/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/src/c++17/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/src/c++20/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/src/c++23/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/src/c++26/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/src/c++98/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/src/experimental/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/src/filesystem/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/src/libbacktrace/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
1 change: 0 additions & 1 deletion libstdc++-v3/testsuite/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,6 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
python_mod_dir = @python_mod_dir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down