基於Linux開源VOIP系統LinPhone[五]

來源:互聯網
上載者:User

***************************************************************************************************************************
作者:EasyWave                                                                                 時間:2013.03.31

類別:Linux 應用LinPhone                                                              聲明:轉載,請保留連結

注意:如有錯誤,歡迎指正。這些是我學習的日誌文章......

***************************************************************************************************************************

在《 基於Linux開源VOIP系統LinPhone[四] 》中,簡單的介紹了readline、osip、eXosip以及ncurses庫的編譯,如果需要編譯linphone的話,當然在編譯speex的時候,可能還需要一個第三方庫libogg,不過也可以不用它,那麼怎麼做呢,我可以開啟源碼,來修改一下。如所示:

如果想要speex不編譯libogg的話,需要修改幾個檔案,同時還需要用automake重建configure檔案,其步驟如下:

一):修改configure.ac檔案

開啟configure.ac檔案之後,尋找帶有ogg字樣的配置選項,全部刪除,需要修改的地方如下所示(黃色選中的地方):

需要修改的地方之一:下面的語句全部刪除

需要修改的地方之二:下面的語句全部刪除

需要修改的地方之三:刪除src/Makfile

需要修改的地方之四:下面的語句全部刪除

最後儲存,同時需要修改Makefile.am這個檔案。修改之後的configure.ac檔案如下:

