Here's how I got it installed.

ssh to root and do execute the following shell commands to create and
install the mDNSResponderPosix binary

Code:
--------------------
    
  cd /usr/src
  wget 
http://www.opensource.apple.com/darwinsource/tarballs/other/mDNSResponder-107.6.tar.gz
  tar zxf mDNSResponder-107.6.tar.gz
  cd mDNSResponder-107.6/mDNSPosix
  make os=linux
  make os=linux install
  cp build/prod/mDNSResponderPosix /usr/sbin/.
  
--------------------


But that alone won't quite work because the format of the mDNS.conf
file is tempermental and slightly different between the what SC outputs
and what mDNSPosix wants. So...

edit /usr/share/perl5/Slim/Networking/mDNS.pm
Find the block of 5 "print CONF" statements (roughly line 135) and edit
it to read:

Code:
--------------------
    
  print CONF "\n";
  print CONF "$name\n";
  print CONF "$service\n";
  print CONF "$port\n";
  
--------------------


- R


-- 
farallon
------------------------------------------------------------------------
farallon's Profile: http://forums.slimdevices.com/member.php?userid=15473
View this thread: http://forums.slimdevices.com/showthread.php?t=43287

_______________________________________________
beta mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/beta

Reply via email to