1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 20:30:28 +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

View file

@ -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>
Upgrade to libtool 0.9e.

8
aclocal.m4 vendored
View file

@ -245,11 +245,11 @@ dnl This may not necessarily be built yet - so just check for the
dnl header files.
dnl
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

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