gsm: Partially fix the gsm.h/libgsm handling
authorHolger Hans Peter Freyther <zecke@selfish.org>
Tue, 12 Apr 2011 22:26:48 +0000 (00:26 +0200)
committerHolger Hans Peter Freyther <zecke@selfish.org>
Sun, 11 Nov 2012 12:45:59 +0000 (13:45 +0100)
* There might not be a static library (Fedora)
* When cross compiling it will certainly not be in /usr/include
* The code should use AC_CHECK_HEADERS... but that is for another day

Makefile.am
configure.ac
gsm_audio.c

index 26e575c..aa5dd07 100644 (file)
@@ -61,7 +61,7 @@ GSM_INCLUDE +=
 
 GSM_SOURCE += gsm_audio.c gsm.cpp
   
-GSM_LIB += /usr/lib/libgsm.a
+GSM_LIB += -lgsm
 
 #gsm_audio.po: gsm_audio.c gsm_audio.h
 #      $(CC) -D_GNU_SOURCE -fPIC -c gsm_audio.c -o gsm_audio.po
index ae7446c..bbf310c 100644 (file)
@@ -184,12 +184,7 @@ AM_CONDITIONAL(ENABLE_GSM_MS, test "x$with_gsm_ms" == "xyes" )
 AM_CONDITIONAL(ENABLE_GSM, test "x$with_gsm_bs" == "xyes" -o "x$with_gsm_ms" == "xyes")
 
 AS_IF([test "x$with_gsm_bs" == xyes -o "x$with_gsm_ms" == xyes],
-       [AC_MSG_CHECKING(/usr/include/gsm/gsm.h)
-       if test -e /usr/include/gsm/gsm.h; then
-               AC_MSG_RESULT(yes)
-       else
-       AC_MSG_FAILURE([You have enabled GSM, but /usr/include/gsm/gsm.h not found! Please install the lossy GSM codec. Be sure to install it in /usr/ and not in /usr/local/. You will also find a copy on http://www.linux-call-router.de.])
-       fi
+       AC_MSG_RESULT(yes...why not use ac_check_headers...)
        ])
 
 # check for ss5
index 972ab39..8af7439 100644 (file)
@@ -10,7 +10,7 @@
 \*****************************************************************************/ 
 
 extern "C" {
-#include "/usr/include/gsm/gsm.h"
+#include <gsm/gsm.h>
 
 
 /* create gsm instance */