diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-07-14 07:35:48 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:23:05 -0500 |
commit | 598aafe9b3d6302e15a6a990e911c0fd3c23f634 (patch) | |
tree | 2d7d5a9fe5429f13e73a49e8384ef915830b9c77 /source4/lib/appweb | |
parent | 0e5907d57cdfb0c1ce3f151161a9260c14466bd0 (diff) | |
download | samba-598aafe9b3d6302e15a6a990e911c0fd3c23f634.tar.gz samba-598aafe9b3d6302e15a6a990e911c0fd3c23f634.tar.bz2 samba-598aafe9b3d6302e15a6a990e911c0fd3c23f634.zip |
r8453: my solaris10 box doesn't have math.h
maybe sun isn't very good at maths?
(This used to be commit ab67c8b2b7847ecad803dfc04a66007b8f6b4abe)
Diffstat (limited to 'source4/lib/appweb')
-rw-r--r-- | source4/lib/appweb/mpr/miniMpr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/lib/appweb/mpr/miniMpr.h b/source4/lib/appweb/mpr/miniMpr.h index 8b28472826..6fc4d50c31 100644 --- a/source4/lib/appweb/mpr/miniMpr.h +++ b/source4/lib/appweb/mpr/miniMpr.h @@ -74,8 +74,9 @@ #if QNX4 #include <dirent.h> #endif +#ifdef HAVE_MATH_H #include <math.h> - +#endif /********************************** Defines ***********************************/ #ifdef __cplusplus |