annotate m4/libFLAC.m4 @ 516:522acbb51ecc trunk

[svn] - flac 113 plugin: get rid of http.c and http.h stuff in flac 113 as well
author giacomo
date Mon, 22 Jan 2007 09:08:16 -0800
parents b8482261841d
children e25e32e7d44e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1 # For audacious by MSameer
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
2 # Configure paths for libFLAC
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
3 # "Inspired" by ogg.m4
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
4
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
5 dnl AM_PATH_LIBFLAC([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
6 dnl Test for libFLAC, and define LIBFLAC_CFLAGS and LIBFLAC_LIBS
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
7 dnl
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
8 AC_DEFUN([AM_PATH_LIBFLAC],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
9 [dnl
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
10 dnl Get the cflags and libraries
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
11 dnl
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
12 AC_ARG_WITH(libFLAC,[ --with-libFLAC=PFX Prefix where libFLAC is installed (optional)], libFLAC_prefix="$withval", libFLAC_prefix="")
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
13 AC_ARG_WITH(libFLAC-libraries,[ --with-libFLAC-libraries=DIR Directory where libFLAC library is installed (optional)], libFLAC_libraries="$withval", libFLAC_libraries="")
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
14 AC_ARG_WITH(libFLAC-includes,[ --with-libFLAC-includes=DIR Directory where libFLAC header files are installed (optional)], libFLAC_includes="$withval", libFLAC_includes="")
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
15 AC_ARG_ENABLE(libFLACtest, [ --disable-libFLACtest do not try to compile and run a test libFLAC program],, enable_libFLACtest=yes)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
16
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
17 if test "x$libFLAC_libraries" != "x" ; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
18 LIBFLAC_LIBS="-L$libFLAC_libraries"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
19 elif test "x$libFLAC_prefix" != "x" ; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
20 LIBFLAC_LIBS="-L$libFLAC_prefix/lib"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
21 elif test "x$prefix" != "xNONE" ; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
22 LIBFLAC_LIBS="-L$libdir"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
23 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
24
279
1983383db0f5 [svn] build fixes:
yaz
parents: 106
diff changeset
25 LIBFLAC_LIBS="$LIBFLAC_LIBS -lFLAC -logg -lm"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
26
286
b8482261841d [svn] - revise CXXFLAGS fix.
yaz
parents: 280
diff changeset
27 if test "x$prefix" != "xNONE"; then
b8482261841d [svn] - revise CXXFLAGS fix.
yaz
parents: 280
diff changeset
28 LIBFLAC_CFLAGS="-I$prefix/include"
b8482261841d [svn] - revise CXXFLAGS fix.
yaz
parents: 280
diff changeset
29 fi
b8482261841d [svn] - revise CXXFLAGS fix.
yaz
parents: 280
diff changeset
30
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
31 if test "x$libFLAC_includes" != "x" ; then
286
b8482261841d [svn] - revise CXXFLAGS fix.
yaz
parents: 280
diff changeset
32 LIBFLAC_CFLAGS="$LIBFLAC_CFLAGS -I$libFLAC_includes"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
33 elif test "x$libFLAC_prefix" != "x" ; then
286
b8482261841d [svn] - revise CXXFLAGS fix.
yaz
parents: 280
diff changeset
34 LIBFLAC_CFLAGS="$LIBFLAC_CFLAGS -I$libFLAC_prefix/include"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
35 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
36
106
a22d1b51712e [svn] - bleah fix FLAC check
nenolod
parents: 100
diff changeset
37 AC_MSG_CHECKING(for libFLAC >= 1.1.2)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
38 no_libFLAC=""
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
39
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
40
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
41 if test "x$enable_libFLACtest" = "xyes" ; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
42 ac_save_CFLAGS="$CFLAGS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
43 ac_save_CXXFLAGS="$CXXFLAGS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
44 ac_save_LIBS="$LIBS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
45 CFLAGS="$CFLAGS $LIBFLAC_CFLAGS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
46 CXXFLAGS="$CXXFLAGS $LIBFLAC_CFLAGS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
47 LIBS="$LIBS $LIBFLAC_LIBS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
48 dnl
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
49 dnl Now check if the installed libFLAC is sufficiently new.
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
50 dnl
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
51 rm -f conf.libFLACtest
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
52 AC_TRY_RUN([
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
53 #include <stdio.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
54 #include <stdlib.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
55 #include <string.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
56 #include <FLAC/all.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
57
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
58 int main ()
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
59 {
100
7be4c601acfa [svn] - the FLAC developers suck
nenolod
parents: 0
diff changeset
60 char cmdbuf[16384];
7be4c601acfa [svn] - the FLAC developers suck
nenolod
parents: 0
diff changeset
61
7be4c601acfa [svn] - the FLAC developers suck
nenolod
parents: 0
diff changeset
62 /* this will just bail if < 1.1.2 -nenolod */
7be4c601acfa [svn] - the FLAC developers suck
nenolod
parents: 0
diff changeset
63 FLAC__format_vorbiscomment_entry_name_is_legal("foo");
7be4c601acfa [svn] - the FLAC developers suck
nenolod
parents: 0
diff changeset
64
7be4c601acfa [svn] - the FLAC developers suck
nenolod
parents: 0
diff changeset
65 /* we need the version of FLAC available, so dump it here. */
7be4c601acfa [svn] - the FLAC developers suck
nenolod
parents: 0
diff changeset
66 sprintf(cmdbuf, "echo '%c%c%c' > conf.libFLACtest",
7be4c601acfa [svn] - the FLAC developers suck
nenolod
parents: 0
diff changeset
67 FLAC__VERSION_STRING[0], FLAC__VERSION_STRING[2],
7be4c601acfa [svn] - the FLAC developers suck
nenolod
parents: 0
diff changeset
68 FLAC__VERSION_STRING[4]);
7be4c601acfa [svn] - the FLAC developers suck
nenolod
parents: 0
diff changeset
69
7be4c601acfa [svn] - the FLAC developers suck
nenolod
parents: 0
diff changeset
70 system(cmdbuf);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
71 return 0;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
72 }
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
73
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
74 ],, no_libFLAC=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
75 CFLAGS="$ac_save_CFLAGS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
76 LIBS="$ac_save_LIBS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
77 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
78
106
a22d1b51712e [svn] - bleah fix FLAC check
nenolod
parents: 100
diff changeset
79 if test -f conf.libFLACtest ; then
a22d1b51712e [svn] - bleah fix FLAC check
nenolod
parents: 100
diff changeset
80 FLAC_VERSION=`cat conf.libFLACtest`
a22d1b51712e [svn] - bleah fix FLAC check
nenolod
parents: 100
diff changeset
81 AC_DEFINE_UNQUOTED(AUD_FLAC_VERSION, $FLAC_VERSION,
a22d1b51712e [svn] - bleah fix FLAC check
nenolod
parents: 100
diff changeset
82 [Available version of FLAC on your system.])
a22d1b51712e [svn] - bleah fix FLAC check
nenolod
parents: 100
diff changeset
83 fi
a22d1b51712e [svn] - bleah fix FLAC check
nenolod
parents: 100
diff changeset
84
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
85 if test "x$no_libFLAC" = "x" ; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
86 AC_MSG_RESULT(yes)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
87 ifelse([$1], , :, [$1])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
88 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
89 AC_MSG_RESULT(no)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
90 if test -f conf.libFLACtest ; then
106
a22d1b51712e [svn] - bleah fix FLAC check
nenolod
parents: 100
diff changeset
91 :
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
92 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
93 echo "*** Could not run libFLAC test program, checking why..."
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
94 CFLAGS="$CFLAGS $LIBFLAC_CFLAGS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
95 LIBS="$LIBS $LIBFLAC_LIBS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
96 AC_TRY_LINK([
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
97 #include <stdio.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
98 #include <FLAC/format.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
99 ], [ return 0; ],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
100 [ echo "*** The test program compiled, but did not run. This usually means"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
101 echo "*** that the run-time linker is not finding libFLAC or finding the wrong"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
102 echo "*** version of libFLAC. If it is not finding libFLAC, you'll need to set your"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
103 echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
104 echo "*** to the installed location Also, make sure you have run ldconfig if that"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
105 echo "*** is required on your system"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
106 echo "***"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
107 echo "*** If you have an old version installed, it is best to remove it, although"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
108 echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
109 [ echo "*** The test program failed to compile or link. See the file config.log for the"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
110 echo "*** exact error that occured. This usually means libFLAC was incorrectly installed"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
111 echo "*** or that you have moved libFLAC since it was installed. In the latter case, you"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
112 echo "*** may want to edit the libFLAC-config script: $LIBFLAC_CONFIG" ])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
113 CFLAGS="$ac_save_CFLAGS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
114 LIBS="$ac_save_LIBS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
115 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
116 LIBFLAC_CFLAGS=""
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
117 LIBFLAC_LIBS=""
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
118 ifelse([$2], , :, [$2])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
119 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
120 AC_SUBST(LIBFLAC_CFLAGS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
121 AC_SUBST(LIBFLAC_LIBS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
122 rm -f conf.libFLACtest
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
123 ])