From 9df4442f0783f3aade89d4520a873164141fd012 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Wed, 31 Aug 2005 04:27:46 +0000 Subject: [PATCH] r10680: changes for fedora 4 --- ChangeLog | 3 +++ debian/changelog | 6 ++++++ include/timer.h | 4 ++++ src/backgroundsupr.cpp | 3 +++ 4 files changed, 16 insertions(+) diff --git a/ChangeLog b/ChangeLog index e0434c8..5031ea7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +Aug 22, 2005 Version 4.4.1 + * work-around for compilation problems on Fedora 4 and wxWin 2.4.2 + Aug 22, 2005 Version 4.4.0 * Changes in configure.ac for X.org compatibility with Debian Etch and FC4. May not be backward compatibility with XFree86. diff --git a/debian/changelog b/debian/changelog index 0b57147..1b5b61f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ctsim (4.4.1-1) unstable; urgency=low + + * New upstream (minor compilation fix for FC4) + + -- Kevin M. Rosenberg Wed, 31 Aug 2005 04:21:55 +0000 + ctsim (4.4.0-2) unstable; urgency=low * Track wxwin2.4 package name change to wx2.4-headers diff --git a/include/timer.h b/include/timer.h index b536a58..dd88d7b 100644 --- a/include/timer.h +++ b/include/timer.h @@ -28,6 +28,10 @@ #ifndef _TIMER_H #define _TIMER_H +// pragma line required for Fedora 4 and wxWin 2.4.2 +#if defined(__GNUG__) && !defined(__APPLE__) + #pragma interface "timer.h" +#endif #ifdef HAVE_CONFIG_H #include "config.h" diff --git a/src/backgroundsupr.cpp b/src/backgroundsupr.cpp index e26360c..f9b328f 100644 --- a/src/backgroundsupr.cpp +++ b/src/backgroundsupr.cpp @@ -31,6 +31,9 @@ #include "wx/wx.h" #endif +// pragma line required for Fedora 4 and wxWin 2.4.2 +#pragma implementation "timer.h" + #include "ct.h" #include "ctsim.h" #include "docs.h" -- 2.34.1