diff options
author | Yang Tse <yangsita@gmail.com> | 2010-11-11 12:32:06 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-11-11 12:35:12 +0100 |
commit | fec5f03e22c815c485d6381b2d5a83579a72996c (patch) | |
tree | b32c90f710ce6d679b777784a86839639d1d9e8c /buildconf | |
parent | 2b2ac9068e5af25c8acd3116c20a4e77ff017328 (diff) | |
download | curl-fec5f03e22c815c485d6381b2d5a83579a72996c.tar.gz |
buildconf: MAC OS X requires libtool version 1.5.26 or newer
MAC OS X requires libtool version 1.5.26 or newer, otherwise
configure will mishandle *.dSYM directories when it runs.
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -364,6 +364,12 @@ if test ! -f ./config.guess; then else buildhost=`./config.guess 2>/dev/null|head -n 1` case $buildhost in + *-*-darwin*) + need_lt_major=1 + need_lt_minor=5 + need_lt_patch=26 + need_lt_check="yes" + ;; *-*-hpux*) need_lt_major=1 need_lt_minor=5 |