Changeset 5310
- Timestamp:
- May 19, 2016 10:38:47 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/aconfigure.ac
r5303 r5310 1 AC_INIT( pjproject,2.x)1 AC_INIT([pjproject],[2.x]) 2 2 3 3 host_orig="$host" … … 39 39 AC_PROG_CC 40 40 AC_PROG_CXX 41 AC_LANG _C41 AC_LANG([C]) 42 42 43 43 AC_PROG_RANLIB … … 181 181 dnl # --disable-floating-point option 182 182 AC_ARG_ENABLE(floating-point, 183 A C_HELP_STRING([--disable-floating-point],183 AS_HELP_STRING([--disable-floating-point], 184 184 [Disable floating point where possible]), 185 185 [if test "$enable_floating_point" = "no"; then … … 413 413 AC_MSG_CHECKING([ioqueue backend]) 414 414 AC_ARG_ENABLE(epoll, 415 A C_HELP_STRING([--enable-epoll],415 AS_HELP_STRING([--enable-epoll], 416 416 [Use /dev/epoll ioqueue on Linux (experimental)]), 417 417 [ … … 429 429 AC_SUBST(ac_shared_libraries) 430 430 AC_ARG_ENABLE(shared, 431 A C_HELP_STRING([--enable-shared],431 AS_HELP_STRING([--enable-shared], 432 432 [Build shared libraries]), 433 433 [if test "$enable_shared" = "yes"; then … … 484 484 AC_SUBST(ac_external_speex,0) 485 485 AC_ARG_WITH(external-speex, 486 A C_HELP_STRING([--with-external-speex],486 AS_HELP_STRING([--with-external-speex], 487 487 [Use external Speex development files, not the one in "third_party" directory. When this option is set, make sure that Speex is accessible to use (hint: use CFLAGS and LDFLAGS env var to set the include/lib paths)]), 488 488 [ … … 506 506 AC_SUBST(ac_external_gsm,0) 507 507 AC_ARG_WITH(external-gsm, 508 A C_HELP_STRING([--with-external-gsm],508 AS_HELP_STRING([--with-external-gsm], 509 509 [Use external GSM codec library, not the one in "third_party" directory. When this option is set, make sure that the GSM include/lib files are accessible to use (hint: use CFLAGS and LDFLAGS env var to set the include/lib paths)]), 510 510 [ … … 542 542 AC_SUBST(ac_external_srtp,0) 543 543 AC_ARG_WITH(external-srtp, 544 A C_HELP_STRING([--with-external-srtp],544 AS_HELP_STRING([--with-external-srtp], 545 545 [Use external SRTP development files, not the one in "third_party" directory. When this option is set, make sure that SRTP is accessible to use (hint: use CFLAGS and LDFLAGS env var to set the include/lib paths)]), 546 546 [ … … 572 572 AC_SUBST(ac_pjmedia_resample,libresample) 573 573 AC_ARG_ENABLE(resample, 574 A C_HELP_STRING([--disable-resample],574 AS_HELP_STRING([--disable-resample], 575 575 [Disable resampling implementations]), 576 576 [if test "$enable_resample" = "no"; then … … 583 583 AC_SUBST(ac_pjmedia_snd) 584 584 AC_ARG_ENABLE(sound, 585 A C_HELP_STRING([--disable-sound],585 AS_HELP_STRING([--disable-sound], 586 586 [Exclude sound (i.e. use null sound)]), 587 587 [if test "$enable_sound" = "no"; then … … 594 594 AC_SUBST(ac_external_pa,0) 595 595 AC_ARG_WITH(external-pa, 596 A C_HELP_STRING([--with-external-pa],596 AS_HELP_STRING([--with-external-pa], 597 597 [Use external PortAudio development files, not the one in "third_party" directory. When this option is set, make sure that PortAudio is accessible to use (hint: use CFLAGS and LDFLAGS env var to set the include/lib paths)]), 598 598 [ … … 672 672 AC_SUBST(ac_pa_use_oss,1) 673 673 AC_ARG_ENABLE(oss, 674 A C_HELP_STRING([--disable-oss],674 AS_HELP_STRING([--disable-oss], 675 675 [Disable OSS audio (default: not disabled)]), 676 676 [ … … 688 688 dnl # --disable-video option 689 689 AC_ARG_ENABLE(video, 690 A C_HELP_STRING([--disable-video],690 AS_HELP_STRING([--disable-video], 691 691 [Disable video feature]), 692 692 [if test "$enable_video" = "no"; then … … 770 770 771 771 AC_ARG_ENABLE(ext_sound, 772 A C_HELP_STRING([--enable-ext-sound],772 AS_HELP_STRING([--enable-ext-sound], 773 773 [PJMEDIA will not provide any sound device backend]), 774 774 [if test "$enable_ext_sound" = "yes"; then … … 781 781 AC_SUBST(ac_no_small_filter) 782 782 AC_ARG_ENABLE(small-filter, 783 A C_HELP_STRING([--disable-small-filter],783 AS_HELP_STRING([--disable-small-filter], 784 784 [Exclude small filter in resampling]), 785 785 [if test "$enable_small_filter" = "no"; then … … 792 792 AC_SUBST(ac_no_large_filter) 793 793 AC_ARG_ENABLE(large-filter, 794 A C_HELP_STRING([--disable-large-filter],794 AS_HELP_STRING([--disable-large-filter], 795 795 [Exclude large filter in resampling]), 796 796 [if test "$enable_large_filter" = "no"; then … … 803 803 AC_SUBST(ac_no_speex_aec) 804 804 AC_ARG_ENABLE(speex-aec, 805 A C_HELP_STRING([--disable-speex-aec],805 AS_HELP_STRING([--disable-speex-aec], 806 806 [Exclude Speex Acoustic Echo Canceller/AEC]), 807 807 [if test "$enable_speex_aec" = "no"; then … … 814 814 AC_SUBST(ac_no_g711_codec) 815 815 AC_ARG_ENABLE(g711-codec, 816 A C_HELP_STRING([--disable-g711-codec],816 AS_HELP_STRING([--disable-g711-codec], 817 817 [Exclude G.711 codecs from the build]), 818 818 [if test "$enable_g711_codec" = "no"; then … … 827 827 AC_SUBST(ac_no_l16_codec) 828 828 AC_ARG_ENABLE(l16-codec, 829 A C_HELP_STRING([--disable-l16-codec],829 AS_HELP_STRING([--disable-l16-codec], 830 830 [Exclude Linear/L16 codec family from the build]), 831 831 [if test "$enable_l16_codec" = "no"; then … … 840 840 AC_SUBST(ac_no_gsm_codec) 841 841 AC_ARG_ENABLE(gsm-codec, 842 A C_HELP_STRING([--disable-gsm-codec],842 AS_HELP_STRING([--disable-gsm-codec], 843 843 [Exclude GSM codec in the build]), 844 844 [if test "$enable_gsm_codec" = "no"; then … … 852 852 AC_SUBST(ac_no_g722_codec) 853 853 AC_ARG_ENABLE(g722-codec, 854 A C_HELP_STRING([--disable-g722-codec],854 AS_HELP_STRING([--disable-g722-codec], 855 855 [Exclude G.722 codec in the build]), 856 856 [if test "$enable_g722_codec" = "no"; then … … 864 864 AC_SUBST(ac_no_g7221_codec) 865 865 AC_ARG_ENABLE(g7221-codec, 866 A C_HELP_STRING([--disable-g7221-codec],866 AS_HELP_STRING([--disable-g7221-codec], 867 867 [Exclude G.7221 codec in the build]), 868 868 [if test "$enable_g7221_codec" = "no"; then … … 876 876 AC_SUBST(ac_no_speex_codec) 877 877 AC_ARG_ENABLE(speex-codec, 878 A C_HELP_STRING([--disable-speex-codec],878 AS_HELP_STRING([--disable-speex-codec], 879 879 [Exclude Speex codecs in the build]), 880 880 [if test "$enable_speex_codec" = "no"; then … … 888 888 AC_SUBST(ac_no_ilbc_codec) 889 889 AC_ARG_ENABLE(ilbc-codec, 890 A C_HELP_STRING([--disable-ilbc-codec],890 AS_HELP_STRING([--disable-ilbc-codec], 891 891 [Exclude iLBC codec in the build]), 892 892 [if test "$enable_ilbc_codec" = "no"; then … … 899 899 dnl # Include libsamplerate 900 900 AC_ARG_ENABLE(libsamplerate, 901 A C_HELP_STRING([--enable-libsamplerate],901 AS_HELP_STRING([--enable-libsamplerate], 902 902 [Link with libsamplerate when available.]), 903 903 [ … … 913 913 AC_SUBST(ac_resample_dll) 914 914 AC_ARG_ENABLE(resample_dll, 915 A C_HELP_STRING([--enable-resample-dll],915 AS_HELP_STRING([--enable-resample-dll], 916 916 [Build libresample as shared library]), 917 917 [if test "$enable_resample_dll" = "yes"; then … … 924 924 dnl # SDL alt prefix 925 925 AC_ARG_WITH(sdl, 926 A C_HELP_STRING([--with-sdl=DIR],926 AS_HELP_STRING([--with-sdl=DIR], 927 927 [Specify alternate libSDL prefix]), 928 928 [], … … 937 937 dnl # SDL 938 938 AC_ARG_ENABLE(sdl, 939 A C_HELP_STRING([--disable-sdl],939 AS_HELP_STRING([--disable-sdl], 940 940 [Disable SDL (default: not disabled)]), 941 941 [ … … 969 969 970 970 AC_ARG_WITH(ffmpeg, 971 A C_HELP_STRING([--with-ffmpeg=DIR],971 AS_HELP_STRING([--with-ffmpeg=DIR], 972 972 [Specify alternate FFMPEG prefix]), 973 973 [], … … 982 982 dnl # FFMPEG stuffs 983 983 AC_ARG_ENABLE(ffmpeg, 984 A C_HELP_STRING([--disable-ffmpeg],984 AS_HELP_STRING([--disable-ffmpeg], 985 985 [Disable ffmpeg (default: not disabled)]), 986 986 [ … … 1107 1107 dnl # Video for Linux 2 1108 1108 AC_ARG_ENABLE(v4l2, 1109 A C_HELP_STRING([--disable-v4l2],1109 AS_HELP_STRING([--disable-v4l2], 1110 1110 [Disable Video4Linux2 (default: not disabled)]), 1111 1111 [ … … 1128 1128 dnl # OpenH264 alt prefix 1129 1129 AC_ARG_WITH(openh264, 1130 A C_HELP_STRING([--with-openh264=DIR],1130 AS_HELP_STRING([--with-openh264=DIR], 1131 1131 [Specify alternate OpenH264 prefix]), 1132 1132 [], … … 1143 1143 AC_SUBST(ac_openh264_ldflags) 1144 1144 AC_ARG_ENABLE(openh264, 1145 A C_HELP_STRING([--disable-openh264],1145 AS_HELP_STRING([--disable-openh264], 1146 1146 [Disable OpenH264 (default: not disabled)]), 1147 1147 [ … … 1193 1193 dnl # libyuv alt prefix 1194 1194 AC_ARG_WITH(libyuv, 1195 A C_HELP_STRING([--with-libyuv=DIR],1195 AS_HELP_STRING([--with-libyuv=DIR], 1196 1196 [Specify alternate libyuv prefix]), 1197 1197 [], … … 1208 1208 AC_SUBST(ac_libyuv_ldflags) 1209 1209 AC_ARG_ENABLE(libyuv, 1210 A C_HELP_STRING([--disable-libyuv],1210 AS_HELP_STRING([--disable-libyuv], 1211 1211 [Exclude libyuv in the build]), 1212 1212 [if test "$enable_libyuv" = "no"; then … … 1270 1270 dnl # WebRtc alt prefix 1271 1271 AC_ARG_WITH(webrtc, 1272 A C_HELP_STRING([--with-webrtc=DIR],1272 AS_HELP_STRING([--with-webrtc=DIR], 1273 1273 [Specify alternate WebRtc prefix]), 1274 1274 [], … … 1285 1285 AC_SUBST(ac_webrtc_ldflags) 1286 1286 AC_ARG_ENABLE(webrtc, 1287 A C_HELP_STRING([--disable-webrtc],1287 AS_HELP_STRING([--disable-webrtc], 1288 1288 [Exclude webrtc in the build]), 1289 1289 [if test "$enable_webrtc" = "no"; then … … 1348 1348 dnl # 1349 1349 AC_ARG_ENABLE(ipp, 1350 A C_HELP_STRING([--enable-ipp],1350 AS_HELP_STRING([--enable-ipp], 1351 1351 [Enable Intel IPP support. Specify the Intel IPP package and samples location using IPPROOT and IPPSAMPLES env var or with --with-ipp and --with-ipp-samples options]), 1352 1352 [], … … 1355 1355 1356 1356 AC_ARG_WITH(ipp, 1357 A C_HELP_STRING([--with-ipp=DIR],1357 AS_HELP_STRING([--with-ipp=DIR], 1358 1358 [Specify the Intel IPP location]), 1359 1359 [], … … 1362 1362 1363 1363 AC_ARG_WITH(ipp-samples, 1364 A C_HELP_STRING([--with-ipp-samples=DIR],1364 AS_HELP_STRING([--with-ipp-samples=DIR], 1365 1365 [Specify the Intel IPP samples location]), 1366 1366 [], … … 1369 1369 1370 1370 AC_ARG_WITH(ipp-arch, 1371 A C_HELP_STRING([--with-ipp-arch=ARCH],1371 AS_HELP_STRING([--with-ipp-arch=ARCH], 1372 1372 [Specify the Intel IPP ARCH suffix, e.g. "64" or "em64t. Default is blank for IA32"]), 1373 1373 [], … … 1587 1587 dnl # SSL alt prefix 1588 1588 AC_ARG_WITH(ssl, 1589 A C_HELP_STRING([--with-ssl=DIR],1589 AS_HELP_STRING([--with-ssl=DIR], 1590 1590 [Specify alternate libssl prefix]), 1591 1591 [], … … 1601 1601 AC_SUBST(ac_no_ssl) 1602 1602 AC_ARG_ENABLE(ssl, 1603 A C_HELP_STRING([--disable-ssl],1603 AS_HELP_STRING([--disable-ssl], 1604 1604 [Exclude SSL support the build (default: autodetect)]) 1605 1605 , … … 1635 1635 dnl # Obsolete option --with-opencore-amrnb 1636 1636 AC_ARG_WITH(opencore-amrnb, 1637 A C_HELP_STRING([--with-opencore-amrnb=DIR],1637 AS_HELP_STRING([--with-opencore-amrnb=DIR], 1638 1638 [This option is obsolete and replaced by --with-opencore-amr=DIR]), 1639 1639 [AC_MSG_ERROR(This option is obsolete and replaced by --with-opencore-amr=DIR)], … … 1643 1643 dnl # opencore-amr alt prefix 1644 1644 AC_ARG_WITH(opencore-amr, 1645 A C_HELP_STRING([--with-opencore-amr=DIR],1645 AS_HELP_STRING([--with-opencore-amr=DIR], 1646 1646 [Specify alternate libopencore-amr prefix]), 1647 1647 [], … … 1656 1656 dnl # vo-amrwbenc alt prefix 1657 1657 AC_ARG_WITH(opencore-amrwbenc, 1658 A C_HELP_STRING([--with-opencore-amrwbenc=DIR],1658 AS_HELP_STRING([--with-opencore-amrwbenc=DIR], 1659 1659 [Specify alternate libvo-amrwbenc prefix]), 1660 1660 [], … … 1672 1672 AC_SUBST(ac_no_opencore_amrwb) 1673 1673 AC_ARG_ENABLE(opencore_amr, 1674 A C_HELP_STRING([--disable-opencore-amr],1674 AS_HELP_STRING([--disable-opencore-amr], 1675 1675 [Exclude OpenCORE AMR support from the build (default: autodetect)]) 1676 1676 , … … 1727 1727 dnl # SILK prefix 1728 1728 AC_ARG_WITH(silk, 1729 A C_HELP_STRING([--with-silk=DIR],1729 AS_HELP_STRING([--with-silk=DIR], 1730 1730 [Specify alternate SILK prefix]), 1731 1731 [], … … 1741 1741 AC_SUBST(ac_no_silk) 1742 1742 AC_ARG_ENABLE(silk, 1743 A C_HELP_STRING([--disable-silk],1743 AS_HELP_STRING([--disable-silk], 1744 1744 [Exclude SILK support from the build (default: autodetect)]) 1745 1745 , … … 1779 1779 dnl # OPUS prefix 1780 1780 AC_ARG_WITH(opus, 1781 A C_HELP_STRING([--with-opus=DIR],1781 AS_HELP_STRING([--with-opus=DIR], 1782 1782 [Specify alternate OPUS prefix]), 1783 1783 [], … … 1788 1788 AC_SUBST(ac_no_opus) 1789 1789 AC_ARG_ENABLE(opus, 1790 A C_HELP_STRING([--disable-opus],1790 AS_HELP_STRING([--disable-opus], 1791 1791 [Exclude OPUS support from the build (default: autodetect)]) 1792 1792 , … … 1903 1903 1904 1904 ac_build_mak_vars=`echo $ac_build_mak_vars | sed 's/\\\\n/\n/g'` 1905 AC_OUTPUT ()1905 AC_OUTPUT 1906 1906 1907 1907
Note: See TracChangeset
for help on using the changeset viewer.