Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
e7151f94
Commit
e7151f94
authored
Mar 17, 2004
by
Warren Dukes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure script clean ups
git-svn-id:
https://svn.musicpd.org/mpd/trunk@268
09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent
9a7636f5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
60 additions
and
8 deletions
+60
-8
configure.ac
configure.ac
+60
-8
No files found.
configure.ac
View file @
e7151f94
...
@@ -5,10 +5,6 @@ AC_PREREQ(2.52)
...
@@ -5,10 +5,6 @@ AC_PREREQ(2.52)
AC_INIT(mpd, 0.10.1, shank@mercury.chem.pitt.edu)
AC_INIT(mpd, 0.10.1, shank@mercury.chem.pitt.edu)
AM_INIT_AUTOMAKE($PACKAGE_NAME, $PACKAGE_VERSION)
AM_INIT_AUTOMAKE($PACKAGE_NAME, $PACKAGE_VERSION)
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LIBTOOL
dnl MAD wants this stuff
dnl MAD wants this stuff
AC_SUBST(CCAS)
AC_SUBST(CCAS)
AC_SUBST(CCASFLAGS)
AC_SUBST(CCASFLAGS)
...
@@ -22,6 +18,10 @@ AC_SUBST(MP4FF_LIB)
...
@@ -22,6 +18,10 @@ AC_SUBST(MP4FF_LIB)
AC_SUBST(MPD_LIBS)
AC_SUBST(MPD_LIBS)
AC_SUBST(MPD_CFLAGS)
AC_SUBST(MPD_CFLAGS)
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LIBTOOL
MPD_CFLAGS="-Wall"
MPD_CFLAGS="-Wall"
MPD_LIBS=""
MPD_LIBS=""
...
@@ -44,7 +44,7 @@ AC_ARG_WITH(mad,[ --with-mad=PFX Prefix where libmad is installed (optional)]
...
@@ -44,7 +44,7 @@ AC_ARG_WITH(mad,[ --with-mad=PFX Prefix where libmad is installed (optional)]
AC_ARG_WITH(mad-libraries,[ --with-mad-libraries=DIR Directory where libmad library is installed (optional)], mad_libraries="$withval", mad_libraries="")
AC_ARG_WITH(mad-libraries,[ --with-mad-libraries=DIR Directory where libmad library is installed (optional)], mad_libraries="$withval", mad_libraries="")
AC_ARG_WITH(mad-includes,[ --with-mad-includes=DIR Directory where mad header files are installed (optional)], mad_includes="$withval", mad_includes="")
AC_ARG_WITH(mad-includes,[ --with-mad-includes=DIR Directory where mad header files are installed (optional)], mad_includes="$withval", mad_includes="")
AC_ARG_WITH(faad2,[ --with-faad2=PFX Prefix where faad2 is installed
(optional)
], faad_prefix="$withval", faad_prefix="")
AC_ARG_WITH(faad2,[ --with-faad2=PFX Prefix where faad2 is installed], faad_prefix="$withval", faad_prefix="")
AC_ARG_WITH(faad2-libraries,[ --with-faad-libraries=DIR Directory where faad2 library is installed (optional)], faad_libraries="$withval", faad_libraries="")
AC_ARG_WITH(faad2-libraries,[ --with-faad-libraries=DIR Directory where faad2 library is installed (optional)], faad_libraries="$withval", faad_libraries="")
AC_ARG_WITH(faad2-includes,[ --with-faad-includes=DIR Directory where faad2 header files are installed (optional)], faad_includes="$withval", faad_includes="")
AC_ARG_WITH(faad2-includes,[ --with-faad-includes=DIR Directory where faad2 header files are installed (optional)], faad_includes="$withval", faad_includes="")
...
@@ -224,13 +224,13 @@ if test x$enable_aac = xyes; then
...
@@ -224,13 +224,13 @@ if test x$enable_aac = xyes; then
LIBS="$LIBS $MPD_LIBS $FAAD_LIBS"
LIBS="$LIBS $MPD_LIBS $FAAD_LIBS"
AC_CHECK_HEADER(faad.h,,enable_aac=no)
AC_CHECK_HEADER(faad.h,,enable_aac=no)
if test x$enable_aac = xyes; then
if test x$enable_aac = xyes; then
AC_CHECK_HEADER(mp4.h,,
enable_aac=no
)
AC_CHECK_HEADER(mp4.h,,
[enable_aac=no;AC_MSG_WARN(You need mp4v2 installed for AAC/MP4 decoding)]
)
fi
fi
if test x$enable_aac = xyes; then
if test x$enable_aac = xyes; then
AC_CHECK_LIB(mp4v2, MP4Create,,
enable_aac=no
)
AC_CHECK_LIB(mp4v2, MP4Create,,
[enable_aac=no;AC_MSG_WARN(You need mp4v2 installed for AAC/MP4 decoding)]
)
fi
fi
if test x$enable_aac = xyes; then
if test x$enable_aac = xyes; then
AC_CHECK_LIB(mp4v2, MP4MetadataDelete,,
enable_aac=no
)
AC_CHECK_LIB(mp4v2, MP4MetadataDelete,,
[enable_aac=no;AC_MSG_WARN(You need mp4v2 installed for AAC/MP4 decoding)]
)
fi
fi
if test x$enable_aac = xyes; then
if test x$enable_aac = xyes; then
AC_CHECK_LIB(faad, faacDecDecode,[MPD_LIBS="$MPD_LIBS $FAAD_LIBS";MPD_CFLAGS="$MPD_CFLAGS $FAAD_CFLAGS -DHAVE_FAAD";MP4FF_SUBDIR="mp4ff";MP4FF_LIB="mp4ff/libmp4ff.la"],enable_aac=no)
AC_CHECK_LIB(faad, faacDecDecode,[MPD_LIBS="$MPD_LIBS $FAAD_LIBS";MPD_CFLAGS="$MPD_CFLAGS $FAAD_CFLAGS -DHAVE_FAAD";MP4FF_SUBDIR="mp4ff";MP4FF_LIB="mp4ff/libmp4ff.la"],enable_aac=no)
...
@@ -334,3 +334,55 @@ if test x$enable_audiofile = xyes; then
...
@@ -334,3 +334,55 @@ if test x$enable_audiofile = xyes; then
fi
fi
AC_OUTPUT(src/mp4ff/Makefile doc/Makefile src/Makefile Makefile )
AC_OUTPUT(src/mp4ff/Makefile doc/Makefile src/Makefile Makefile )
echo ""
echo "########### MPD CONFIGURATION ############"
if test x$enable_id3 = xyes; then
echo "ID3 tag support ...............enabled"
if test x$use_mpd_id3tag = xyes; then
echo " using MPD's libid3tag"
else
echo " not using MPD's libid3tag"
fi
else
echo "ID3 tag support ...............disabled"
fi
if test x$enable_mp3 = xyes; then
echo "mp3 support ...................enabled"
if test x$use_mpd_mad = xyes; then
echo " using MPD's libmad"
else
echo " not using MPD's libmad"
fi
else
echo "mp3 support ...................disabled"
fi
if test x$enable_ogg = xyes; then
echo "Ogg Vorbis support ............enabled"
else
echo "Ogg Vorbis support ............disabled"
fi
if test x$enable_flac = xyes; then
echo "FLAC support ..................enabled"
else
echo "FLAC support ..................disabled"
fi
if test x$enable_audiofile = xyes; then
echo "Wave file support .............enabled"
else
echo "Wave file support .............disabled"
fi
if test x$enable_aac = xyes; then
echo "AAC support ...................enabled"
else
echo "AAC support ...................disabled"
fi
echo ""
echo "You are now ready to compile MPD"
echo "Type \"make\" to compile MPD"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment