* calendar.py: all libC functionality now moved to built-in time module
* imghdr.py: added jpeg recognition
* torgb.py: added jpeg conversion
* tzparse.py: use functions from time instead of calendar
* whatsound.py: add /ufs/guido/biin/sgi to $PATH when calling 'whatsound'
diff --git a/Lib/lib-old/whatsound.py b/Lib/lib-old/whatsound.py
index a59323b..b7b349c 100644
--- a/Lib/lib-old/whatsound.py
+++ b/Lib/lib-old/whatsound.py
@@ -56,6 +56,7 @@
 	from stat import ST_SIZE
 	# XXX "whatsound" should be part of the distribution somehow...
 	cmd = 'whatsound ' + filename + ' 2>/dev/null'
+	cmd = 'PATH=$PATH:/ufs/guido/bin/sgi\n' + cmd
 	pipe = os.popen(cmd, 'r')
 	data = pipe.read()
 	sts = pipe.close()