comparison src/os/unix/ngx_linux_config.h @ 378:820f6378fc00 NGINX_0_7_1

nginx 0.7.1 *) Change: now locations are searched in a tree. *) Change: the "optimize_server_names" directive was canceled due to the "server_name_in_redirect" directive introduction. *) Change: some long deprecated directives are not supported anymore. *) Change: the "none" parameter in the "ssl_session_cache" directive; now this is default parameter. Thanks to Rob Mueller. *) Bugfix: worker processes might not catch reconfiguration and log rotation signals. *) Bugfix: nginx could not be built on latest Fedora 9 Linux. Thanks to Roxis.
author Igor Sysoev <http://sysoev.ru>
date Mon, 26 May 2008 00:00:00 +0400
parents 6aeb6e11b9e7
children 56baf312c1b5
comparison
equal deleted inserted replaced
377:5d98007adb5f 378:820f6378fc00
45 #include <netdb.h> 45 #include <netdb.h>
46 #include <sys/un.h> 46 #include <sys/un.h>
47 47
48 #include <time.h> /* tzset() */ 48 #include <time.h> /* tzset() */
49 #include <malloc.h> /* memalign() */ 49 #include <malloc.h> /* memalign() */
50 #include <limits.h> /* IOV_MAX */
50 #include <sys/ioctl.h> 51 #include <sys/ioctl.h>
51 #include <sys/sysctl.h> 52 #include <sys/sysctl.h>
52 #include <crypt.h> 53 #include <crypt.h>
53 #include <sys/utsname.h> /* uname() */ 54 #include <sys/utsname.h> /* uname() */
54 55