dnl Process this file with autoconf to produce a configure script. -*-m4-*-AC_INIT(libspeex/speex.c)AM_CONFIG_HEADER([config.h])SPEEX_MAJOR_VERSION=1SPEEX_MINOR_VERSION=1SPEEX_MICRO_VERSION=16SPEEX_EXTRA_VERSION=#SPEEX_VERSION=#SPEEX_VERSION=$SPEEX_MAJOR_VERSION.$SPEEX_MINOR_VERSION.$SPEEX_MICRO_VERSION$SPEEX_EXTRA_VERSIONSPEEX_VERSION="1.2rc1"SPEEX_LT_CURRENT=6SPEEX_LT_REVISION=0SPEEX_LT_AGE=5AC_SUBST(SPEEX_LT_CURRENT)AC_SUBST(SPEEX_LT_REVISION)AC_SUBST(SPEEX_LT_AGE)# For automake.VERSION=$SPEEX_VERSIONPACKAGE=speexAC_SUBST(SPEEX_VERSION)AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)AM_MAINTAINER_MODEAC_CANONICAL_HOSTAC_LIBTOOL_WIN32_DLLAM_PROG_LIBTOOLAC_C_BIGENDIANAC_C_CONSTAC_C_INLINEAC_C_RESTRICTAC_MSG_CHECKING(for C99 variable-size arrays)AC_TRY_COMPILE( , [int foo;foo = 10;int array[foo];],[has_var_arrays=yes;AC_DEFINE([VAR_ARRAYS], [], [Use C99 variable-size arrays])],has_var_arrays=no)AC_MSG_RESULT($has_var_arrays)AC_CHECK_HEADERS([alloca.h getopt.h])AC_MSG_CHECKING(for alloca)AC_TRY_COMPILE( [#ifdef HAVE_ALLOCA_H# include <alloca.h>#endif#include <stdlib.h>], [int foo=10;int *array = alloca(foo);],[has_alloca=yes;if test x$has_var_arrays = "xno" ; thenAC_DEFINE([USE_ALLOCA], [], [Make use of alloca])fi],has_alloca=no)AC_MSG_RESULT($has_alloca)AC_MSG_CHECKING(for SSE in current arch/CFLAGS)AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <xmmintrin.h>__m128 testfunc(float *a, float *b) {  return _mm_add_ps(_mm_loadu_ps(a), _mm_loadu_ps(b));}]])],[has_sse=yes],[has_sse=no])AC_MSG_RESULT($has_sse)  SAVE_CFLAGS="$CFLAGS"CFLAGS="$CFLAGS -fvisibility=hidden"AC_MSG_CHECKING(for ELF visibility)AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#pragma GCC visibility push(hidden)__attribute__((visibility("default")))int var=10;]])],[has_visibility=yesAC_DEFINE([EXPORT], [__attribute__((visibility("default")))], [Symbol visibility prefix])],[has_visibility=noAC_DEFINE([EXPORT], [], [Symbol visibility prefix])CFLAGS="$SAVE_CFLAGS"])AC_MSG_RESULT($has_visibility)AC_CHECK_HEADERS(sys/soundcard.h sys/audioio.h)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(SPEEX_VERSION, "${SPEEX_VERSION}", [Complete version string])AC_DEFINE_UNQUOTED(SPEEX_MAJOR_VERSION, ${SPEEX_MAJOR_VERSION}, [Version major])AC_DEFINE_UNQUOTED(SPEEX_MINOR_VERSION, ${SPEEX_MINOR_VERSION}, [Version minor])AC_DEFINE_UNQUOTED(SPEEX_MICRO_VERSION, ${SPEEX_MICRO_VERSION}, [Version micro])AC_DEFINE_UNQUOTED(SPEEX_EXTRA_VERSION, "${SPEEX_EXTRA_VERSION}", [Version extra])AC_ARG_ENABLE(valgrind, [  --enable-valgrind       Enable valgrind extra checks],[if test "$enableval" = yes; then  AC_DEFINE([ENABLE_VALGRIND], , [Enable valgrind extra checks])fi])AC_ARG_ENABLE(sse, [  --enable-sse            Enable SSE support], [if test "x$enableval" != xno; thenhas_sse=yesCFLAGS="$CFLAGS -O3 -msse"elsehas_sse=nofi])FFT=smallftAC_ARG_ENABLE(fixed-point, [  --enable-fixed-point    Compile as fixed-point],[if test "$enableval" = yes; then  FFT=kiss  has_sse=no  AC_DEFINE([FIXED_POINT], , [Compile as fixed-point])else  AC_DEFINE([FLOATING_POINT], , [Compile as floating-point])fi],AC_DEFINE([FLOATING_POINT], , [Compile as floating-point]))if test "$has_sse" = yes; then  AC_DEFINE([_USE_SSE], , [Enable SSE support])fiAC_ARG_ENABLE(float-api, [  --disable-float-api     Disable the floating-point API],[if test "$enableval" = no; then  AC_DEFINE([DISABLE_FLOAT_API], , [Disable all parts of the API that are using floats])fi])AC_ARG_ENABLE(vbr, [  --disable-vbr           Disable VBR and VAD from the codec],[if test "$enableval" = no; then  AC_DEFINE([DISABLE_VBR], , [Disable VBR and VAD from the codec])fi])AC_ARG_ENABLE(arm4-asm, [  --enable-arm4-asm       Make use of ARM4 assembly optimizations],[if test "$enableval" = yes; then  AC_DEFINE([ARM4_ASM], , [Make use of ARM4 assembly optimizations])fi])AC_ARG_ENABLE(arm5e-asm, [  --enable-arm5e-asm      Make use of ARM5E assembly optimizations],[if test "$enableval" = yes; then  AC_DEFINE([ARM5E_ASM], , [Make use of ARM5E assembly optimizations])fi])AC_ARG_ENABLE(blackfin-asm, [  --enable-blackfin-asm   Make use of Blackfin assembly optimizations],[if test "$enableval" = yes; then  AC_DEFINE([BFIN_ASM], , [Make use of Blackfin assembly optimizations])  LDFLAGS="-Wl,-elf2flt=-s100000"fi])AC_ARG_ENABLE(fixed-point-debug, [  --enable-fixed-point-debug  Debug fixed-point implementation],[if test "$enableval" = yes; then  AC_DEFINE([FIXED_DEBUG], , [Debug fixed-point implementation])fi])AC_ARG_ENABLE(ti-c55x, [  --enable-ti-c55x        Enable support for TI C55X DSP],[if test "$enableval" = yes; then  has_char16=yes;  AC_DEFINE([TI_C55X], , [Enable support for TI C55X DSP])fi])AC_ARG_WITH([fft], [AS_HELP_STRING([--with-fft=choice],[use an alternate FFT implementation. The available choices arekiss (default fixed point), smallft (default floating point), gpl-fftw3 and proprietary-intel-mkl])],[FFT=$withval])FFT_PKGCONFIG=AS_CASE([$FFT], [kiss], [  AC_DEFINE([USE_KISS_FFT], [], [Use KISS Fast Fourier Transform]) ], [gpl-fftw3], [  AC_DEFINE([USE_GPL_FFTW3], [], [Use FFTW3 for FFT])  PKG_CHECK_MODULES(FFT, fftw3f) ], [proprietary-intel-mkl], [  AC_DEFINE([USE_INTEL_MKL], [], [Use Intel Math Kernel Library for FFT])  AC_MSG_CHECKING(for valid MKL)  AC_LINK_IFELSE([   AC_LANG_PROGRAM([[#include <mkl.h>void func() {  DFTI_DESCRIPTOR_HANDLE h;  MKL_LONG result=DftiCreateDescriptor(&h, DFTI_SINGLE, DFTI_REAL, 0);}]])],   [AC_MSG_RESULT(yes)],   [AC_MSG_FAILURE([Failed to compile MKL test program. Make sure you set CFLAGS to include the include directory and set LDFLAGS to include the library directory and all necesarry libraries.])]  ) ], [AC_MSG_FAILURE([Unknown FFT $FFT specified for --with-fft])])AM_CONDITIONAL(BUILD_KISS_FFT, [test "$FFT" = "kiss"])AM_CONDITIONAL(BUILD_SMALLFT, [test "$FFT" = "smallft"])AC_SUBST(FFT_PKGCONFIG)AC_CHECK_SIZEOF(short)AC_CHECK_SIZEOF(int)AC_CHECK_SIZEOF(long)if test x$has_char16 = "xyes" ; then        case 1 in                $ac_cv_sizeof_short) SIZE16="short";;                $ac_cv_sizeof_int) SIZE16="int";;        esacelse        case 2 in                $ac_cv_sizeof_short) SIZE16="short";;                $ac_cv_sizeof_int) SIZE16="int";;        esacfiif test x$has_char16 = "xyes" ; then        case 2 in                $ac_cv_sizeof_int) SIZE32="int";;                $ac_cv_sizeof_long) SIZE32="long";;                $ac_cv_sizeof_short) SIZE32="short";;        esacelse        case 4 in                $ac_cv_sizeof_int) SIZE32="int";;                $ac_cv_sizeof_long) SIZE32="long";;                $ac_cv_sizeof_short) SIZE32="short";;        esacfiAC_SUBST(SIZE16)AC_SUBST(SIZE32)AC_OUTPUT([Makefile libspeex/Makefile doc/Makefile Speex.spec           include/Makefile include/speex/Makefile speex.pc speexdsp.pc           win32/Makefile win32/libspeex/Makefile win32/speexenc/Makefile           win32/speexdec/Makefile symbian/Makefile            win32/VS2003/Makefile           win32/VS2003/tests/Makefile           win32/VS2003/libspeex/Makefile           win32/VS2003/libspeexdsp/Makefile           win32/VS2003/speexdec/Makefile           win32/VS2003/speexenc/Makefile           win32/VS2005/Makefile           win32/VS2005/libspeex/Makefile           win32/VS2005/speexdec/Makefile           win32/VS2005/speexenc/Makefile           win32/VS2005/libspeexdsp/Makefile           win32/VS2005/tests/Makefile           win32/VS2008/libspeexdsp/Makefile           win32/VS2008/Makefile           win32/VS2008/speexdec/Makefile           win32/VS2008/tests/Makefile           win32/VS2008/libspeex/Makefile           win32/VS2008/speexenc/Makefile           include/speex/speex_config_types.h ti/Makefile    ti/speex_C54_test/Makefile ti/speex_C55_test/Makefile   ti/speex_C64_test/Makefile ])echo "Type \"make; make install\" to compile and install Speex";


 

