1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-17 17:20:29 +02:00

* aclocal.m4: Fixes for building with coop threads in a

seperate compilation directory.
	* configure: Rebuilt.
This commit is contained in:
Anthony Green 1997-05-08 19:14:10 +00:00
parent 8e6f33db0e
commit ec06dd30cf
3 changed files with 14 additions and 8 deletions

8
configure vendored
View file

@ -3168,11 +3168,11 @@ test -n "$use_threads" || use_threads=qt
threads_package=unknown
if test "$use_threads" != no; then
if test "$use_threads" = yes || test "$use_threads" = qt; then
# Look for qt in source directory. This is a hack: we look in
# "./qt" because this check might be run at the top level.
if test -f $srcdir/../qt/qt.c || test -f $srcdir/qt/qt.c; then
# Look for qt in source directory.
if test -f $srcdir/qt/qt.c; then
qtsrcdir="`(cd $srcdir; pwd)`/qt"
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"
fi
else