ports/net/DarwinStreamingServer/files/patch-Server.tproj::main.cpp
Norikatsu Shigemura 78825e7169 Update to 5.5.3
o rcNGfy
o Compile on amd64 [1]
  NOTE: DSS will support on amd64, because there are many
        fix which I heard:-) in cvs repository.  In this
        time, however, Apple doesn't release DSS supported
        on amd64:-(.

Submitted by:	Javier Martin Rueda <jmrueda@diatel.upm.es> [1]
2006-08-13 00:22:50 +00:00

11 lines
628 B
C++

--- Server.tproj/main.cpp.orig Wed Apr 27 21:21:14 2005
+++ Server.tproj/main.cpp Sun Aug 13 00:39:07 2006
@@ -212,7 +212,7 @@
//(void) ::signal(SIGPIPE, SIG_IGN);
struct sigaction act;
-#if defined(sun) || defined(i386) || defined (__MacOSX__) || defined(__powerpc__) || defined (__osf__) || defined (__sgi_cc__) || defined (__hpux__)
+#if defined(sun) || defined(i386) || defined (__MacOSX__) || defined(__powerpc__) || defined (__osf__) || defined (__sgi_cc__) || defined (__hpux__) || defined(__amd64__)
sigemptyset(&act.sa_mask);
act.sa_flags = 0;
act.sa_handler = (void(*)(int))&sigcatcher;