mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 13:00:26 +02:00
* aclocal.m4: Fixes for building with coop threads in a
seperate compilation directory. * configure: Rebuilt.
This commit is contained in:
parent
8e6f33db0e
commit
ec06dd30cf
3 changed files with 14 additions and 8 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Thu May 8 11:48:40 1997 Anthony Green <green@hoser.cygnus.com>
|
||||||
|
|
||||||
|
* aclocal.m4: Fixes for building with coop threads in a
|
||||||
|
seperate compilation directory.
|
||||||
|
* configure: Rebuilt.
|
||||||
|
|
||||||
Fri May 2 16:24:15 1997 Jim Blandy <jimb@floss.cyclic.com>
|
Fri May 2 16:24:15 1997 Jim Blandy <jimb@floss.cyclic.com>
|
||||||
|
|
||||||
Upgrade to libtool 0.9e.
|
Upgrade to libtool 0.9e.
|
||||||
|
|
8
aclocal.m4
vendored
8
aclocal.m4
vendored
|
@ -245,11 +245,11 @@ dnl This may not necessarily be built yet - so just check for the
|
||||||
dnl header files.
|
dnl header files.
|
||||||
dnl
|
dnl
|
||||||
if test "$use_threads" = yes || test "$use_threads" = qt; then
|
if test "$use_threads" = yes || test "$use_threads" = qt; then
|
||||||
# Look for qt in source directory. This is a hack: we look in
|
# Look for qt in source directory.
|
||||||
# "./qt" because this check might be run at the top level.
|
if test -f $srcdir/qt/qt.c; then
|
||||||
if test -f $srcdir/../qt/qt.c || test -f $srcdir/qt/qt.c; then
|
qtsrcdir="`(cd $srcdir; pwd)`/qt"
|
||||||
threads_package=COOP
|
threads_package=COOP
|
||||||
cy_cv_threads_cflags="-I$srcdir/../qt -I../qt"
|
cy_cv_threads_cflags="-I$qtsrcdir -I../qt"
|
||||||
cy_cv_threads_libs="../qt/libqt.a"
|
cy_cv_threads_libs="../qt/libqt.a"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
|
|
8
configure
vendored
8
configure
vendored
|
@ -3168,11 +3168,11 @@ test -n "$use_threads" || use_threads=qt
|
||||||
threads_package=unknown
|
threads_package=unknown
|
||||||
if test "$use_threads" != no; then
|
if test "$use_threads" != no; then
|
||||||
if test "$use_threads" = yes || test "$use_threads" = qt; then
|
if test "$use_threads" = yes || test "$use_threads" = qt; then
|
||||||
# Look for qt in source directory. This is a hack: we look in
|
# Look for qt in source directory.
|
||||||
# "./qt" because this check might be run at the top level.
|
if test -f $srcdir/qt/qt.c; then
|
||||||
if test -f $srcdir/../qt/qt.c || test -f $srcdir/qt/qt.c; then
|
qtsrcdir="`(cd $srcdir; pwd)`/qt"
|
||||||
threads_package=COOP
|
threads_package=COOP
|
||||||
cy_cv_threads_cflags="-I$srcdir/../qt -I../qt"
|
cy_cv_threads_cflags="-I$qtsrcdir -I../qt"
|
||||||
cy_cv_threads_libs="../qt/libqt.a"
|
cy_cv_threads_libs="../qt/libqt.a"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue