Fixes for compilation on Solaris (#59026, Frank Belew)

Tue Sep 18 18:23:02 2001  Owen Taylor  <otaylor@redhat.com>

        Fixes for compilation on Solaris (#59026, Frank Belew)

        * glib/gqsort.c (g_qsort_with_data): Use g_alloca().

        * glib/giochannel.c (g_io_channel_read_to_end): Fix use
        of ternary on left-hand-side.

        * configure.in: Handle the ac_cv_working_alloca_h variable
        set by autoconf-2.5x.

Tue Sep 11 18:50:44 2001  Owen Taylor  <otaylor@redhat.com>

        * m4macros/glib-gettext.m4 acinclude.m4: Remove commented
        out sections for clarity.
This commit is contained in:
Owen Taylor
2001-09-18 22:28:32 +00:00
committed by Owen Taylor
parent 71075ee0db
commit a9b48f3327
13 changed files with 146 additions and 218 deletions

View File

@@ -1837,7 +1837,11 @@ esac
# on variable expansion in case labels. Look at the generated config.status
# for a hint.
glib_header_alloca_h="$ac_cv_header_alloca_h"
if test "x${ac_cv_working_alloca_h+set}" = xset ; then
glib_header_alloca_h="$ac_cv_working_alloca_h"
else
glib_header_alloca_h="$ac_cv_header_alloca_h"
fi
case xyes in
x$ac_cv_header_float_h)