[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Help m68k unstable compile libsigc++ test



Hi,

This must be the wrong list to ask this. Great.

I have a bug #130409 about buildfailures on m68k. I don't have a m68k,
nor do I know anyone who owns a m68k, or at least no one who haven't
converted their m68k to a fish-bowl. 

So please, if someone has a m68k somewhere that runs, and runs unstable,
could you please help me fix this configure libsigc++ detection program?
It compiles & runs fine on i386.

-----------------------------------------------------------------------
#include <stdio.h>
#include <sigc++/signal_system.h>

#ifdef SIGC_CXX_NAMESPACES
using namespace SigC;
#endif

int foo1(int i) 
  {
   return 1;
  }

int main(int argc,char **argv)
  {
   if (sigc_major_version!=$sigc_major_version ||
       sigc_minor_version!=$sigc_minor_version ||
       sigc_micro_version!=$sigc_micro_version)
     { printf("(%d.%d.%d) ",
         sigc_major_version,sigc_minor_version,sigc_micro_version);
       return 1;
     }
   Signal1<int,int> sig1;
   sig1.connect(slot(foo1));
   sig1(1);
   return 0;
  }
----------------------------------------------------------------------

TIA,
Sander.

-- 
| How many weeks are there in a light year?
| 1024D/08CEC94D - 34B3 3314 B146 E13C 70C8  9BDB D463 7E41 08CE C94D



Reply to: