Commits

Ryan Schmidt authored e58936e4a8a
povray: update to 3.7.0.RC7; add forgotten libsdl dependency; simplify how --host and --build configure.args are added

git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@103521 d073be05-634f-4543-b044-5fe20cf6d1d6
No tags

graphics/povray/files/patch-boost-1.50.diff

Deleted
1 ---- source/backend/scene/view.cpp.orig 2012-06-10 06:53:44.000000000 -0500
2 -+++ source/backend/scene/view.cpp 2012-09-05 05:07:51.000000000 -0500
3 -@@ -1550,7 +1550,7 @@
4 - }
5 -
6 - boost::xtime t;
7 -- boost::xtime_get (&t, boost::TIME_UTC);
8 -+ boost::xtime_get (&t, boost::TIME_UTC_);
9 - t.sec += 3;
10 -
11 - // this will cause us to wait until the other threads are done.
12 ---- source/base/timer.cpp.orig 2012-02-05 14:54:15.000000000 -0600
13 -+++ source/base/timer.cpp 2012-09-05 05:07:51.000000000 -0500
14 -@@ -117,7 +117,7 @@
15 - POV_LONG TimerDefault::ElapsedRealTime() const
16 - {
17 - boost::xtime t;
18 -- boost::xtime_get(&t, boost::TIME_UTC);
19 -+ boost::xtime_get(&t, boost::TIME_UTC_);
20 - POV_LONG tt = (POV_LONG)(t.sec) * (POV_LONG)(1000000000) + (POV_LONG)(t.nsec);
21 - POV_LONG st = (POV_LONG)(realTimeStart.sec) * (POV_LONG)(1000000000) + (POV_LONG)(realTimeStart.nsec);
22 - return ((tt - st) / (POV_LONG)(1000000));
23 -@@ -126,7 +126,7 @@
24 - POV_LONG TimerDefault::ElapsedCPUTime() const
25 - {
26 - boost::xtime t;
27 -- boost::xtime_get(&t, boost::TIME_UTC);
28 -+ boost::xtime_get(&t, boost::TIME_UTC_);
29 - POV_LONG tt = (POV_LONG)(t.sec) * (POV_LONG)(1000000000) + (POV_LONG)(t.nsec);
30 - POV_LONG st = (POV_LONG)(cpuTimeStart.sec) * (POV_LONG)(1000000000) + (POV_LONG)(cpuTimeStart.nsec);
31 - return ((tt - st) / (POV_LONG)(1000000));
32 -@@ -139,8 +139,8 @@
33 -
34 - void TimerDefault::Reset()
35 - {
36 -- boost::xtime_get(&realTimeStart, boost::TIME_UTC);
37 -- boost::xtime_get(&cpuTimeStart, boost::TIME_UTC);
38 -+ boost::xtime_get(&realTimeStart, boost::TIME_UTC_);
39 -+ boost::xtime_get(&cpuTimeStart, boost::TIME_UTC_);
40 - }
41 -
42 - }
43 -@@ -155,7 +155,7 @@
44 - void Delay(unsigned int msec)
45 - {
46 - boost::xtime t;
47 -- boost::xtime_get(&t, boost::TIME_UTC);
48 -+ boost::xtime_get(&t, boost::TIME_UTC_);
49 - POV_ULONG ns = (POV_ULONG)(t.sec) * (POV_ULONG)(1000000000) + (POV_ULONG)(t.nsec) + (POV_ULONG)(msec) * (POV_ULONG)(1000000);
50 - t.sec = (boost::xtime::xtime_sec_t)(ns / (POV_ULONG)(1000000000));
51 - t.nsec = (boost::xtime::xtime_nsec_t)(ns % (POV_ULONG)(1000000000));
52 ---- vfe/unix/platformbase.cpp.orig 2012-06-19 11:29:38.000000000 -0500
53 -+++ vfe/unix/platformbase.cpp 2012-09-05 05:07:51.000000000 -0500
54 -@@ -126,7 +126,7 @@
55 - #else
56 - // taken from source/base/timer.cpp
57 - boost::xtime t;
58 -- boost::xtime_get(&t, boost::TIME_UTC);
59 -+ boost::xtime_get(&t, boost::TIME_UTC_);
60 - POV_ULONG ns = (POV_ULONG)(t.sec) * (POV_ULONG)(1000000000) + (POV_ULONG)(t.nsec) + (POV_ULONG)(msec) * (POV_ULONG)(1000000);
61 - t.sec = (boost::xtime::xtime_sec_t)(ns / (POV_ULONG)(1000000000));
62 - t.nsec = (boost::xtime::xtime_nsec_t)(ns % (POV_ULONG)(1000000000));
63 ---- vfe/vfepovms.cpp.orig 2012-06-19 11:29:40.000000000 -0500
64 -+++ vfe/vfepovms.cpp 2012-09-05 05:07:51.000000000 -0500
65 -@@ -247,7 +247,7 @@
66 -
67 - // TODO: have a shorter wait but loop, and check for system shutdown
68 - boost::xtime t;
69 -- boost::xtime_get (&t, boost::TIME_UTC);
70 -+ boost::xtime_get (&t, boost::TIME_UTC_);
71 - t.nsec += 50000000 ;
72 - m_Event.timed_wait (lock, t);
73 -
74 ---- vfe/vfesession.cpp.orig 2012-06-19 11:29:40.000000000 -0500
75 -+++ vfe/vfesession.cpp 2012-09-05 05:07:51.000000000 -0500
76 -@@ -967,7 +967,7 @@
77 - if (WaitTime > 0)
78 - {
79 - boost::xtime t;
80 -- boost::xtime_get (&t, boost::TIME_UTC);
81 -+ boost::xtime_get (&t, boost::TIME_UTC_);
82 - t.sec += WaitTime / 1000 ;
83 - t.nsec += (WaitTime % 1000) * 1000000 ;
84 - m_SessionEvent.timed_wait (lock, t);
85 -@@ -1034,7 +1034,7 @@
86 - // we can't call pause directly since it will result in a thread context
87 - // error. pause must be called from the context of the worker thread.
88 - boost::xtime t;
89 -- boost::xtime_get (&t, boost::TIME_UTC);
90 -+ boost::xtime_get (&t, boost::TIME_UTC_);
91 - t.sec += 3 ;
92 - m_RequestFlag = rqPauseRequest;
93 - if (m_RequestEvent.timed_wait(lock, t) == false)
94 -@@ -1057,7 +1057,7 @@
95 - // we can't call resume directly since it will result in a thread context
96 - // error. it must be called from the context of the worker thread.
97 - boost::xtime t;
98 -- boost::xtime_get (&t, boost::TIME_UTC);
99 -+ boost::xtime_get (&t, boost::TIME_UTC_);
100 - t.sec += 3 ;
101 - m_RequestFlag = rqResumeRequest;
102 - if (m_RequestEvent.timed_wait(lock, t) == false)
103 -@@ -1123,7 +1123,7 @@
104 - m_LastError = vfeNoError;
105 -
106 - boost::xtime t;
107 -- boost::xtime_get (&t, boost::TIME_UTC);
108 -+ boost::xtime_get (&t, boost::TIME_UTC_);
109 - t.sec += 3 ;
110 - #ifdef _DEBUG
111 - t.sec += 120;

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut