distclean: distclean-recursive distclean-am
-rm -f config.status
*** ./configure.cln Sat Jan 3 17:16:42 1998
--- ./configure Thu Jan 8 14:46:33 1998
***************
*** 1,4 ****
! #! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.12
--- 1,4 ----
! #! /bin/posix/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.12
***************
*** 69,74 ****
--- 69,81 ----
infodir='${prefix}/info'
mandir='${prefix}/man'
+ # HP-UX overrides
+ CC="cc"; CONFIG_SHELL="/bin/posix/sh"
+ # Add -Dhpux9 to CFLAGS if compiling under 9.X
+ CFLAGS="-O -Ae"
+ LDFLAGS="$CFLAGS"
+ prefix="/opt/gtk+"; RANLIB="/bin/true"
+
# Initialize some other variables.
subdirs=
MFLAGS= MAKEFLAGS=
***************
*** 636,647 ****
# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
# It thinks the first close brace ends the variable substitution.
! test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
! test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
# It thinks the first close brace ends the variable substitution.
! test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL} -s'
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
! test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
echo "configure:648: checking whether build environment is sane" >&5
*** ./gdk/Makefile.in.cln Sat Jan 3 17:17:44 1998
--- ./gdk/Makefile.in Thu Jan 8 12:46:12 1998
***************
*** 112,121 ****
gdktypes.h \
gdkx.h
for (n = 0, cnt = 0, xcnt = 0; n < (width * cpp); n += cpp, xcnt++)
{
*** ./glib/configure.cln Sat Jan 3 17:16:39 1998
--- ./glib/configure Thu Jan 8 14:46:50 1998
***************
*** 59,64 ****
--- 59,70 ----
infodir='${prefix}/info'
mandir='${prefix}/man'
+ # HP-UX overrides
+ CC="cc"
+ # Add -Dhpux9 to CFLAGS if compiling under 9.X
+ CFLAGS="-O -Ae"; LDFLAGS="$CFLAGS"
+ prefix="/opt/gtk+"; RANLIB="/bin/true"
+
# Initialize some other variables.
subdirs=
MFLAGS= MAKEFLAGS=
***************
*** 607,618 ****
# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
# It thinks the first close brace ends the variable substitution.
! test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
! test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
# It thinks the first close brace ends the variable substitution.
! test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL} -s'
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
! test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
+ #ifdef hpux9
+ sel = select (FD_SETSIZE, (int *)&readset, NULL, NULL, &tv);
+ #else
sel = select (FD_SETSIZE, &readset, NULL, NULL, &tv);
+ #endif
if (sel == -1)
break;
*** ./glib/ltconfig.cln Mon Nov 24 22:37:35 1997
--- ./glib/ltconfig Thu Jan 8 13:00:05 1998
***************
*** 832,841 ****
test -z "$ac_dir" && dir=.
if test -f $ac_dir/nm; then
# Check to see if the nm accepts a BSD-compat flag.
! if ($ac_dir/nm -B /dev/null 2>&1; exit 0) | grep /dev/null >/dev/null; then
! NM="$ac_dir/nm -B"
! elif ($ac_dir/nm -p /dev/null 2>&1; exit 0) | grep /dev/null >/dev/null; then
NM="$ac_dir/nm -p"
else
NM="$ac_dir/nm"
fi
--- 832,841 ----
test -z "$ac_dir" && dir=.
if test -f $ac_dir/nm; then
# Check to see if the nm accepts a BSD-compat flag.
! if ($ac_dir/nm -p /dev/null 2>&1; exit 0) | grep /dev/null >/dev/null; then
NM="$ac_dir/nm -p"
+ elif ($ac_dir/nm -B /dev/null 2>&1; exit 0) | grep /dev/null >/dev/null; then
+ NM="$ac_dir/nm -B"
else
NM="$ac_dir/nm"
fi
*** ./glib/ltmain.sh.cln Mon Nov 24 22:37:35 1997
--- ./glib/ltmain.sh Thu Jan 8 13:00:34 1998
***************
*** 835,842 ****
exit 1
fi
! # Add libc to deplibs on all systems.
! deplibs="$deplibs -lc"
if test -n "$dlfiles$dlprefiles"; then
$echo "$progname: warning: \`-dlopen' is ignored while creating libtool libraries" 1>&2
--- 835,843 ----
exit 1
fi
! # DON'T add libc to deplibs on all systems.
! # There's no point - the C compiler adds -lc when linking binaries !
! # deplibs="$deplibs -lc"
if test -n "$dlfiles$dlprefiles"; then
$echo "$progname: warning: \`-dlopen' is ignored while creating libtool libraries" 1>&2
*** ./glib/mkinstalldirs.cln Mon Nov 24 22:37:36 1997
--- ./glib/mkinstalldirs Thu Jan 8 13:01:12 1998
***************
*** 19,26 ****
esac
if test ! -d "$pathcomp"; then
! echo "mkdir $pathcomp" 1>&2
! mkdir "$pathcomp" > /dev/null 2>&1 || lasterr=$?
fi
if test ! -d "$pathcomp"; then
--- 19,26 ----
esac
if test ! -d "$pathcomp"; then
! echo "mkdir -p -m 755 $pathcomp" 1>&2
! mkdir -p -m 755 "$pathcomp" > /dev/null 2>&1 || lasterr=$?
fi
if test ! -d "$pathcomp"; then
*** ./gtk/Makefile.in.cln Sat Jan 3 17:17:48 1998
--- ./gtk/Makefile.in Thu Jan 8 13:03:02 1998
***************
*** 276,281 ****
--- 276,282 ----
noinst_PROGRAMS = testgtk testinput testselection simple testtree
testgtk_LDADD = \
libgtk.la \
+ -lc \
$(top_builddir)/gdk/libgdk.la \
@x_ldflags@ \
@x_libs@ \
***************
*** 284,289 ****
--- 285,291 ----
*** ./ltconfig.cln Thu Dec 18 03:25:03 1997
--- ./ltconfig Thu Jan 8 13:10:13 1998
***************
*** 836,845 ****
test -z "$ac_dir" && dir=.
if test -f $ac_dir/nm; then
# Check to see if the nm accepts a BSD-compat flag.
! if ($ac_dir/nm -B /dev/null 2>&1; exit 0) | grep /dev/null >/dev/null; then
! NM="$ac_dir/nm -B"
! elif ($ac_dir/nm -p /dev/null 2>&1; exit 0) | grep /dev/null >/dev/null; then
NM="$ac_dir/nm -p"
else
NM="$ac_dir/nm"
fi
--- 836,845 ----
test -z "$ac_dir" && dir=.
if test -f $ac_dir/nm; then
# Check to see if the nm accepts a BSD-compat flag.
! if ($ac_dir/nm -p /dev/null 2>&1; exit 0) | grep /dev/null >/dev/null; then
NM="$ac_dir/nm -p"
+ elif ($ac_dir/nm -B /dev/null 2>&1; exit 0) | grep /dev/null >/dev/null; then
+ NM="$ac_dir/nm -B"
else
NM="$ac_dir/nm"
fi
*** ./ltmain.sh.cln Mon Nov 24 22:37:28 1997
--- ./ltmain.sh Thu Jan 8 13:10:33 1998
***************
*** 835,842 ****
exit 1
fi
! # Add libc to deplibs on all systems.
! deplibs="$deplibs -lc"
if test -n "$dlfiles$dlprefiles"; then
$echo "$progname: warning: \`-dlopen' is ignored while creating libtool libraries" 1>&2
--- 835,843 ----
exit 1
fi
! # DON'T add libc to deplibs on all systems.
! # There's no point - the C compiler adds -lc when linking binaries !
! # deplibs="$deplibs -lc"
if test -n "$dlfiles$dlprefiles"; then
$echo "$progname: warning: \`-dlopen' is ignored while creating libtool libraries" 1>&2
*** ./mkinstalldirs.cln Mon Nov 24 22:37:28 1997
--- ./mkinstalldirs Thu Jan 8 13:10:49 1998
***************
*** 19,26 ****
esac
if test ! -d "$pathcomp"; then
! echo "mkdir $pathcomp" 1>&2
! mkdir "$pathcomp" > /dev/null 2>&1 || lasterr=$?
fi
if test ! -d "$pathcomp"; then
--- 19,26 ----
esac
if test ! -d "$pathcomp"; then
! echo "mkdir -p -m 755 $pathcomp" 1>&2
! mkdir -p -m 755 "$pathcomp" > /dev/null 2>&1 || lasterr=$?
fi