diff options
Diffstat (limited to 'recipes/mt-daapd/files')
-rw-r--r-- | recipes/mt-daapd/files/itunes-5-fix.patch | 45 | ||||
-rw-r--r-- | recipes/mt-daapd/files/mt-daapd.init | 41 |
2 files changed, 86 insertions, 0 deletions
diff --git a/recipes/mt-daapd/files/itunes-5-fix.patch b/recipes/mt-daapd/files/itunes-5-fix.patch new file mode 100644 index 0000000000..e5f597295f --- /dev/null +++ b/recipes/mt-daapd/files/itunes-5-fix.patch @@ -0,0 +1,45 @@ +# WARNING: this is a copy of the same file off www.mt-daapd.org with +# the path names fixed so that it works in OE +--- S/src/daap.c.orig 2005-09-07 21:41:41.000000000 -0500 ++++ S/src/daap.c 2005-09-07 21:44:25.000000000 -0500 +@@ -770,26 +770,28 @@ + DAAP_BLOCK *daap_response_server_info(char *name, char *client_version) { + DAAP_BLOCK *root; + int g=1; ++ int mpro = 2 << 16; ++ int apro = 3 << 16; + + DPRINTF(E_DBG,L_DAAP,"Preparing to send server-info for client ver %s\n",client_version); + + root=daap_add_empty(NULL,"msrv"); + + if(root) { +- g = (int)daap_add_int(root,"mstt",200); /* result */ +- if((!client_version)||(!strcmp(client_version,"3.0"))) { +- g = g && daap_add_int(root,"mpro",2 << 16); /* dmap proto ? */ +- g = g && daap_add_int(root,"apro",3 << 16); /* daap protocol */ +- } else { +- if(!strcmp(client_version,"1.0")) { +- g = g && daap_add_int(root,"mpro",1 << 16); /* dmap proto ? */ +- g = g && daap_add_int(root,"apro",1 << 16); /* daap protocol */ +- } else if(!strcmp(client_version,"2.0")) { +- g = g && daap_add_int(root,"mpro",1 << 16); /* dmap proto ? */ +- g = g && daap_add_int(root,"apro",2 << 16); /* daap protocol */ +- } ++ if((client_version) && (!strcmp(client_version,"1.0"))) { ++ mpro = 1 << 16; ++ apro = 1 << 16; ++ } ++ ++ if((client_version) && (!strcmp(client_version,"2.0"))) { ++ mpro = 1 << 16; ++ apro = 2 << 16; + } + ++ g = (int)daap_add_int(root,"mstt",200); /* result */ ++ g = g && daap_add_int(root,"mpro",mpro); /* dmap proto ? */ ++ g = g && daap_add_int(root,"apro",apro); /* daap protocol */ ++ + g = g && daap_add_string(root,"minm",name); /* server name */ + + #if 0 diff --git a/recipes/mt-daapd/files/mt-daapd.init b/recipes/mt-daapd/files/mt-daapd.init new file mode 100644 index 0000000000..7a35a72186 --- /dev/null +++ b/recipes/mt-daapd/files/mt-daapd.init @@ -0,0 +1,41 @@ +#! /bin/sh +# +# This is an init script for openembedded +# Copy it to /etc/init.d/mt-daapd and type +# > update-rc.d mt-daapd defaults 60 +# + + +test -f /usr/sbin/mt-daapd || exit 0 + +test -d /var/spool/mt-daapd || mkdir -p /var/spool/mt-daapd + +case "$1" in + start) + echo -n "Starting mt-daapd daemon: mt-daapd" + start-stop-daemon --start --quiet --exec /usr/sbin/mt-daapd + echo "." + ;; + stop) + echo -n "Stopping mt-daapd daemon: mt-daapd" + start-stop-daemon --stop --quiet --exec /usr/sbin/mt-daapd + echo "." + ;; + reload|force-reload) + start-stop-daemon --stop --quiet --signal 1 --exec /usr/sbin/mt-daapd + ;; + restart) + echo -n "Stopping mt-daapd daemon: mt-daapd" + start-stop-daemon --stop --quiet --exec /usr/sbin/mt-daapd + sleep 1 + echo -n "Starting mt-daapd daemon: mt-daapd" + start-stop-daemon --start --quiet --exec /usr/sbin/mt-daapd + echo "." + ;; + *) + echo "Usage: /etc/init.d/mt-daapd {start|stop|reload|restart|force-reload}" + exit 1 +esac + +exit 0 + |