diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
commit | f96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch) | |
tree | edb17ec2c4ea13c5acb1c7350957a249a820e28d /tmdns/tmdns-20030116 | |
parent | b6588aa6851fb220cedc387d21c51513ef8d67f4 (diff) |
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'tmdns/tmdns-20030116')
-rw-r--r-- | tmdns/tmdns-20030116/busybox-init.d.patch | 61 | ||||
-rw-r--r-- | tmdns/tmdns-20030116/char-signed-idiocy.patch | 16 | ||||
-rw-r--r-- | tmdns/tmdns-20030116/install-init.d.patch | 28 |
3 files changed, 105 insertions, 0 deletions
diff --git a/tmdns/tmdns-20030116/busybox-init.d.patch b/tmdns/tmdns-20030116/busybox-init.d.patch index e69de29bb2..cb7c24369c 100644 --- a/tmdns/tmdns-20030116/busybox-init.d.patch +++ b/tmdns/tmdns-20030116/busybox-init.d.patch @@ -0,0 +1,61 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- tmdns/init.d/initscript~busybox-init.d ++++ tmdns/init.d/initscript +@@ -2,34 +2,31 @@ + # + + PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin +-DAEMON=/usr/local/sbin/tmdns ++DAEMON=`which tmdns 2>/dev/null` + NAME=tmdns + DESC="tmdns multicast DNS responder version 0.1" + +-test -f $DAEMON || exit 0 ++test -n "$DAEMON" || exit 0 + + set -e + + case "$1" in + start) + echo -n "Starting $DESC: " +- start-stop-daemon --start --quiet --pidfile /var/run/tmdns.pid \ +- --exec $DAEMON ++ start-stop-daemon -S -x $DAEMON + echo "$NAME." + ;; + + stop) + echo -n "Stopping $DESC: " +- start-stop-daemon --stop --quiet --pidfile /var/run/tmdns.pid \ +- --exec $DAEMON ++ start-stop-daemon -X -x $DAEMON + rm -f /var/run/tmdns.pid + echo "$NAME." + ;; + + reload) + echo "Reloading $DESC configuration files." +- start-stop-daemon --stop --signal 1 --quiet --pidfile \ +- /var/run/tmdns.pid --exec $DAEMON ++ start-stop-daemon -X -s 1 -x $DAEMON + ;; + + restart|force-reload) +@@ -39,11 +36,9 @@ + # just the same as "restart". + # + echo -n "Restarting $DESC: " +- start-stop-daemon --stop --quiet --pidfile \ +- /var/run/$NAME.pid --exec $DAEMON ++ start-stop-daemon -X -x $DAEMON + sleep 1 +- start-stop-daemon --start --quiet --pidfile \ +- /var/run/$NAME.pid --exec $DAEMON ++ start-stop-daemon -S -x $DAEMON + echo "$NAME." + ;; + diff --git a/tmdns/tmdns-20030116/char-signed-idiocy.patch b/tmdns/tmdns-20030116/char-signed-idiocy.patch index e69de29bb2..d2856e07f6 100644 --- a/tmdns/tmdns-20030116/char-signed-idiocy.patch +++ b/tmdns/tmdns-20030116/char-signed-idiocy.patch @@ -0,0 +1,16 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- tmdns/server/tmdns.c~char-signed-idiocy ++++ tmdns/server/tmdns.c +@@ -87,7 +87,7 @@ + *****************************************************************************/ + int get_options( int argc, char ** argv ) { + +- char c = 0; ++ int c = 0; + int dns_bridge = 0; + int not_daemon = 0; + int no_fork = 0; diff --git a/tmdns/tmdns-20030116/install-init.d.patch b/tmdns/tmdns-20030116/install-init.d.patch index e69de29bb2..7941df1d42 100644 --- a/tmdns/tmdns-20030116/install-init.d.patch +++ b/tmdns/tmdns-20030116/install-init.d.patch @@ -0,0 +1,28 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- tmdns/init.d/Makefile.am~install-init.d ++++ tmdns/init.d/Makefile.am +@@ -23,6 +23,7 @@ + install: + if [ -f initscript ] ;\ + then \ +- install -m 755 initscript $(DESTDIR)$(INIT_DIR)/tmdns ;\ ++ install -d $(DESTDIR)$(INIT_DIR); \ ++ install -m 755 initscript $(DESTDIR)$(INIT_DIR)/tmdns; \ + fi + +--- tmdns/init.d/Makefile.in~install-init.d ++++ tmdns/init.d/Makefile.in +@@ -274,7 +274,8 @@ + install: + if [ -f initscript ] ;\ + then \ +- install -m 755 initscript $(DESTDIR)$(INIT_DIR)/tmdns ;\ ++ install -d $(DESTDIR)$(INIT_DIR); \ ++ install -m 755 initscript $(DESTDIR)$(INIT_DIR)/tmdns; \ + fi + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. |