mirror of
https://github.com/nginx/nginx.git
synced 2024-11-27 03:10:17 -06:00
73 lines
1.3 KiB
Plaintext
73 lines
1.3 KiB
Plaintext
|
|
CORE_INCS="$UNIX_INCS"
|
|
CORE_DEPS="$UNIX_DEPS $SOLARIS_DEPS"
|
|
CORE_SRCS="$UNIX_SRCS $SOLARIS_SRCS "
|
|
EVENT_MODULES="$EVENT_MODULES"
|
|
|
|
CORE_LIBS="$CORE_LIBS -lsocket -lnsl -lrt"
|
|
|
|
# the Solaris's make support
|
|
MAKE_SL=YES
|
|
|
|
|
|
CC_TEST_FLAGS="-D_FILE_OFFSET_BITS=64"
|
|
|
|
case $PLATFORM in
|
|
|
|
SunOS:5.[89]:* | SunOS:5.10:*)
|
|
PIPE="-pipe"
|
|
;;
|
|
|
|
*)
|
|
# Solaris 7's /usr/ccs/bin/as does not support "-pipe"
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
case $PLATFORM in
|
|
|
|
*:sun4u)
|
|
CFLAGS="$CFLAGS -mcpu=v9"
|
|
;;
|
|
|
|
*)
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
if [ $ZLIB_ASM != NO ]; then
|
|
echo "$0: error: the --with-zlib-asm=CPU option is not supported"
|
|
echo "on that platform"
|
|
echo
|
|
|
|
exit 1
|
|
fi
|
|
|
|
|
|
ngx_inc="sys/devpoll.h"; . auto/inc
|
|
|
|
if [ $ngx_found = yes ]; then
|
|
have=HAVE_DEVPOLL . auto/have
|
|
CORE_SRCS="$CORE_SRCS $DEVPOLL_SRCS"
|
|
EVENT_MODULES="$EVENT_MODULES $DEVPOLL_MODULE"
|
|
EVENT_FOUND=YES
|
|
fi
|
|
|
|
|
|
ngx_func="sendfilev()";
|
|
ngx_func_inc="#include <sys/sendfile.h>"
|
|
ngx_func_libs="-lsendfile"
|
|
ngx_func_test="int fd = 1; sendfilevec_t vec[1];
|
|
size_t sent; ssize_t n;
|
|
n = sendfilev(fd, vec, 1, &sent)"
|
|
. auto/func
|
|
|
|
|
|
if [ $ngx_found = yes ]; then
|
|
have=HAVE_SENDFILE . auto/have
|
|
CORE_SRCS="$CORE_SRCS $SOLARIS_SENDFILEV_SRCS"
|
|
CORE_LIBS="$CORE_LIBS -lsendfile"
|
|
fi
|