HylaFAX The world's
most advanced open source fax server
|
|
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
[hylafax-users] GCC 4.3 compliance of hylafax 4.4.4
GEnts,
I had some troubles building the a.m. packagage for SuSE 11.0
The reason is in the configure script.
Please replace
#include "iostream.h"
int main(){ cout << "Hello World!" << endl; return 0;}
with
#include <iostream>
using namespace std;
int main(void)
{
cout << "Hello World!" << endl;
return 0;
}
see http://www.gnu.org/software/gcc/gcc-4.3/porting_to.php
Thanks to the opensuse buildservice mailing list for this hint.
Mx
____________________ HylaFAX(tm) Users Mailing List _______________________
To subscribe/unsubscribe, click http://lists.hylafax.org/cgi-bin/lsg2.cgi
On UNIX: mail -s unsubscribe hylafax-users-request@xxxxxxxxxxx < /dev/null
*To learn about commercial HylaFAX(tm) support, mail sales@xxxxxxxxx*