https://sourceware.org/bugzilla/show_bug.cgi?id=33168
--- Comment #1 from Rainer Orth <ro at CeBiTec dot Uni-Bielefeld.DE> --- > * A patch like the following: > > diff --git a/libsframe/configure.ac b/libsframe/configure.ac > --- a/libsframe/configure.ac > +++ b/libsframe/configure.ac > @@ -23,6 +23,13 @@ AC_CONFIG_SRCDIR(sframe.c) > > AC_CANONICAL_TARGET > > +case "${host}" in > + # __EXTENSIONS__ includes <sys/wait.h> on Solaris, conflicting with > + # dejagnu.h's wait definition up to DejaGnu 1.6.3. > + *-*-solaris*) > + ac_cv_safe_to_define___extensions__=no > + ;; > +esac I should have mentioned: autoconf has provisions for disabling __EXTENSIONS__ in some circumstances (cf. autoconf/specific.m4). One can trigger that explicitly by setting the cache variable above. -- You are receiving this mail because: You are on the CC list for the bug.