PennMUSH Community

Changeset 1235 for 1.8.3

Show
Ignore:
Timestamp:
05/19/08 12:55:44 (7 months ago)
Author:
shawnw
Message:

Fix --disable-sql configure typo

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.8.3/branches/devel/configure

    r1219 r1235  
    1221812218  enableval=$enable_sql; enable_sql=$enableval 
    1221912219else 
    12220   enable_Sql=yes 
    12221 fi 
    12222  
    12223  
    12224 if test $enable_sql = yes; then 
     12220  enable_sql=yes 
     12221fi 
     12222 
     12223 
     12224if test "$enable_sql" = "yes"; then 
    1222512225{ echo "$as_me:$LINENO: Looking for supported SQL servers" >&5 
    1222612226echo "$as_me: Looking for supported SQL servers" >&6;} 
  • 1.8.3/branches/devel/configure.in

    r1219 r1235  
    178178 
    179179AC_ARG_ENABLE(sql, AS_HELP_STRING([--disable-sql], 
    180 [Don't use SQL support]), enable_sql=$enableval, enable_Sql=yes) 
    181  
    182 if test $enable_sql = yes; then 
     180[Don't use SQL support]), enable_sql=$enableval, enable_sql=yes) 
     181 
     182if test "$enable_sql" = "yes"; then 
    183183AC_MSG_NOTICE([Looking for supported SQL servers]) 
    184184AX_LIB_MYSQL() 
  • 1.8.3/branches/devel/src/cque.c

    r1216 r1235  
    264264  if (im_count(queue_map) >= (int)MAX_PID) { 
    265265    do_rawlog(LT_ERR, 
    266               T("There are %d queue entries! That's too many. Failing to add another."), 
    267               im_count(queue_map)); 
     266              T("There are %ld queue entries! That's too many. Failing to add another."), 
     267              (long)im_count(queue_map)); 
    268268    return 0; 
    269269  }