Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
f74f63a4
Kaydet (Commit)
f74f63a4
authored
Haz 27, 1995
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Initial port to CodeWarrior CFM68K support (mainly by disabling
unsupported features).
üst
eceb3e3f
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
24 additions
and
5 deletions
+24
-5
config.h
Mac/Include/config.h
+1
-1
macdefs.h
Mac/Include/macdefs.h
+3
-0
macglue.h
Mac/Include/macglue.h
+1
-1
config.c
Mac/Modules/config.c
+5
-1
macapplication.c
Mac/Python/macapplication.c
+4
-1
macgetargv.c
Mac/Python/macgetargv.c
+4
-1
macglue.c
Mac/Python/macglue.c
+4
-0
mwerks_cfm68k_config.h
Mac/mwerks/old/mwerks_cfm68k_config.h
+2
-0
No files found.
Mac/Include/config.h
Dosyayı görüntüle @
f74f63a4
...
...
@@ -13,7 +13,7 @@
#define HAVE_FOPENRF
#endif
#ifdef __CFM68K__
#ifdef
SYMANTEC
__CFM68K__
#define atof Py_AtoF
#define strtod Py_StrToD
#endif
...
...
Mac/Include/macdefs.h
Dosyayı görüntüle @
f74f63a4
...
...
@@ -13,6 +13,9 @@
#ifdef __MWERKS__
#include "errno_unix.h"
#include <Strings.h>
#define c2pstr C2PStr
#define p2cstr P2CStr
#endif
#include <errno.h>
#include <string.h>
...
...
Mac/Include/macglue.h
Dosyayı görüntüle @
f74f63a4
...
...
@@ -34,7 +34,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define HAVE_UNIVERSAL_HEADERS
#endif
#ifdef __CFM68K__
#ifdef
SYMANTEC
__CFM68K__
#pragma lib_export on
#endif
...
...
Mac/Modules/config.c
Dosyayı görüntüle @
f74f63a4
...
...
@@ -94,10 +94,14 @@ getversion()
#ifdef __MWERKS__
#ifdef __powerc
strcat
(
version
,
" [MW PPC compiler]"
);
#else
#ifdef __CFM68K__
strcat
(
version
,
" [MW CFM68K compiler]"
);
#else
strcat
(
version
,
" [MW 68K compiler]"
);
#endif
#endif
#endif
#ifdef THINK_C
#ifdef __SC__
strcat
(
version
,
" [Symantec Think C compiler]"
);
...
...
@@ -330,7 +334,7 @@ struct {
}
inittab
[]
=
{
{
"array"
,
initarray
},
#ifndef __CFM68K__
#ifndef
SYMANTEC
__CFM68K__
/* The math library seems mostly broken... */
{
"math"
,
initmath
},
#endif
...
...
Mac/Python/macapplication.c
Dosyayı görüntüle @
f74f63a4
...
...
@@ -24,12 +24,15 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Macintosh Applet Python main program */
#ifdef __CFM68K__
#ifdef
SYMANTEC
__CFM68K__
#pragma lib_export on
#endif
extern
void
PyMac_InitApplication
();
main
()
{
#if defined(__MWERKS__) && defined(__CFM68K__)
printf
(
"Hello, world!
\n
"
);
#endif
PyMac_InitApplication
();
}
Mac/Python/macgetargv.c
Dosyayı görüntüle @
f74f63a4
...
...
@@ -50,7 +50,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define HAVE_UNIVERSAL_HEADERS
#endif
#ifdef __CFM68K__
#ifdef
SYMANTEC
__CFM68K__
#pragma lib_export on
#endif
...
...
@@ -120,6 +120,9 @@ get_full_path (FSSpec *fss, char *buf)
char
tmpbuf
[
256
];
int
plen
;
#if defined(__MWERKS__) && defined(__CFM68K__)
return
-
1
;
/* get_folder_parent doesn't work */
#endif
fss_current
=
*
fss
;
plen
=
fss_current
.
name
[
0
];
memcpy
(
buf
,
&
fss_current
.
name
[
1
],
plen
);
...
...
Mac/Python/macglue.c
Dosyayı görüntüle @
f74f63a4
...
...
@@ -223,6 +223,9 @@ static void
scan_event_queue
(
flush
)
int
flush
;
{
#if defined(__MWERKS__) && defined(__CFM68K__)
return
;
/* No GetEvQHdr yet */
#else
register
EvQElPtr
q
;
q
=
(
EvQElPtr
)
GetEvQHdr
()
->
qHead
;
...
...
@@ -237,6 +240,7 @@ scan_event_queue(flush)
break
;
}
}
#endif
}
int
...
...
Mac/mwerks/old/mwerks_cfm68k_config.h
0 → 100644
Dosyayı görüntüle @
f74f63a4
#define HAVE_CONFIG_H
#define USE_MAC_DYNAMIC_LOADING
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment