Changeset 3062 for pjproject/trunk/aconfigure
- Timestamp:
- Jan 14, 2010 2:46:54 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/aconfigure
r3059 r3062 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.64 for pjproject 1. 0.3 # Generated by GNU Autoconf 2.64 for pjproject 1.x. 4 4 # 5 5 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, … … 547 547 PACKAGE_NAME='pjproject' 548 548 PACKAGE_TARNAME='pjproject' 549 PACKAGE_VERSION='1. 0'550 PACKAGE_STRING='pjproject 1. 0'549 PACKAGE_VERSION='1.x' 550 PACKAGE_STRING='pjproject 1.x' 551 551 PACKAGE_BUGREPORT='' 552 552 PACKAGE_URL='' … … 611 611 ac_pa_use_alsa 612 612 ac_pa_cflags 613 ac_ pa_path613 ac_external_pa 614 614 ac_pjmedia_snd 615 ac_external_gsm 616 ac_external_speex 615 617 ac_os_objs 616 618 EGREP … … 684 686 enable_floating_point 685 687 enable_epoll 688 with_external_speex 689 with_external_gsm 686 690 enable_sound 687 with_ pa_path691 with_external_pa 688 692 enable_oss 689 693 enable_ext_sound … … 1256 1260 # This message is too long to be a string in the A/UX 3.1 sh. 1257 1261 cat <<_ACEOF 1258 \`configure' configures pjproject 1. 0to adapt to many kinds of systems.1262 \`configure' configures pjproject 1.x to adapt to many kinds of systems. 1259 1263 1260 1264 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1322 1326 if test -n "$ac_init_help"; then 1323 1327 case $ac_init_help in 1324 short | recursive ) echo "Configuration of pjproject 1. 0:";;1328 short | recursive ) echo "Configuration of pjproject 1.x:";; 1325 1329 esac 1326 1330 cat <<\_ACEOF … … 1361 1365 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] 1362 1366 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) 1363 --with-pa-path=DIR Specify PortAudio alternate location (e.g. /usr). 1364 When this option is set, we will not use our copy of 1365 PortAudio in third_party directory. 1367 --with-external-speex Use external Speex development files, not the one in 1368 "third_party" directory. When this option is set, 1369 make sure that Speex is accessible to use (hint: use 1370 CFLAGS and LDFLAGS env var to set the include/lib 1371 paths) 1372 --with-external-gsm Use external GSM codec library, not the one in 1373 "third_party" directory. When this option is set, 1374 make sure that the GSM include/lib files are 1375 accessible to use (hint: use CFLAGS and LDFLAGS env 1376 var to set the include/lib paths) 1377 --with-external-pa Use external PortAudio development files, not the 1378 one in "third_party" directory. When this option is 1379 set, make sure that PortAudio is accessible to use 1380 (hint: use CFLAGS and LDFLAGS env var to set the 1381 include/lib paths) 1366 1382 1367 1383 Some influential environment variables: … … 1443 1459 if $ac_init_version; then 1444 1460 cat <<\_ACEOF 1445 pjproject configure 1. 01461 pjproject configure 1.x 1446 1462 generated by GNU Autoconf 2.64 1447 1463 … … 1779 1795 running configure, to aid debugging if configure makes a mistake. 1780 1796 1781 It was created by pjproject $as_me 1. 0, which was1797 It was created by pjproject $as_me 1.x, which was 1782 1798 generated by GNU Autoconf 2.64. Invocation command line was 1783 1799 … … 2264 2280 ac_config_headers="$ac_config_headers pjlib/include/pj/compat/os_auto.h pjlib/include/pj/compat/m_auto.h pjmedia/include/pjmedia/config_auto.h pjmedia/include/pjmedia-codec/config_auto.h pjsip/include/pjsip/sip_autoconf.h" 2265 2281 2266 ac_config_files="$ac_config_files build.mak build/os-auto.mak pjlib/build/os-auto.mak pjlib-util/build/os-auto.mak pjmedia/build/os-auto.mak pjsip/build/os-auto.mak third_party/build/ portaudio/os-auto.mak third_party/build/os-auto.mak"2282 ac_config_files="$ac_config_files build.mak build/os-auto.mak pjlib/build/os-auto.mak pjlib-util/build/os-auto.mak pjmedia/build/os-auto.mak pjsip/build/os-auto.mak third_party/build/os-auto.mak third_party/build/portaudio/os-auto.mak" 2267 2283 2268 2284 … … 5172 5188 5173 5189 5190 ac_external_speex=0 5191 5192 5193 # Check whether --with-external-speex was given. 5194 if test "${with_external_speex+set}" = set; then : 5195 withval=$with_external_speex; 5196 if test "x$with_external_speex" != "xno"; then 5197 # Test Speex installation 5198 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if external Speex devkit is installed" >&5 5199 $as_echo_n "checking if external Speex devkit is installed... " >&6; } 5200 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5201 /* end confdefs.h. */ 5202 #include <speex/speex.h> 5203 #include <speex/speex_echo.h> 5204 5205 int 5206 main () 5207 { 5208 speex_echo_state_init(0, 0); speex_encoder_init(0); 5209 ; 5210 return 0; 5211 } 5212 _ACEOF 5213 if ac_fn_c_try_compile "$LINENO"; then : 5214 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes!!" >&5 5215 $as_echo "yes!!" >&6; } 5216 $as_echo "#define PJMEDIA_EXTERNAL_SPEEX_CODEC 1" >>confdefs.h 5217 5218 ac_external_speex="1" 5219 5220 else 5221 as_fn_error "Unable to use external Speex library. If Speex development files are not available in the default locations, use CFLAGS and LDFLAGS env var to set the include/lib paths" "$LINENO" 5 5222 fi 5223 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 5224 fi 5225 5226 5227 fi 5228 5229 5230 ac_external_gsm=0 5231 5232 5233 # Check whether --with-external-gsm was given. 5234 if test "${with_external_gsm+set}" = set; then : 5235 withval=$with_external_gsm; 5236 if test "x$with_external_gsm" != "xno"; then 5237 # Test GSM library installation 5238 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if external GSM devkit is installed" >&5 5239 $as_echo_n "checking if external GSM devkit is installed... " >&6; } 5240 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5241 /* end confdefs.h. */ 5242 #include <gsm/gsm.h> 5243 5244 int 5245 main () 5246 { 5247 gsm_create(); 5248 ; 5249 return 0; 5250 } 5251 5252 _ACEOF 5253 if ac_fn_c_try_compile "$LINENO"; then : 5254 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes!!" >&5 5255 $as_echo "yes!!" >&6; } 5256 $as_echo "#define PJMEDIA_EXTERNAL_GSM_CODEC 1" >>confdefs.h 5257 5258 ac_external_gsm="1" 5259 5260 else 5261 as_fn_error "Unable to use external GSM library. If GSM development files are not available in the default locations, use CFLAGS and LDFLAGS env var to set the include/lib paths" "$LINENO" 5 5262 fi 5263 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 5264 fi 5265 5266 5267 fi 5268 5269 5270 5271 5174 5272 5175 5273 # Check whether --enable-sound was given. … … 5184 5282 5185 5283 5186 5187 5188 # Check whether --with-pa-path was given. 5189 if test "${with_pa_path+set}" = set; then : 5190 withval=$with_pa_path; 5191 if test "x$with_pa_path" != "xno"; then 5192 ac_pa_path=$with_pa_path 5193 # Remove trailing backslash 5194 ac_pa_path=`echo $ac_pa_path | sed 's/\/$//'` 5195 # Test the path 5196 #if test ! -f $ac_pa_path/include/portaudio.h; then 5197 # AC_MSG_ERROR([Wrong --with-pa-path value, $ac_pa_path/include/portaudio.h does not exist]) 5198 #fi 5199 #if test ! -d $ac_pa_path/lib; then 5200 # AC_MSG_ERROR([Wrong --with-pa-path value, $ac_pa_path/lib does not exist]) 5201 #fi 5202 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ** Using PortAudio in $ac_pa_path **" >&5 5203 $as_echo "** Using PortAudio in $ac_pa_path **" >&6; } 5284 ac_external_pa=0 5285 5286 5287 # Check whether --with-external-pa was given. 5288 if test "${with_external_pa+set}" = set; then : 5289 withval=$with_external_pa; 5290 if test "x$with_external_pa" != "xno"; then 5291 # Test PortAudio installation 5292 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if external PortAudio devkit is installed" >&5 5293 $as_echo_n "checking if external PortAudio devkit is installed... " >&6; } 5294 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5295 /* end confdefs.h. */ 5296 #include <portaudio.h> 5297 5298 int 5299 main () 5300 { 5301 Pa_Initialize(); 5302 ; 5303 return 0; 5304 } 5305 _ACEOF 5306 if ac_fn_c_try_compile "$LINENO"; then : 5307 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes!!" >&5 5308 $as_echo "yes!!" >&6; } 5309 ac_external_pa="1" 5310 5311 else 5312 as_fn_error "Unable to use PortAudio. If PortAudio development files are not available in the default locations, use CFLAGS and LDFLAGS env var to set the include/lib paths" "$LINENO" 5 5313 fi 5314 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 5204 5315 fi 5205 5316 5206 5317 5207 5318 fi 5208 5209 5319 5210 5320 … … 6446 6556 # values after options handling. 6447 6557 ac_log=" 6448 This file was extended by pjproject $as_me 1. 0, which was6558 This file was extended by pjproject $as_me 1.x, which was 6449 6559 generated by GNU Autoconf 2.64. Invocation command line was 6450 6560 … … 6506 6616 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 6507 6617 ac_cs_version="\\ 6508 pjproject config.status 1. 06618 pjproject config.status 1.x 6509 6619 configured by $0, generated by GNU Autoconf 2.64, 6510 6620 with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" … … 6630 6740 "pjmedia/build/os-auto.mak") CONFIG_FILES="$CONFIG_FILES pjmedia/build/os-auto.mak" ;; 6631 6741 "pjsip/build/os-auto.mak") CONFIG_FILES="$CONFIG_FILES pjsip/build/os-auto.mak" ;; 6742 "third_party/build/os-auto.mak") CONFIG_FILES="$CONFIG_FILES third_party/build/os-auto.mak" ;; 6632 6743 "third_party/build/portaudio/os-auto.mak") CONFIG_FILES="$CONFIG_FILES third_party/build/portaudio/os-auto.mak" ;; 6633 "third_party/build/os-auto.mak") CONFIG_FILES="$CONFIG_FILES third_party/build/os-auto.mak" ;;6634 6744 6635 6745 *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
Note: See TracChangeset
for help on using the changeset viewer.