Configure: fixed building with Sun C if CFLAGS set (ticket #65).

This commit is contained in:
Maxim Dounin 2013-09-04 21:17:03 +04:00
parent 0a33f34edd
commit bcfe2e80bb

View file

@ -43,6 +43,29 @@ if test -n "$CFLAGS"; then
ngx_include_opt="-I"
;;
sunc)
case "$NGX_MACHINE" in
i86pc)
NGX_AUX=" src/os/unix/ngx_sunpro_x86.il"
;;
sun4u | sun4v)
NGX_AUX=" src/os/unix/ngx_sunpro_sparc64.il"
;;
esac
case $CPU in
amd64)
NGX_AUX=" src/os/unix/ngx_sunpro_amd64.il"
;;
esac
;;
esac
else