Changeset 946


Ignore:
Timestamp:
Feb 14, 2007 2:21:08 AM (17 years ago)
Author:
bennylp
Message:

Tidy up the configure screen output, and fixed warning about uninitialized variable in PortAudio?'s ALSA (which causes error with gcc -Werror option)

Location:
pjproject/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/aconfigure

    r921 r946  
    11#! /bin/sh 
    22# Guess values for system-dependent variables and create Makefiles. 
    3 # Generated by GNU Autoconf 2.59 for pjproject 0.5.8. 
     3# Generated by GNU Autoconf 2.59 for pjproject 0.5.10. 
    44# 
    55# Copyright (C) 2003 Free Software Foundation, Inc. 
     
    268268PACKAGE_NAME='pjproject' 
    269269PACKAGE_TARNAME='pjproject' 
    270 PACKAGE_VERSION='0.5.8' 
    271 PACKAGE_STRING='pjproject 0.5.8' 
     270PACKAGE_VERSION='0.5.10' 
     271PACKAGE_STRING='pjproject 0.5.10' 
    272272PACKAGE_BUGREPORT='' 
    273273 
     
    786786  # This message is too long to be a string in the A/UX 3.1 sh. 
    787787  cat <<_ACEOF 
    788 \`configure' configures pjproject 0.5.8 to adapt to many kinds of systems. 
     788\`configure' configures pjproject 0.5.10 to adapt to many kinds of systems. 
    789789 
    790790Usage: $0 [OPTION]... [VAR=VALUE]... 
     
    848848if test -n "$ac_init_help"; then 
    849849  case $ac_init_help in 
    850      short | recursive ) echo "Configuration of pjproject 0.5.8:";; 
     850     short | recursive ) echo "Configuration of pjproject 0.5.10:";; 
    851851   esac 
    852852  cat <<\_ACEOF 
     
    867867  --disable-speex-codec   Exclude Speex codecs in the build 
    868868  --disable-ilbc-codec    Exclude iLBC codec in the build 
    869  
    870                   --disable-ssl           Exclude SSL support the build (default: autodetect) 
     869  --disable-ssl           Exclude SSL support the build (default: autodetect) 
    871870 
    872871 
     
    980979if $ac_init_version; then 
    981980  cat <<\_ACEOF 
    982 pjproject configure 0.5.8 
     981pjproject configure 0.5.10 
    983982generated by GNU Autoconf 2.59 
    984983 
     
    994993running configure, to aid debugging if configure makes a mistake. 
    995994 
    996 It was created by pjproject $as_me 0.5.8, which was 
     995It was created by pjproject $as_me 0.5.10, which was 
    997996generated by GNU Autoconf 2.59.  Invocation command line was 
    998997 
     
    94969495cat >&5 <<_CSEOF 
    94979496 
    9498 This file was extended by pjproject $as_me 0.5.8, which was 
     9497This file was extended by pjproject $as_me 0.5.10, which was 
    94999498generated by GNU Autoconf 2.59.  Invocation command line was 
    95009499 
     
    95569555cat >>$CONFIG_STATUS <<_ACEOF 
    95579556ac_cs_version="\\ 
    9558 pjproject config.status 0.5.8 
     9557pjproject config.status 0.5.10 
    95599558configured by $0, generated by GNU Autoconf 2.59, 
    95609559  with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" 
  • pjproject/trunk/aconfigure.ac

    r920 r946  
    1 AC_INIT(pjproject,0.5.8) 
     1AC_INIT(pjproject,0.5.10) 
    22 
    33host_orig="$host" 
     
    401401AC_SUBST(ac_no_ssl) 
    402402AC_ARG_ENABLE(ssl, 
    403               [ 
    404                 AC_HELP_STRING([--disable-ssl], 
    405                                [Exclude SSL support the build (default: autodetect)]) 
    406               ], 
     403              AC_HELP_STRING([--disable-ssl], 
     404                             [Exclude SSL support the build (default: autodetect)]) 
     405              , 
    407406              [ 
    408407                if test "$enable_ssl" = "no"; then 
  • pjproject/trunk/pjmedia/src/pjmedia/portaudio/pa_linux_alsa.c

    r65 r946  
    17571757    unsigned long framesPerHostBuffer; 
    17581758    PaUtilHostBufferSizeMode hostBufferSizeMode = paUtilBoundedHostBufferSize; 
    1759     unsigned long maxHostBufferSize;    /* Upper bound of host buffer size */ 
     1759    unsigned long maxHostBufferSize=0;    /* Upper bound of host buffer size */ 
    17601760 
    17611761    if( (streamFlags & paPlatformSpecificFlags) != 0 ) 
Note: See TracChangeset for help on using the changeset viewer.