jim         97/08/24 09:43:27

  Modified:    src/modules/standard mod_auth_db.module mod_auth_dbm.c
  Log:
  Not all shells support 'if !' format so we do the normal work
  around...
  
  Revision  Changes    Path
  1.4       +3 -1      apachen/src/modules/standard/mod_auth_db.module
  
  Index: mod_auth_db.module
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/modules/standard/mod_auth_db.module,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- mod_auth_db.module        1997/08/21 18:12:23     1.3
  +++ mod_auth_db.module        1997/08/24 16:43:25     1.4
  @@ -1,6 +1,8 @@
   Name: db_auth_module
   ConfigStart
  -    if ! ./helpers/TestCompile func dbopen; then
  +    if ./helpers/TestCompile func dbopen; then
  +        :
  +    else
        case "$PLAT" in
            *-linux*)
                # many systems have -ldb installed
  
  
  
  1.27      +3 -1      apachen/src/modules/standard/mod_auth_dbm.c
  
  Index: mod_auth_dbm.c
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/modules/standard/mod_auth_dbm.c,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- mod_auth_dbm.c    1997/08/23 04:00:35     1.26
  +++ mod_auth_dbm.c    1997/08/24 16:43:26     1.27
  @@ -79,7 +79,9 @@
    * MODULE-DEFINITION-START
    * Name: dbm_auth_module
    * ConfigStart
  -    if ! ./helpers/TestCompile func dbm_open; then
  +    if ./helpers/TestCompile func dbm_open; then
  +        :
  +    else
        case "$PLAT" in
            *-linux*)
                # many systems don't have -ldbm
  
  
  

Reply via email to