Changeset 60

Show
Ignore:
Timestamp:
10/21/05 21:02:15 (3 years ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/ChangeLog

    r59 r60  
    112005-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. 
    27 
    38        * Makefile.am (COMPILATION_TESTS): Added debian_testing.sh and 
  • cherokee/cherokee/iocache.c

    r57 r60  
    106106 
    107107 
    108 static cherokee_iocache_t *__global = NULL; 
     108static cherokee_iocache_t *global_io = NULL; 
    109109 
    110110 
     
    143143        ret_t ret; 
    144144         
    145         if (__global == NULL) { 
    146                 ret = cherokee_iocache_new (&__global, NULL); 
     145        if (global_io == NULL) { 
     146                ret = cherokee_iocache_new (&global_io, NULL); 
    147147                if (unlikely (ret != ret_ok)) return ret; 
    148148        } 
    149149         
    150         *iocache = __global
     150        *iocache = global_io
    151151        return ret_ok; 
    152152} 
     
    371371cherokee_iocache_free_default (cherokee_iocache_t *iocache) 
    372372{ 
    373         if (iocache == __global) { 
    374                 __global = NULL; 
     373        if (iocache == global_io) { 
     374                global_io = NULL; 
    375375        } 
    376376 
  • cherokee/cherokee/module.c

    r31 r60  
    4646 
    4747        if (module->get_name != NULL) { 
    48                 return module->get_name (module, name); 
     48                module->get_name (module, name); 
     49                return; 
    4950        } 
    5051 
  • cherokee/debian_testing_chroot.sh

    r59 r60  
    1010echo "deb http://ftp.us.debian.org/debian/ $DISTRO main" >/etc/apt/sources.list 
    1111apt-get update 
     12apt-get -f -y install 
     13 
    1214apt-get -y install $COMPILER make libtool bison flex libpam0g-dev 
    13 apt-get -f -y install 
    14 apt-get -f -y install 
     15for i in `seq 3`; do 
     16  apt-get -f -y install 
     17  sleep 1 
     18done 
    1519 
    1620# Unpack the tarball