[asterisk-commits] russell: branch russell/jack r95768 - /team/russell/jack/apps/app_jack.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Jan 1 22:39:50 CST 2008


Author: russell
Date: Tue Jan  1 22:39:50 2008
New Revision: 95768

URL: http://svn.digium.com/view/asterisk?view=rev&rev=95768
Log:
Check for more platforms when including float.h

Modified:
    team/russell/jack/apps/app_jack.c

Modified: team/russell/jack/apps/app_jack.c
URL: http://svn.digium.com/view/asterisk/team/russell/jack/apps/app_jack.c?view=diff&rev=95768&r1=95767&r2=95768
==============================================================================
--- team/russell/jack/apps/app_jack.c (original)
+++ team/russell/jack/apps/app_jack.c Tue Jan  1 22:39:50 2008
@@ -40,7 +40,7 @@
 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
 
 /* These are for SHRT_MAX and FLT_MAX -- { */
-#ifdef __Darwin__
+#if defined(__Darwin__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__CYGWIN__)
 #include <float.h>
 #else
 #include <values.h>




More information about the asterisk-commits mailing list