-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check libtool during configuration only when libuv is selected
- Loading branch information
1 parent
e45f2cd
commit 86fa333
Showing
3 changed files
with
50 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/bin/sh | ||
#*=====================================================================*/ | ||
#* serrano/prgm/project/bigloo/bigloo/autoconf/libtool */ | ||
#* ------------------------------------------------------------- */ | ||
#* Author : Manuel Serrano */ | ||
#* Creation : Wed Aug 9 13:27:23 1995 */ | ||
#* Last change : Thu Dec 12 08:18:53 2024 (serrano) */ | ||
#* ------------------------------------------------------------- */ | ||
#* Check for libtooling. */ | ||
#*=====================================================================*/ | ||
|
||
#*---------------------------------------------------------------------*/ | ||
#* libtools */ | ||
#*---------------------------------------------------------------------*/ | ||
which libtoolize > /dev/null || which glibtoolize > /dev/null | ||
|
||
if [ "$?" = "1" ]; then | ||
case $HOSTOS in | ||
darwin) | ||
echo "*** ERROR: Cannot find libtoolize nor glibtoolize" | ||
echo "On MacOS X, you can install it with" | ||
echo " brew install libtool" | ||
echo "abort" | ||
exit 1 | ||
;; | ||
|
||
*) | ||
echo "*** ERROR: Cannot find libtoolize" | ||
echo "Generally it is released with the \"libtool\" suite" | ||
echo "abort" | ||
exit 1 | ||
;; | ||
esac | ||
fi | ||
|
||
#*---------------------------------------------------------------------*/ | ||
#* autoconf */ | ||
#*---------------------------------------------------------------------*/ | ||
which autoconf > /dev/null | ||
|
||
if [ "$?" = "1" ]; then | ||
echo "*** ERROR: Cannot find \"autoconf\", abort." | ||
exit 1 | ||
fi | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters