From aba8d8d7635d977d35a1cc8408845cd25b723f63 Mon Sep 17 00:00:00 2001 From: Jason Parker Date: Tue, 26 Feb 2008 00:03:30 +0000 Subject: [PATCH] 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 --- channels/chan_h323.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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