diff options
author | Yang Tse <yangsita@gmail.com> | 2008-07-29 19:31:34 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-07-29 19:31:34 +0000 |
commit | 5dafa4a270483728c7774691c054905a2ff66868 (patch) | |
tree | f89d88632fff05dc374aaaf9ba15aa88be51daf4 /buildconf | |
parent | e93bcbeee119e3a62d5c5a69b4c0ebee1ed56e4c (diff) | |
download | curl-5dafa4a270483728c7774691c054905a2ff66868.tar.gz |
For testing purposes on SunOS systems; directly feed acinclude.m4 with
reentrant.m4 and remove reentrant.m4 before calling aclocal.
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -312,6 +312,18 @@ if test "x$tmp_host_type" = "xSunOS"; then IFS=$old_IFS echo "buildconf: SED: $SED" + echo "buildconf: Feeding acinclude.m4 with reentrant.m4" + + sed 's/m4_include.*m4.*reentrant.m4.*//' acinclude.m4 > acinclude.2 + mv acinclude.2 acinclude.m4 + cat m4/reentrant.m4 >> acinclude.m4 + rm -f m4/reentrant.m4 + + sed 's/m4_include.*m4.*reentrant.m4.*//' ares/acinclude.m4 > ares/acinclude.2 + mv ares/acinclude.2 ares/acinclude.m4 + cat ares/m4/reentrant.m4 >> ares/acinclude.m4 + rm -f ares/m4/reentrant.m4 + fi echo "buildconf: running libtoolize" |