mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 14:00:21 +02:00
Regenerated
This commit is contained in:
parent
5ef4ef4e18
commit
b8f08e26ad
2 changed files with 26 additions and 1 deletions
10
aclocal.m4
vendored
10
aclocal.m4
vendored
|
@ -584,6 +584,7 @@ dnl configure script, but here they are.
|
|||
AC_DEFUN([QTHREADS_CONFIGURE],[
|
||||
AC_REQUIRE([AC_PROG_LN_S])
|
||||
|
||||
AC_MSG_CHECKING(QuickThreads configuration)
|
||||
# How can we refer to the qt source directory from within the qt build
|
||||
# directory? For headers, we can rely on the fact that the qt src
|
||||
# directory appears in the #include path.
|
||||
|
@ -594,36 +595,42 @@ AC_DEFUN([QTHREADS_CONFIGURE],[
|
|||
THREAD_PACKAGE=QT
|
||||
case "$host" in
|
||||
i[3456]86-*-*)
|
||||
port_name=i386
|
||||
qtmd_h=md/i386.h
|
||||
qtmds_s=md/i386.s
|
||||
qtmdc_c=md/null.c
|
||||
qtdmdb_s=
|
||||
;;
|
||||
mips-sgi-irix[56]*)
|
||||
port_name=irix
|
||||
qtmd_h=md/mips.h
|
||||
qtmds_s=md/mips-irix5.s
|
||||
qtmdc_c=md/null.c
|
||||
qtdmdb_s=md/mips_b.s
|
||||
;;
|
||||
mips-*-*)
|
||||
port_name=mips
|
||||
qtmd_h=md/mips.h
|
||||
qtmds_s=md/mips.s
|
||||
qtmdc_c=md/null.c
|
||||
qtdmdb_s=md/mips_b.s
|
||||
;;
|
||||
sparc-*-sunos*)
|
||||
port_name=sparc-sunos
|
||||
qtmd_h=md/sparc.h
|
||||
qtmds_s=md/_sparc.s
|
||||
qtmdc_c=md/null.c
|
||||
qtdmdb_s=md/_sparc_b.s
|
||||
;;
|
||||
sparc-*-*)
|
||||
port_name=sparc
|
||||
qtmd_h=md/sparc.h
|
||||
qtmds_s=md/sparc.s
|
||||
qtmdc_c=md/null.c
|
||||
qtdmdb_s=md/sparc_b.s
|
||||
;;
|
||||
alpha-*-*)
|
||||
port_name=alpha
|
||||
qtmd_h=md/axp.h
|
||||
qtmds_s=md/axp.s
|
||||
qtmdc_c=md/null.c
|
||||
|
@ -638,10 +645,13 @@ AC_DEFUN([QTHREADS_CONFIGURE],[
|
|||
|
||||
# Did configuration succeed?
|
||||
if test -n "$THREAD_PACKAGE"; then
|
||||
AC_MSG_RESULT($port_name)
|
||||
QTHREAD_LTLIBS=libqthreads.la
|
||||
THREAD_CPPFLAGS="-I$qtsrcdir -I../qt"
|
||||
THREAD_LIBS_LOCAL="../qt/libqthreads.la"
|
||||
THREAD_LIBS_INSTALLED="-lqthreads"
|
||||
else
|
||||
AC_MSG_RESULT(none; disabled)
|
||||
fi
|
||||
|
||||
AC_SUBST(QTHREAD_LTLIBS)
|
||||
|
|
17
configure
vendored
17
configure
vendored
|
@ -4272,6 +4272,8 @@ case "${with_threads}" in
|
|||
|
||||
|
||||
|
||||
echo $ac_n "checking QuickThreads configuration""... $ac_c" 1>&6
|
||||
echo "configure:4277: checking QuickThreads configuration" >&5
|
||||
# How can we refer to the qt source directory from within the qt build
|
||||
# directory? For headers, we can rely on the fact that the qt src
|
||||
# directory appears in the #include path.
|
||||
|
@ -4281,36 +4283,42 @@ case "${with_threads}" in
|
|||
THREAD_PACKAGE=QT
|
||||
case "$host" in
|
||||
i[3456]86-*-*)
|
||||
port_name=i386
|
||||
qtmd_h=md/i386.h
|
||||
qtmds_s=md/i386.s
|
||||
qtmdc_c=md/null.c
|
||||
qtdmdb_s=
|
||||
;;
|
||||
mips-sgi-irix[56]*)
|
||||
port_name=irix
|
||||
qtmd_h=md/mips.h
|
||||
qtmds_s=md/mips-irix5.s
|
||||
qtmdc_c=md/null.c
|
||||
qtdmdb_s=md/mips_b.s
|
||||
;;
|
||||
mips-*-*)
|
||||
port_name=mips
|
||||
qtmd_h=md/mips.h
|
||||
qtmds_s=md/mips.s
|
||||
qtmdc_c=md/null.c
|
||||
qtdmdb_s=md/mips_b.s
|
||||
;;
|
||||
sparc-*-sunos*)
|
||||
port_name=sparc-sunos
|
||||
qtmd_h=md/sparc.h
|
||||
qtmds_s=md/_sparc.s
|
||||
qtmdc_c=md/null.c
|
||||
qtdmdb_s=md/_sparc_b.s
|
||||
;;
|
||||
sparc-*-*)
|
||||
port_name=sparc
|
||||
qtmd_h=md/sparc.h
|
||||
qtmds_s=md/sparc.s
|
||||
qtmdc_c=md/null.c
|
||||
qtdmdb_s=md/sparc_b.s
|
||||
;;
|
||||
alpha-*-*)
|
||||
port_name=alpha
|
||||
qtmd_h=md/axp.h
|
||||
qtmds_s=md/axp.s
|
||||
qtmdc_c=md/null.c
|
||||
|
@ -4325,10 +4333,13 @@ case "${with_threads}" in
|
|||
|
||||
# Did configuration succeed?
|
||||
if test -n "$THREAD_PACKAGE"; then
|
||||
echo "$ac_t""$port_name" 1>&6
|
||||
QTHREAD_LTLIBS=libqthreads.la
|
||||
THREAD_CPPFLAGS="-I$qtsrcdir -I../qt"
|
||||
THREAD_LIBS_LOCAL="../qt/libqthreads.la"
|
||||
THREAD_LIBS_INSTALLED="-lqthreads"
|
||||
else
|
||||
echo "$ac_t""none; disabled" 1>&6
|
||||
fi
|
||||
|
||||
|
||||
|
@ -4382,6 +4393,9 @@ fi
|
|||
## If we're using GCC, ask for aggressive warnings.
|
||||
case "$GCC" in
|
||||
yes )
|
||||
## We had -Wstrict-prototypes in here for a bit, but Guile does too
|
||||
## much stuff with generic function pointers for that to really be
|
||||
## less than exasperating.
|
||||
CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wmissing-prototypes" ;;
|
||||
esac
|
||||
|
||||
|
@ -4390,7 +4404,7 @@ do
|
|||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4394: checking for $ac_word" >&5
|
||||
echo "configure:4408: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_AWK'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
|
@ -4820,6 +4834,7 @@ fi; done
|
|||
EOF
|
||||
cat >> $CONFIG_STATUS <<EOF
|
||||
|
||||
|
||||
EOF
|
||||
cat >> $CONFIG_STATUS <<\EOF
|
||||
test -z "$CONFIG_HEADERS" || echo timestamp > libguile/stamp-h
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue