<div dir="ltr">I configured my mailboxes with Thunderbird and this post probably wasn&#39;t sent. I subscribed to the list with my gmail account, I hope this comes through now.<br><div class="gmail_quote"><br><br>Martin Gruner wrote:<br>

<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

[ &nbsp;0%] Building CXX object CMakeFiles/bibletime.dir/bibletime_automoc.o<br>
/opt/local/include/qt4-mac/QtCore/qglobal.h:747: error: ISO C++ does<br>
not support &#39;long long&#39;<br>
 &nbsp; &nbsp;<br>
</blockquote>
<br>
Hi Greg,<br>
<br>
as you can see this is an error in Qt&#39;s header files. Something is wrong there.<br>
<br>
mg<br>
<br>
 &nbsp;<br>
</blockquote>
Or the compiler is too strict. What c++ compiler and version do you have? Does Mac compiler have different set of default compiler switches?<br>
<br>
The problem is one of these lines:<br>
<br>
#if defined(Q_OS_WIN) &amp;&amp; !defined(Q_CC_GNU)<br>
# &nbsp;define Q_INT64_C(c) c ## i64 &nbsp; &nbsp;/* signed 64 bit constant */<br>
# &nbsp;define Q_UINT64_C(c) c ## ui64 &nbsp; /* unsigned 64 bit constant */<br>
typedef __int64 qint64; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;/* 64 bit signed */<br>
typedef unsigned __int64 quint64; &nbsp;/* 64 bit unsigned */<br>
#else<br>
# &nbsp;define Q_INT64_C(c) static_cast&lt;long long&gt;(c ## LL) &nbsp; &nbsp; /* signed 64 bit constant */<br>
# &nbsp;define Q_UINT64_C(c) static_cast&lt;unsigned long long&gt;(c ## ULL) /* unsigned 64 bit constant */<br>
typedef long long qint64; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; /* 64 bit signed */<br>
typedef unsigned long long quint64; /* 64 bit unsigned */<br>
#endif<br>
<br>
<br>
For me the g++ compiler switches &quot;-ansi -pedantic&quot; give the same error output with &quot;typedef long long qint64;int main(){}&quot; test program.<br><font color="#888888">
<br>
--Eeli Kaikkonen<br>
</font></div><br></div>