Changeset 1558
- Timestamp:
- 06/16/08 23:17:13 (4 months ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/cherokee/Makefile.am (modified) (3 diffs)
- cherokee/trunk/cherokee/encoder_deflate.c (added)
- cherokee/trunk/cherokee/encoder_deflate.h (added)
- cherokee/trunk/configure.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r1557 r1558 1 1 2008-06-16 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 3 * cherokee/encoder_deflate.c, cherokee/encoder_deflate.h, 4 cherokee/Makefile.am, configure.in: Added new encoder for the 5 deflate Content-Encoding. 2 6 3 7 * cherokee/connection.c (get_encoding): Better encoder header cherokee/trunk/cherokee/Makefile.am
r1529 r1558 570 570 else 571 571 dynamic_encoder_gzip_lib = libplugin_gzip.la 572 endif 573 574 575 # 576 # Encoder Deflate 577 # 578 encoder_deflate = \ 579 encoder_deflate.h \ 580 encoder_deflate.c 581 582 libplugin_deflate_la_LDFLAGS = $(module_ldflags) 583 libplugin_deflate_la_SOURCES = $(encoder_deflate) 584 585 if STATIC_ENCODER_DEFLATE 586 static_encoder_deflate_src = $(encoder_deflate) 587 else 588 dynamic_encoder_deflate_lib = libplugin_deflate.la 572 589 endif 573 590 … … 991 1008 \ 992 1009 $(static_encoder_gzip_src) \ 1010 $(static_encoder_deflate_src) \ 993 1011 \ 994 1012 $(static_validator_pam_src) \ … … 1135 1153 $(dynamic_handler_nn_lib) \ 1136 1154 $(dynamic_encoder_gzip_lib) \ 1155 $(dynamic_encoder_deflate_lib) \ 1137 1156 $(dynamic_logger_ncsa_lib) \ 1138 1157 $(dynamic_logger_combined_lib) \ cherokee/trunk/configure.in
r1541 r1558 1207 1207 [use_static_module="$use_static_module $enableval "],[]) 1208 1208 1209 modules="error_redir server_info file admin dirlist fcgi fastcgi scgi redir common nn cgi phpcgi proxy mirror gzip ncsa combined w3c pam ldap mysql htpasswd plain htdigest round_robin directory extensions request header geoip not and or"1209 modules="error_redir server_info file admin dirlist fcgi fastcgi scgi redir common nn cgi phpcgi proxy mirror gzip deflate ncsa combined w3c pam ldap mysql htpasswd plain htdigest round_robin directory extensions request header geoip not and or" 1210 1210 1211 1211 # Remove modules that will not be compiles … … 1273 1273 AM_CONDITIONAL(STATIC_HANDLER_MIRROR, grep mirror $conf_h >/dev/null) 1274 1274 AM_CONDITIONAL(STATIC_ENCODER_GZIP, grep gzip $conf_h >/dev/null) 1275 AM_CONDITIONAL(STATIC_ENCODER_DEFLATE, grep deflate $conf_h >/dev/null) 1275 1276 AM_CONDITIONAL(STATIC_LOGGER_NCSA, grep ncsa $conf_h >/dev/null) 1276 1277 AM_CONDITIONAL(STATIC_LOGGER_COMBINED, grep combined $conf_h >/dev/null)