summaryrefslogtreecommitdiff
path: root/build/m4
diff options
context:
space:
mode:
authorGabriel Burt <gabriel.burt@gmail.com>2011-04-26 20:53:37 -0500
committerGabriel Burt <gabriel.burt@gmail.com>2011-04-26 22:03:54 -0500
commit996f03d96f8b451101a62565b8da1a2140d084d1 (patch)
treee8bdc2736916f04308681c356e16ff2c366aec5f /build/m4
parent15feb870a6f275e1c48123b3d69ce9d6d7200b65 (diff)
cleanup: Remove Ipod backend
The ipod-sharp based backend is obsolete in favor of the AppleDevice, libgpod-based backend.
Diffstat (limited to 'build/m4')
-rw-r--r--build/m4/banshee/dap-ipod.m434
1 files changed, 0 insertions, 34 deletions
diff --git a/build/m4/banshee/dap-ipod.m4 b/build/m4/banshee/dap-ipod.m4
deleted file mode 100644
index 087389115..000000000
--- a/build/m4/banshee/dap-ipod.m4
+++ /dev/null
@@ -1,34 +0,0 @@
-AC_DEFUN([BANSHEE_CHECK_DAP_IPOD],
-[
- IPODSHARP_REQUIRED=0.8.5
-
- AC_ARG_ENABLE(ipod, AC_HELP_STRING([--enable-ipod], [Enable legacy ipod-sharp DAP support]), , enable_ipod="no")
-
- if test "x$enable_ipod" = "xyes"; then
- enable_ipodsharp="${enable_ipod}"
- PKG_CHECK_MODULES(IPODSHARP,
- ipod-sharp >= $IPODSHARP_REQUIRED \
- ipod-sharp-ui >= $IPODSHARP_REQUIRED,
- enable_ipodsharp="$enable_ipodsharp", enable_ipodsharp=no)
-
- if test "x$enable_ipod" = "xyes" -a "x$enable_ipodsharp" = "xno"; then
- AC_MSG_ERROR([ipod-sharp was not found or is not up to date. Please install ipod-sharp of at least version $IPODSHARP_REQUIRED, or disable iPod support by passing --disable-ipod])
- fi
-
- if test "x$enable_ipodsharp" = "xyes"; then
- asms="`$PKG_CONFIG --variable=Libraries ipod-sharp` `$PKG_CONFIG --variable=Libraries ipod-sharp-ui`"
- for asm in $asms; do
- IPODSHARP_ASSEMBLIES="$IPODSHARP_ASSEMBLIES $asm"
- [[ -r "$asm.mdb" ]] && IPODSHARP_ASSEMBLIES="$IPODSHARP_ASSEMBLIES $asm.mdb"
- done
- AC_SUBST(IPODSHARP_ASSEMBLIES)
- AC_SUBST(IPODSHARP_LIBS)
- fi
-
- AM_CONDITIONAL(ENABLE_IPOD, test "x$enable_ipodsharp" = "xyes")
- else
- enable_ipodsharp=no
- AM_CONDITIONAL(ENABLE_IPOD, false)
- fi
-])
-