- added urls to the required libs, with a lot of added libs
[platform/upstream/gstreamer.git] / acinclude.m4
1 dnl Configure Paths for Alsa
2 dnl Some modifications by Richard Boulton <richard-alsa@tartarus.org>
3 dnl Christopher Lansdown <lansdoct@cs.alfred.edu>
4 dnl Jaroslav Kysela <perex@suse.cz>
5 dnl Last modification: 07/01/2001
6 dnl AM_PATH_ALSA([MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
7 dnl Test for libasound, and define ALSA_CFLAGS and ALSA_LIBS as appropriate.
8 dnl enables arguments --with-alsa-prefix=
9 dnl                   --with-alsa-enc-prefix=
10 dnl                   --disable-alsatest  (this has no effect, as yet)
11 dnl
12 dnl For backwards compatibility, if ACTION_IF_NOT_FOUND is not specified,
13 dnl and the alsa libraries are not found, a fatal AC_MSG_ERROR() will result.
14 dnl
15 AC_DEFUN(AM_PATH_ALSA,
16 [dnl Save the original CFLAGS, LDFLAGS, and LIBS
17 alsa_save_CFLAGS="$CFLAGS"
18 alsa_save_LDFLAGS="$LDFLAGS"
19 alsa_save_LIBS="$LIBS"
20 alsa_found=yes
21
22 dnl
23 dnl Get the cflags and libraries for alsa
24 dnl
25 AC_ARG_WITH(alsa-prefix,
26 [  --with-alsa-prefix=PFX  Prefix where Alsa library is installed(optional)],
27 [alsa_prefix="$withval"], [alsa_prefix=""])
28
29 AC_ARG_WITH(alsa-inc-prefix,
30 [  --with-alsa-inc-prefix=PFX  Prefix where include libraries are (optional)],
31 [alsa_inc_prefix="$withval"], [alsa_inc_prefix=""])
32
33 dnl FIXME: this is not yet implemented
34 AC_ARG_ENABLE(alsatest,
35 [  --disable-alsatest      Do not try to compile and run a test Alsa program],
36 [enable_alsatest=no],
37 [enable_alsatest=yes])
38
39 dnl Add any special include directories
40 AC_MSG_CHECKING(for ALSA CFLAGS)
41 if test "$alsa_inc_prefix" != "" ; then
42         ALSA_CFLAGS="$ALSA_CFLAGS -I$alsa_inc_prefix"
43         CFLAGS="$CFLAGS -I$alsa_inc_prefix"
44 fi
45 AC_MSG_RESULT($ALSA_CFLAGS)
46
47 dnl add any special lib dirs
48 AC_MSG_CHECKING(for ALSA LDFLAGS)
49 if test "$alsa_prefix" != "" ; then
50         ALSA_LIBS="$ALSA_LIBS -L$alsa_prefix"
51         LDFLAGS="$LDFLAGS $ALSA_LIBS"
52 fi
53
54 dnl add the alsa library
55 ALSA_LIBS="$ALSA_LIBS -lasound -lm -ldl"
56 LIBS=`echo $LIBS | sed 's/-lm//'`
57 LIBS=`echo $LIBS | sed 's/-ldl//'`
58 LIBS=`echo $LIBS | sed 's/  //'`
59 LIBS="$ALSA_LIBS $LIBS"
60 AC_MSG_RESULT($ALSA_LIBS)
61
62 dnl Check for a working version of libasound that is of the right version.
63 min_alsa_version=ifelse([$1], ,0.1.1,$1)
64 AC_MSG_CHECKING(for libasound headers version >= $min_alsa_version)
65 no_alsa=""
66     alsa_min_major_version=`echo $min_alsa_version | \
67            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
68     alsa_min_minor_version=`echo $min_alsa_version | \
69            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
70     alsa_min_micro_version=`echo $min_alsa_version | \
71            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
72
73 AC_LANG_SAVE
74 AC_LANG_C
75 AC_TRY_COMPILE([
76 #include <sys/asoundlib.h>
77 ], [
78 void main(void)
79 {
80 /* ensure backward compatibility */
81 #if !defined(SND_LIB_MAJOR) && defined(SOUNDLIB_VERSION_MAJOR)
82 #define SND_LIB_MAJOR SOUNDLIB_VERSION_MAJOR
83 #endif
84 #if !defined(SND_LIB_MINOR) && defined(SOUNDLIB_VERSION_MINOR)
85 #define SND_LIB_MINOR SOUNDLIB_VERSION_MINOR
86 #endif
87 #if !defined(SND_LIB_SUBMINOR) && defined(SOUNDLIB_VERSION_SUBMINOR)
88 #define SND_LIB_SUBMINOR SOUNDLIB_VERSION_SUBMINOR
89 #endif
90
91 #  if(SND_LIB_MAJOR > $alsa_min_major_version)
92   exit(0);
93 #  else
94 #    if(SND_LIB_MAJOR < $alsa_min_major_version)
95 #       error not present
96 #    endif
97
98 #   if(SND_LIB_MINOR > $alsa_min_minor_version)
99   exit(0);
100 #   else
101 #     if(SND_LIB_MINOR < $alsa_min_minor_version)
102 #          error not present
103 #      endif
104
105 #      if(SND_LIB_SUBMINOR < $alsa_min_micro_version)
106 #        error not present
107 #      endif
108 #    endif
109 #  endif
110 exit(0);
111 }
112 ],
113   [AC_MSG_RESULT(found.)],
114   [AC_MSG_RESULT(not present.)
115    ifelse([$3], , [AC_MSG_ERROR(Sufficiently new version of libasound not found.)])
116    alsa_found=no]
117 )
118 AC_LANG_RESTORE
119
120 dnl Now that we know that we have the right version, let's see if we have the library and not just the headers.
121 AC_CHECK_LIB([asound], [snd_defaults_card],,
122         [ifelse([$3], , [AC_MSG_ERROR(No linkable libasound was found.)])
123          alsa_found=no]
124 )
125
126 if test "x$alsa_found" = "xyes" ; then
127    ifelse([$2], , :, [$2])
128    LIBS=`echo $LIBS | sed 's/-lasound//g'`
129    LIBS=`echo $LIBS | sed 's/  //'`
130    LIBS="-lasound $LIBS"
131 fi
132 if test "x$alsa_found" = "xno" ; then
133    ifelse([$3], , :, [$3])
134    CFLAGS="$alsa_save_CFLAGS"
135    LDFLAGS="$alsa_save_LDFLAGS"
136    LIBS="$alsa_save_LIBS"
137    ALSA_CFLAGS=""
138    ALSA_LIBS=""
139 fi
140
141 dnl That should be it.  Now just export out symbols:
142 AC_SUBST(ALSA_CFLAGS)
143 AC_SUBST(ALSA_LIBS)
144 ])
145