Details
-
Bug
-
Resolution: Duplicate
-
Not Evaluated
-
None
-
5.0.0
-
OSX 10.7.5
-
-
90e4bc5fdf1d0177e6acbb70349d85ca303c8e61
Description
In 32 bit, there are 2 compilation errors due to CGRect / NSRect uncompatibilities.
simple config:
configure -platform macx-clang-32 -v -nomake examples -nomake demos -commercial -confirm-license
under 10.7.5
I could make it work by changing:
CGRect rect = [scroller bounds]; (line 5002)
to
CGRect rect = NSRectToCGRect([scroller bounds]);
and
[scroller drawKnobSlotInRect:rect highlight:YES]; (line 5009)
to
NSRect nr = NSRectFromCGRect(rect);
[scroller drawKnobSlotInRect:nr highlight:YES];
Attachments
Issue Links
- is duplicated by
-
QTBUG-41367 Qt-5.3.2 build from source error for 32 bit MacOSX platform
- Closed
-
QTBUG-41654 5.3.2 doesn't compile on 32-bit mac
- Closed
- is replaced by
-
QTBUG-28862 Qt library, version 5.0.0 is not buildable using 32-bit clang compiler on Mac OS X
- Closed