-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://svn.nexusformat.org/code/trunk@804 ff5d1e40-2be0-497f-93bd-dc18237bd3c7
- Loading branch information
1 parent
37bf030
commit 797230a
Showing
4 changed files
with
50 additions
and
6 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
# | ||
# $Id$ | ||
# | ||
|
||
# hack to get round the problem that libtool 1.5 uses the "file" | ||
# command and MinGW does not provide one (see README.MinGW) | ||
|
||
# install this as /usr/local/bin/file and chmod +x it | ||
|
||
while $(echo "$1" | grep --silent "^-") | ||
do | ||
shift | ||
done | ||
|
||
case "$1" in | ||
*.exe) echo "MS Windows PE 32-bit Intel 80386 console executable not relocatable" ;; # libtool doesn"t match the "32-bit" | ||
*.dll) echo "MS Windows PE 32-bit Intel 80386 console DLL" ;; | ||
*.dll.a) echo "ar archive import library" ;; # <-- import library for relocatable library | ||
*.a | *.lib) echo "ar archive" ;; # <-- could be static library or import library for relocatable library; libtool will use objdump to find out | ||
*) echo "unknown" ;; | ||
esac |
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