todo update
git-svn-id: https://svn.musicpd.org/mpd/trunk@3452 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
		
							
								
								
									
										3
									
								
								TODO
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								TODO
									
									
									
									
									
								
							| @@ -22,6 +22,9 @@ | |||||||
|  |  | ||||||
| *) Add support for 24-bit audio | *) Add support for 24-bit audio | ||||||
|  |  | ||||||
|  | *) Add better error logging when updating the db and a file/directory isn't  | ||||||
|  | 	added | ||||||
|  |  | ||||||
| 0.13 | 0.13 | ||||||
| ---- | ---- | ||||||
|  |  | ||||||
|   | |||||||
							
								
								
									
										14
									
								
								configure.ac
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								configure.ac
									
									
									
									
									
								
							| @@ -38,6 +38,7 @@ AC_ARG_ENABLE(ipv6,[  --disable-ipv6     disable IPv6 support],,enable_ipv6=yes) | |||||||
| AC_ARG_ENABLE(sun,[  --disable-sun     disable sun support],,enable_sun=yes) | AC_ARG_ENABLE(sun,[  --disable-sun     disable sun support],,enable_sun=yes) | ||||||
| AC_ARG_ENABLE(oss,[  --disable-oss     disable OSS support],,enable_oss=yes) | AC_ARG_ENABLE(oss,[  --disable-oss     disable OSS support],,enable_oss=yes) | ||||||
| AC_ARG_ENABLE(alsa,[  --disable-alsa     disable ALSA support],,enable_alsa=yes) | AC_ARG_ENABLE(alsa,[  --disable-alsa     disable ALSA support],,enable_alsa=yes) | ||||||
|  | AC_ARG_ENABLE(mvp,[  --enable-mvp    enable support for Hauppauge Media MVP],,enable_mvp=no) | ||||||
| AC_ARG_ENABLE(ogg,[  --disable-ogg     disable ogg support],,enable_ogg=yes) | AC_ARG_ENABLE(ogg,[  --disable-ogg     disable ogg support],,enable_ogg=yes) | ||||||
| AC_ARG_ENABLE(flac,[  --disable-flac    disable flac support],,enable_flac=yes) | AC_ARG_ENABLE(flac,[  --disable-flac    disable flac support],,enable_flac=yes) | ||||||
| AC_ARG_ENABLE(mp3,[  --disable-mp3     disable mp3 support],,enable_mp3=yes) | AC_ARG_ENABLE(mp3,[  --disable-mp3     disable mp3 support],,enable_mp3=yes) | ||||||
| @@ -132,6 +133,10 @@ if test x$enable_oss = xyes; then | |||||||
| 	AC_CHECK_HEADER(sys/soundcard.h,[enable_oss=yes;AC_DEFINE(HAVE_OSS,1,[Define to enable OSS])],[AC_MSG_WARN(Soundcard headers not found -- disabling OSS support);enable_oss=no]) | 	AC_CHECK_HEADER(sys/soundcard.h,[enable_oss=yes;AC_DEFINE(HAVE_OSS,1,[Define to enable OSS])],[AC_MSG_WARN(Soundcard headers not found -- disabling OSS support);enable_oss=no]) | ||||||
| fi | fi | ||||||
|  |  | ||||||
|  | if test x$enable_mvp = xyes; then | ||||||
|  |    AC_DEFINE(HAVE_MVP,1,[Define to enable Hauppauge Media MVP support]) | ||||||
|  | fi | ||||||
|  |  | ||||||
| if test x$enable_alsa = xyes; then | if test x$enable_alsa = xyes; then | ||||||
| 	AM_PATH_ALSA(0.9.0,[AC_DEFINE(HAVE_ALSA,1,[Define to enable ALSA support]) MPD_LIBS="$MPD_LIBS $ALSA_LIBS" MPD_CFLAGS="$MPD_CFLAGS $ALSA_CFLAGS"],enable_alsa=no) | 	AM_PATH_ALSA(0.9.0,[AC_DEFINE(HAVE_ALSA,1,[Define to enable ALSA support]) MPD_LIBS="$MPD_LIBS $ALSA_LIBS" MPD_CFLAGS="$MPD_CFLAGS $ALSA_CFLAGS"],enable_alsa=no) | ||||||
| fi | fi | ||||||
| @@ -566,6 +571,12 @@ else | |||||||
| 	echo " OS X support ..................disabled" | 	echo " OS X support ..................disabled" | ||||||
| fi | fi | ||||||
|  |  | ||||||
|  | if test x$enable_mvp = xyes; then | ||||||
|  | 	echo " Media MVP support .............enabled" | ||||||
|  | else | ||||||
|  | 	echo " Media MVP support .............disabled" | ||||||
|  | fi | ||||||
|  |  | ||||||
| if test x$enable_shout = xyes; then | if test x$enable_shout = xyes; then | ||||||
| 	echo " Shout streaming support .......enabled" | 	echo " Shout streaming support .......enabled" | ||||||
| else | else | ||||||
| @@ -579,7 +590,8 @@ if test x$enable_ao = xno && | |||||||
|    test x$enable_shout = xno && |    test x$enable_shout = xno && | ||||||
|    test x$enable_sun = xno && |    test x$enable_sun = xno && | ||||||
|    test x$enable_alsa = xno && |    test x$enable_alsa = xno && | ||||||
|    test x$enable_osx = xno; then |    test x$enable_osx = xno && | ||||||
|  |    test x$enable_mvp = xno; then | ||||||
| 	AC_MSG_ERROR("No Audio Output types configured!") | 	AC_MSG_ERROR("No Audio Output types configured!") | ||||||
| fi | fi | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Warren Dukes
					Warren Dukes