projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
26a0b7e
)
configure.ac: Try to link against libogg and lm if necessary.
author
Andre Noll
<maan@systemlinux.org>
Mon, 27 Feb 2012 12:44:26 +0000
(13:44 +0100)
committer
Andre Noll
<maan@systemlinux.org>
Mon, 27 Feb 2012 12:44:26 +0000
(13:44 +0100)
This seems to be necessary on FreeBSD, and does hopefully not hurt
on other systems.
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index 89242d969bbab440a8ac085262b3de45ea3d3392..b5898ac833e10cefabcdc84d398d55a5cd387c83 100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-748,7
+748,7
@@
if test -n "$with_flac_libs"; then
LDFLAGS="$LDFLAGS $flac_libs"
fi
AC_CHECK_HEADER(FLAC/stream_decoder.h, [], have_flac=no)
-AC_CHECK_LIB([FLAC], [FLAC__stream_decoder_init_file], [], have_flac=no)
+AC_CHECK_LIB([FLAC], [FLAC__stream_decoder_init_file], [], have_flac=no
, -logg -lm
)
if test "$have_flac" = "yes"; then
AC_DEFINE(HAVE_FLAC, 1, define to 1 if you want to build the flacdec filter)
all_errlist_objs="$all_errlist_objs flacdec_filter flac_afh"