mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
autogen.sh: call ./guile-aclocal.sh instead of aclocal.
guile-readline/autogen.sh: call ../guile-aclocal.sh instead of aclocal. guile-aclocal.sh: new file, works around aclocal problems.
This commit is contained in:
parent
d9c443919d
commit
65545721f3
5 changed files with 33 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2000-06-01 Michael Livshin <mlivshin@bigfoot.com>
|
||||
|
||||
* autogen.sh: call ./guile-aclocal.sh instead of aclocal.
|
||||
|
||||
* guile-aclocal.sh: new file, works around aclocal problems.
|
||||
|
||||
2000-05-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
||||
|
||||
* acconfig.h (USE_FSU_PTHREADS, USE_MIT_PTHREADS,
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
exit 1
|
||||
}
|
||||
|
||||
aclocal -I .
|
||||
./guile-aclocal.sh
|
||||
|
||||
libtoolize --copy --automake --ltdl
|
||||
autoheader
|
||||
autoconf
|
||||
|
|
19
guile-aclocal.sh
Executable file
19
guile-aclocal.sh
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/bin/sh
|
||||
|
||||
temp=/tmp/guile-aclocal.$$
|
||||
trap "rm -rf $temp" 0 1 2 15
|
||||
|
||||
mkdir $temp
|
||||
[ -d $temp ] || {
|
||||
echo "guile-aclocal.sh: cannot create temp directory"
|
||||
exit 1
|
||||
}
|
||||
|
||||
# copy all installed aclocal files into $temp
|
||||
cp `aclocal --print-ac-dir`/*.m4 $temp
|
||||
|
||||
# remove the .m4 files installed by Guile from $temp, so they don't
|
||||
# cause conflicts
|
||||
rm -f ${temp}/guile.m4 ${temp}/qthreads.m4
|
||||
|
||||
aclocal --acdir=$temp -I .
|
|
@ -1,3 +1,7 @@
|
|||
2000-06-01 Michael Livshin <mlivshin@bigfoot.com>
|
||||
|
||||
* autogen.sh: call ../guile-aclocal.sh instead of aclocal
|
||||
|
||||
2000-05-01 Gary Houston <ghouston@arglist.com>
|
||||
|
||||
* readline.c: include libguile.h, not libguile/libguile.h.
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
exit 1
|
||||
}
|
||||
|
||||
aclocal -I .
|
||||
../guile-aclocal.sh
|
||||
|
||||
libtoolize --copy --automake
|
||||
autoconf
|
||||
automake --add-missing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue