mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
0aa558234e
PR: 21279 Submitted by: Ports Fury
23 lines
558 B
Plaintext
23 lines
558 B
Plaintext
--- src/attributes/DoubleItem.cpp.orig Thu Jun 22 15:56:42 2000
|
|
+++ src/attributes/DoubleItem.cpp Thu Sep 14 01:02:17 2000
|
|
@@ -6,16 +6,17 @@
|
|
*/
|
|
|
|
#include "DoubleItem.h"
|
|
-#include "values.h"
|
|
#include <qlineedit.h>
|
|
#include <qvalidator.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
|
|
|
|
//*********************************************************************
|