From: Jason Parker Date: Tue, 26 Feb 2008 00:03:30 +0000 (+0000) Subject: IPTOS_MINCOST is not defined on Solaris. X-Git-Tag: 1.4.19~142 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aba8d8d7635d977d35a1cc8408845cd25b723f63;p=thirdparty%2Fasterisk.git IPTOS_MINCOST is not defined on Solaris. (closes issue #12050) Reported by: asgaroth Patches: 12050.patch uploaded by putnopvut (license 60) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@104111 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_h323.c b/channels/chan_h323.c index bcde79a79e..fb0d8315f0 100644 --- a/channels/chan_h323.c +++ b/channels/chan_h323.c @@ -54,7 +54,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include #include #include -#if defined(BSD) +#if defined(BSD) || defined(SOLARIS) #ifndef IPTOS_MINCOST #define IPTOS_MINCOST 0x02 #endif