Changeset 1637

Show
Ignore:
Timestamp:
01/30/05 19:17:48 (4 years ago)
Author:
morris
Message:

Sync with wired

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • wire/trunk/configure

    r1583 r1637  
    850850  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes] 
    851851  --enable-warnings       enable warnings 
    852  
    853852  --disable-largefile     omit support for large files 
    854853 
     
    23802379 
    23812380# Check for warnings 
    2382 echo "$as_me:$LINENO: checking whether to enable warnings" >&5 
    2383 echo $ECHO_N "checking whether to enable warnings... $ECHO_C" >&6 
    23842381# Check whether --enable-warnings or --disable-warnings was given. 
    23852382if test "${enable_warnings+set}" = set; then 
     
    23892386 
    23902387if test -n "$enable_warnings"; then 
    2391         echo "$as_me:$LINENO: result: yes" >&5 
    2392 echo "${ECHO_T}yes" >&6 
    23932388        CFLAGS="$CFLAGS -W -Wall -Wno-unknown-pragmas -Wno-unused-parameter -Wsign-compare -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls" 
    2394 else 
    2395         echo "$as_me:$LINENO: result: no" >&5 
    2396 echo "${ECHO_T}no" >&6 
    23972389fi 
    23982390 
  • wire/trunk/configure.in

    r1583 r1637  
    4545 
    4646# Check for warnings 
    47 AC_MSG_CHECKING([whether to enable warnings]) 
    48 AC_ARG_ENABLE([warnings], 
    49         [  --enable-warnings       enable warnings] 
    50 
     47AC_ARG_ENABLE([warnings], AC_HELP_STRING([--enable-warnings], [enable warnings])) 
    5148 
    5249if test -n "$enable_warnings"; then 
    53         AC_MSG_RESULT([yes]) 
    5450        CFLAGS="$CFLAGS -W -Wall -Wno-unknown-pragmas -Wno-unused-parameter -Wsign-compare -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls" 
    55 else 
    56         AC_MSG_RESULT([no]) 
    5751fi 
    5852