blob: f1ac0f91b8e3975c70c348589d41aef9e0797e49 [file] [log] [blame]
Igor Sysoevc0f8d912003-11-26 15:42:18 +00001
2CORE_INCS="$UNIX_INCS"
3CORE_DEPS="$UNIX_DEPS $SOLARIS_DEPS"
Igor Sysoev25b36fe2004-02-03 16:43:54 +00004CORE_SRCS="$UNIX_SRCS $SOLARIS_SRCS "
5EVENT_MODULES="$EVENT_MODULES"
Igor Sysoevc0f8d912003-11-26 15:42:18 +00006
Igor Sysoeva4b16df2004-02-02 21:19:52 +00007CORE_LIBS="$CORE_LIBS -lsocket -lnsl"
Igor Sysoevc0f8d912003-11-26 15:42:18 +00008
Igor Sysoev833823c2004-03-05 16:37:51 +00009# the Solaris's make support
10MAKE_SL=YES
11
Igor Sysoev7af6b162004-02-09 07:46:43 +000012
Igor Sysoevc0f8d912003-11-26 15:42:18 +000013CC_TEST_FLAGS="-D_FILE_OFFSET_BITS=64"
14
Igor Sysoev24b56c92004-03-10 17:55:19 +000015case $PLATFORM in
16
17 SunOS:5.[89]:* | SunOS:5.10:*)
Igor Sysoev6bb889f2004-03-11 15:42:41 +000018 PIPE="-pipe"
Igor Sysoev24b56c92004-03-10 17:55:19 +000019 ;;
20
21 *)
Igor Sysoev6bb889f2004-03-11 15:42:41 +000022 # Solaris 7's /usr/ccs/bin/as does not support "-pipe"
Igor Sysoev24b56c92004-03-10 17:55:19 +000023 ;;
24
25esac
26
27
Igor Sysoev6bb889f2004-03-11 15:42:41 +000028if [ $ZLIB_ASM != NO ]; then
29 echo "$0: error: the --with-zlib-asm=CPU option is not supported"
30 echo "on that platform"
31 echo
32
33 exit 1
34fi
35
Igor Sysoevc0f8d912003-11-26 15:42:18 +000036
Igor Sysoeva4b16df2004-02-02 21:19:52 +000037ngx_inc="sys/devpoll.h"; . auto/inc
Igor Sysoev0e499db2003-11-27 07:45:22 +000038
Igor Sysoeva4b16df2004-02-02 21:19:52 +000039if [ $ngx_found = yes ]; then
Igor Sysoev7af6b162004-02-09 07:46:43 +000040 have=HAVE_DEVPOLL . auto/have
Igor Sysoev0e499db2003-11-27 07:45:22 +000041 CORE_SRCS="$CORE_SRCS $DEVPOLL_SRCS"
Igor Sysoeva4b16df2004-02-02 21:19:52 +000042 EVENT_MODULES="$EVENT_MODULES $DEVPOLL_MODULE"
43 EVENT_FOUND=YES
Igor Sysoev0e499db2003-11-27 07:45:22 +000044fi
45
46
Igor Sysoeva4b16df2004-02-02 21:19:52 +000047ngx_func="sendfilev()";
48ngx_func_inc="#include <sys/sendfile.h>"
49ngx_func_libs="-lsendfile"
50ngx_func_test="int fd = 1; sendfilevec_t vec[1];
Igor Sysoev7af6b162004-02-09 07:46:43 +000051 size_t sent; ssize_t n;
Igor Sysoev0e499db2003-11-27 07:45:22 +000052 n = sendfilev(fd, vec, 1, &sent)"
Igor Sysoeva4b16df2004-02-02 21:19:52 +000053. auto/func
Igor Sysoev0e499db2003-11-27 07:45:22 +000054
Igor Sysoeva4b16df2004-02-02 21:19:52 +000055
56if [ $ngx_found = yes ]; then
Igor Sysoev7af6b162004-02-09 07:46:43 +000057 have=HAVE_SENDFILE . auto/have
Igor Sysoev0e499db2003-11-27 07:45:22 +000058 CORE_SRCS="$CORE_SRCS $SOLARIS_SENDFILEV_SRCS"
59 CORE_LIBS="$CORE_LIBS -lsendfile"
60fi