Changeset 60
- Timestamp:
- 10/21/05 21:02:15 (3 years ago)
- Files:
-
- cherokee/ChangeLog (modified) (1 diff)
- cherokee/cherokee/iocache.c (modified) (3 diffs)
- cherokee/cherokee/module.c (modified) (1 diff)
- cherokee/debian_testing_chroot.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/ChangeLog
r59 r60 1 1 2005-10-21 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 3 * cherokee/module.c (cherokee_module_get_name): return fixed. 4 5 * cherokee/iocache.c (cherokee_iocache_free_default): __global 6 renamed to global_io. Sun CC did not like it. 2 7 3 8 * Makefile.am (COMPILATION_TESTS): Added debian_testing.sh and cherokee/cherokee/iocache.c
r57 r60 106 106 107 107 108 static cherokee_iocache_t * __global= NULL;108 static cherokee_iocache_t *global_io = NULL; 109 109 110 110 … … 143 143 ret_t ret; 144 144 145 if ( __global== NULL) {146 ret = cherokee_iocache_new (& __global, NULL);145 if (global_io == NULL) { 146 ret = cherokee_iocache_new (&global_io, NULL); 147 147 if (unlikely (ret != ret_ok)) return ret; 148 148 } 149 149 150 *iocache = __global;150 *iocache = global_io; 151 151 return ret_ok; 152 152 } … … 371 371 cherokee_iocache_free_default (cherokee_iocache_t *iocache) 372 372 { 373 if (iocache == __global) {374 __global= NULL;373 if (iocache == global_io) { 374 global_io = NULL; 375 375 } 376 376 cherokee/cherokee/module.c
r31 r60 46 46 47 47 if (module->get_name != NULL) { 48 return module->get_name (module, name); 48 module->get_name (module, name); 49 return; 49 50 } 50 51 cherokee/debian_testing_chroot.sh
r59 r60 10 10 echo "deb http://ftp.us.debian.org/debian/ $DISTRO main" >/etc/apt/sources.list 11 11 apt-get update 12 apt-get -f -y install 13 12 14 apt-get -y install $COMPILER make libtool bison flex libpam0g-dev 13 apt-get -f -y install 14 apt-get -f -y install 15 for i in `seq 3`; do 16 apt-get -f -y install 17 sleep 1 18 done 15 19 16 20 # Unpack the tarball