1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/devel/qtez/files/patch-af

22 lines
523 B
Plaintext
Raw Normal View History

--- src/attributes/IntItem.cpp.orig Thu Jun 22 15:56:42 2000
+++ src/attributes/IntItem.cpp Thu Sep 14 01:03:16 2000
@@ -6,15 +6,16 @@
*/
#include "IntItem.h"
-#include "values.h"
#include <qspinbox.h>
#ifdef SunOS_i86pc
#define MININT (-MAXINT - 1)
-#elif defined(_OS_WIN32_)
+#elif defined(_OS_WIN32_) || defined(__FreeBSD__)
#include "limits.h"
#define MININT INT_MIN
#define MAXINT INT_MAX
+#else
+ #include "values.h"
#endif
//*********************************************************************