mirror of https://github.com/encounter/SDL.git
ltmain.sh: make OSX autofoo builds' compatibility version match Xcode builds.
closes bug #4208.
This commit is contained in:
parent
ff8c62f227
commit
c74837fbb9
|
@ -7404,8 +7404,11 @@ func_mode_link ()
|
||||||
# Darwin ld doesn't like 0 for these options...
|
# Darwin ld doesn't like 0 for these options...
|
||||||
func_arith $current + 1
|
func_arith $current + 1
|
||||||
minor_current=$func_arith_result
|
minor_current=$func_arith_result
|
||||||
xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
|
#xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
|
||||||
verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
|
#verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
|
||||||
|
# make the compatibility version match the Xcode project files, i.e. 1.0
|
||||||
|
xlcverstring="${wl}-compatibility_version 1.0 ${wl}-current_version ${wl}$minor_current.$revision"
|
||||||
|
verstring="-compatibility_version 1.0 -current_version $minor_current.$revision"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
freebsd-aout)
|
freebsd-aout)
|
||||||
|
|
Loading…
Reference in New Issue