二):修改Makefile.am檔案

開啟Makefile.am檔案之後,尋找帶有src字樣的配置選項,全部刪除,需要修改的地方如下所示(黃色選中的地方):

將帶有src字樣的代碼全部刪除,如下所示:

整個修改之後的Makefile.am檔案如下:

三):建立一個autogen.sh檔案

建立這個檔案的目的:自動取執行automake、autoconf、aclocal等。如下所示:

#!/bin/sh#AM_VERSION="1.10"if ! type aclocal-$AM_VERSION 1>/dev/null 2>&1; then# automake-1.10 (recommended) is not available on Fedora 8AUTOMAKE=automakeACLOCAL=aclocalelseACLOCAL=aclocal-${AM_VERSION}AUTOMAKE=automake-${AM_VERSION}fiINTLTOOLIZE=/usr/bin/intltoolizeif test -f /opt/local/bin/intltoolize ; thenINTLTOOLIZE=/opt/local/bin/intltoolizeelseINTLTOOLIZE=/usr/bin/intltoolizefilibtoolize="libtoolize"for lt in glibtoolize libtoolize15 libtoolize14 libtoolize13 ; do        if test -x /usr/bin/$lt ; then                libtoolize=$lt ; break        fi        if test -x /usr/local/bin/$lt ; then                libtoolize=$lt ; break        fi        if test -x /opt/local/bin/$lt ; then                libtoolize=$lt ; break        fidoneif test -d /usr/local/share/aclocal ; thenACLOCAL_ARGS="$ACLOCAL_ARGS -I /usr/local/share/aclocal"fiif test -d /share/aclocal ; then        ACLOCAL_ARGS="$ACLOCAL_ARGS -I /share/aclocal"fiecho "Generating build scripts in mediastreamer..."set -x$libtoolize --copy --force$INTLTOOLIZE --copy --force --automake$ACLOCAL  $ACLOCAL_ARGSautoheader$AUTOMAKE --force-missing --add-missing --copyautoconf


建立好autogen.sh檔案之後,就可以運行它了。如下所示:

同時在speex1.2目錄下建立一個build.sh檔案,如下所示:

最後執行./build.sh檔案之後,只要沒有出現錯誤,會在_install檔案夾中產生so動態庫,如下所示:

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.