Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f9480ce

Browse files
committed
Changed ifdef __CFM68K__ to ifdef SYMANTEC__CFM68K__: CW has its own
unique set of ideosyncracies:-(
1 parent 464f62b commit f9480ce

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Include/allobjects.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
5151
#include "config.h"
5252
#endif
5353

54-
#ifdef __CFM68K__
54+
#ifdef SYMANTEC__CFM68K__
5555
#define UsingSharedLibs
5656
#endif
5757

@@ -61,7 +61,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
6161

6262
#include "myproto.h"
6363

64-
#ifdef __CFM68K__
64+
#ifdef SYMANTEC__CFM68K__
6565
#pragma lib_export on
6666
#endif
6767

Include/mymalloc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
5656
extern "C" {
5757
#endif
5858

59-
#ifdef __CFM68K__
59+
#ifdef SYMANTEC__CFM68K__
6060
#pragma lib_export on
6161
#endif
6262

Include/mymath.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
symbols doesn't quite work...
66
XXX Not sure now... Seems to be something else going on as well... */
77

8-
#ifdef __CFM68K__
8+
#ifdef SYMANTEC__CFM68K__
99
#pragma lib_export off
1010
#endif
1111

1212
#include <math.h>
1313

14-
#ifdef __CFM68K__
14+
#ifdef SYMANTEC__CFM68K__
1515
#pragma lib_export on
1616
#endif

0 commit comments

Comments
 (0)