⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configure.in

📁 语音压缩和解压缩源代码。
💻 IN
字号:
dnl Process this file with autoconf to produce a configure script. -*-m4-*-AC_INIT(libspeex/speex.h)SPEEX_MAJOR_VERSION=1SPEEX_MINOR_VERSION=1SPEEX_MICRO_VERSION=5SPEEX_VERSION=1.1.5SPEEX_LT_CURRENT=2SPEEX_LT_REVISION=0SPEEX_LT_AGE=1AC_SUBST(SPEEX_LT_CURRENT)AC_SUBST(SPEEX_LT_REVISION)AC_SUBST(SPEEX_LT_AGE)# For automake.VERSION=$SPEEX_VERSIONPACKAGE=speexAM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)AM_MAINTAINER_MODEAC_CANONICAL_HOSTAM_PROG_LIBTOOLAC_C_BIGENDIANAC_C_CONSTAC_C_INLINEAC_CHECK_HEADERS(sys/soundcard.h sys/audioio.h)AC_ARG_ENABLE(ogg,      [  --enable-ogg=[yes/no]     Turn on or off the use of ogglibraries [default=yes]],      [case "${enableval}" in        yes) useogg=true ;;        no)  useogg=false ;;        *) AC_MSG_ERROR(bad value ${enableval} for --enable-ogg) ;;      esac],[useogg=true])if test x$useogg = xtrue; thenAC_PATH_LIBOGGfiif test "$have_libogg" = yes; then   src=srcelse   src=fiAC_SUBST(src)AC_CHECK_LIB(m, sin)# Check for getopt_long; if not found, use included source.AC_CHECK_FUNCS([getopt_long],,[# FreeBSD has a gnugetopt library.  AC_CHECK_LIB([gnugetopt],[getopt_long],[AC_DEFINE([HAVE_GETOPT_LONG])],[# Use the GNU replacement.AC_LIBOBJ(getopt)AC_LIBOBJ(getopt1)])])AC_CHECK_LIB(winmm, main)AC_DEFINE_UNQUOTED(VERSION, "${VERSION}")AC_ARG_ENABLE(valgrind, [  --enable-valgrind       enable valgrind extra checks], [if test "$enableval" = yes; then AC_DEFINE(ENABLE_VALGRIND) fi])AC_ARG_ENABLE(sse, [  --enable-sse            enable SSE support], [if test "$enableval" = yes; thenAC_DEFINE(_USE_SSE)CFLAGS="$CFLAGS -O3 -msse"fi])AC_ARG_ENABLE(fixed-point, [  --enable-fixed-point    compile as fixed-point], [if test "$enableval" = yes; then AC_DEFINE(FIXED_POINT) fi])AC_ARG_ENABLE(arm-asm, [  --enable-arm-asm        make use of ARM assembly instructions], [if test "$enableval" = yes; then AC_DEFINE(ARM_ASM) fi])AC_ARG_ENABLE(fixed-point-debug, [  --enable-fixed-point-debug  Debug fixed-point implementation], [if test "$enableval" = yes; then AC_DEFINE(FIXED_DEBUG) fi])AC_ARG_ENABLE(epic-48k, [  --enable-epic-48k       enable support for Epic 4.8 kbps mode], [if test "$enableval" = yes; then AC_DEFINE(EPIC_48K) fi])dnl Output the makefiles and version.h.AC_OUTPUT([Makefile libspeex/Makefile src/Makefile doc/Makefile Speex.spec           win32/Makefile win32/libspeex/Makefile win32/speexenc/Makefile           win32/speexdec/Makefile ])if test "x$src" = "x"; then echo "You don't seem to have the development package for libogg (libogg-devel) installed. Only the Speex library (libspeex) will be built (no encoder/decoder executable)"echo "You can download libogg from http://www.vorbis.com/download.psp"fiecho "Type \"make; make install\" to compile and install Speex";

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -