Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
6103ab1d
Commit
6103ab1d
authored
Oct 24, 2009
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove AtheOS support, as per PEP 11 (which claims that all code was removed in Python 3.0).
parent
194fcf2d
Changes
16
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
31 additions
and
1693 deletions
+31
-1693
Doc/library/sys.rst
Doc/library/sys.rst
+0
-1
Lib/distutils/command/build_ext.py
Lib/distutils/command/build_ext.py
+2
-18
Lib/plat-atheos/IN.py
Lib/plat-atheos/IN.py
+0
-944
Lib/plat-atheos/TYPES.py
Lib/plat-atheos/TYPES.py
+0
-142
Lib/plat-atheos/regen
Lib/plat-atheos/regen
+0
-3
Lib/test/regrtest.py
Lib/test/regrtest.py
+0
-13
Lib/test/test_fcntl.py
Lib/test/test_fcntl.py
+5
-8
Lib/test/test_file.py
Lib/test/test_file.py
+1
-2
Lib/test/test_fileio.py
Lib/test/test_fileio.py
+0
-2
Python/dynload_atheos.c
Python/dynload_atheos.c
+0
-47
Python/thread.c
Python/thread.c
+0
-4
Python/thread_atheos.h
Python/thread_atheos.h
+0
-300
Tools/scripts/h2py.py
Tools/scripts/h2py.py
+1
-7
configure
configure
+16
-172
configure.in
configure.in
+2
-16
setup.py
setup.py
+4
-14
No files found.
Doc/library/sys.rst
View file @
6103ab1d
...
...
@@ -576,7 +576,6 @@ always available.
Mac OS X ``'darwin'``
OS/2 ``'os2'``
OS/2 EMX ``'os2emx'``
AtheOS ``'atheos'``
================ ===========================
...
...
Lib/distutils/command/build_ext.py
View file @
6103ab1d
...
...
@@ -262,9 +262,9 @@ class build_ext(Command):
if
os
.
name
==
'os2'
:
self
.
library_dirs
.
append
(
os
.
path
.
join
(
sys
.
exec_prefix
,
'Config'
))
# for extensions under Cygwin
and AtheOS
Python's library directory must be
# for extensions under Cygwin Python's library directory must be
# appended to library_dirs
if
sys
.
platform
[:
6
]
==
'cygwin'
or
sys
.
platform
[:
6
]
==
'atheos'
:
if
sys
.
platform
[:
6
]
==
'cygwin'
:
if
sys
.
executable
.
startswith
(
os
.
path
.
join
(
sys
.
exec_prefix
,
"bin"
)):
# building third party extensions
self
.
library_dirs
.
append
(
os
.
path
.
join
(
sys
.
prefix
,
"lib"
,
...
...
@@ -776,22 +776,6 @@ class build_ext(Command):
# don't extend ext.libraries, it may be shared with other
# extensions, it is a reference to the original list
return
ext
.
libraries
+
[
pythonlib
]
elif
sys
.
platform
[:
6
]
==
"atheos"
:
from
distutils
import
sysconfig
template
=
"python%d.%d"
pythonlib
=
(
template
%
(
sys
.
hexversion
>>
24
,
(
sys
.
hexversion
>>
16
)
&
0xff
))
# Get SHLIBS from Makefile
extra
=
[]
for
lib
in
sysconfig
.
get_config_var
(
'SHLIBS'
).
split
():
if
lib
.
startswith
(
'-l'
):
extra
.
append
(
lib
[
2
:])
else
:
extra
.
append
(
lib
)
# don't extend ext.libraries, it may be shared with other
# extensions, it is a reference to the original list
return
ext
.
libraries
+
[
pythonlib
,
"m"
]
+
extra
elif
sys
.
platform
==
'darwin'
:
# Don't use the default code below
return
ext
.
libraries
...
...
Lib/plat-atheos/IN.py
deleted
100644 → 0
View file @
194fcf2d
This diff is collapsed.
Click to expand it.
Lib/plat-atheos/TYPES.py
deleted
100644 → 0
View file @
194fcf2d
# Generated by h2py from /include/sys/types.h
_SYS_TYPES_H
=
1
# Included from features.h
_FEATURES_H
=
1
__USE_ANSI
=
1
__FAVOR_BSD
=
1
_ISOC9X_SOURCE
=
1
_POSIX_SOURCE
=
1
_POSIX_C_SOURCE
=
199506
_XOPEN_SOURCE
=
500
_XOPEN_SOURCE_EXTENDED
=
1
_LARGEFILE64_SOURCE
=
1
_BSD_SOURCE
=
1
_SVID_SOURCE
=
1
_BSD_SOURCE
=
1
_SVID_SOURCE
=
1
__USE_ISOC9X
=
1
_POSIX_SOURCE
=
1
_POSIX_C_SOURCE
=
2
_POSIX_C_SOURCE
=
199506
__USE_POSIX
=
1
__USE_POSIX2
=
1
__USE_POSIX199309
=
1
__USE_POSIX199506
=
1
__USE_XOPEN
=
1
__USE_XOPEN_EXTENDED
=
1
__USE_UNIX98
=
1
_LARGEFILE_SOURCE
=
1
__USE_XOPEN_EXTENDED
=
1
__USE_LARGEFILE
=
1
__USE_LARGEFILE64
=
1
__USE_FILE_OFFSET64
=
1
__USE_MISC
=
1
__USE_BSD
=
1
__USE_SVID
=
1
__USE_GNU
=
1
__USE_REENTRANT
=
1
__STDC_IEC_559__
=
1
__STDC_IEC_559_COMPLEX__
=
1
__GNU_LIBRARY__
=
6
__GLIBC__
=
2
__GLIBC_MINOR__
=
1
# Included from sys/cdefs.h
_SYS_CDEFS_H
=
1
def
__PMT
(
args
):
return
args
def
__P
(
args
):
return
args
def
__PMT
(
args
):
return
args
def
__P
(
args
):
return
()
def
__PMT
(
args
):
return
()
def
__STRING
(
x
):
return
#x
def
__STRING
(
x
):
return
"x"
def
__ASMNAME
(
cname
):
return
__ASMNAME2
(
__USER_LABEL_PREFIX__
,
cname
)
def
__attribute__
(
xyz
):
return
__USE_EXTERN_INLINES
=
1
# Included from gnu/stubs.h
# Included from bits/types.h
_BITS_TYPES_H
=
1
__FD_SETSIZE
=
1024
def
__FDELT
(
d
):
return
((
d
)
/
__NFDBITS
)
# Included from bits/pthreadtypes.h
# Included from time.h
_TIME_H
=
1
# Included from bits/time.h
# Included from posix/time.h
# Included from posix/types.h
MAXHOSTNAMELEN
=
64
FD_SETSIZE
=
1024
CLOCKS_PER_SEC
=
1000000
_BITS_TIME_H
=
1
CLOCKS_PER_SEC
=
1000000
CLK_TCK
=
100
_STRUCT_TIMEVAL
=
1
CLK_TCK
=
CLOCKS_PER_SEC
__clock_t_defined
=
1
__time_t_defined
=
1
__timespec_defined
=
1
def
__isleap
(
year
):
return
\
__BIT_TYPES_DEFINED__
=
1
# Included from endian.h
_ENDIAN_H
=
1
__LITTLE_ENDIAN
=
1234
__BIG_ENDIAN
=
4321
__PDP_ENDIAN
=
3412
# Included from bits/endian.h
__BYTE_ORDER
=
__LITTLE_ENDIAN
__FLOAT_WORD_ORDER
=
__BYTE_ORDER
LITTLE_ENDIAN
=
__LITTLE_ENDIAN
BIG_ENDIAN
=
__BIG_ENDIAN
PDP_ENDIAN
=
__PDP_ENDIAN
BYTE_ORDER
=
__BYTE_ORDER
# Included from sys/select.h
_SYS_SELECT_H
=
1
# Included from bits/select.h
def
__FD_ZERO
(
fdsp
):
return
\
def
__FD_ZERO
(
set
):
return
\
# Included from bits/sigset.h
_SIGSET_H_types
=
1
_SIGSET_H_fns
=
1
def
__sigmask
(
sig
):
return
\
def
__sigemptyset
(
set
):
return
\
def
__sigfillset
(
set
):
return
\
def
__sigisemptyset
(
set
):
return
\
FD_SETSIZE
=
__FD_SETSIZE
def
FD_ZERO
(
fdsetp
):
return
__FD_ZERO
(
fdsetp
)
# Included from sys/sysmacros.h
_SYS_SYSMACROS_H
=
1
def
major
(
dev
):
return
(
((
(
dev
)
>>
8
)
&
0xff
))
def
minor
(
dev
):
return
(
((
dev
)
&
0xff
))
Lib/plat-atheos/regen
deleted
100644 → 0
View file @
194fcf2d
#! /bin/sh
set
-v
python
$EXE
../../Tools/scripts/h2py.py
-i
'\(u_long\)'
-i
'\(uint32_t\)'
-i
'\(int\)'
-i
'\(unsigned int\)'
/include/netinet/in.h /include/sys/types.h
Lib/test/regrtest.py
View file @
6103ab1d
...
...
@@ -1188,19 +1188,6 @@ _expectations = {
test_zipfile
test_zlib
""",
'atheos':
"""
test_curses
test_dbm_gnu
test_epoll
test_largefile
test_locale
test_kqueue
test_mhlib
test_mmap
test_poll
test_resource
""",
'cygwin':
"""
test_curses
...
...
Lib/test/test_fcntl.py
View file @
6103ab1d
...
...
@@ -16,15 +16,12 @@ fcntl = import_module('fcntl')
# TODO - Write tests for flock() and lockf().
def
get_lockdata
():
if
sys
.
platform
.
startswith
(
'atheos'
):
start_len
=
"qq"
try
:
os
.
O_LARGEFILE
except
AttributeError
:
start_len
=
"ll"
else
:
try
:
os
.
O_LARGEFILE
except
AttributeError
:
start_len
=
"ll"
else
:
start_len
=
"qq"
start_len
=
"qq"
if
sys
.
platform
in
(
'netbsd1'
,
'netbsd2'
,
'netbsd3'
,
'Darwin1.2'
,
'darwin'
,
...
...
Lib/test/test_file.py
View file @
6103ab1d
...
...
@@ -106,8 +106,7 @@ class AutoFileTests(unittest.TestCase):
(
'writelines'
,
([],)),
(
'__iter__'
,
()),
]
if
not
sys
.
platform
.
startswith
(
'atheos'
):
methods
.
append
((
'truncate'
,
()))
methods
.
append
((
'truncate'
,
()))
# __exit__ should close the file
self
.
f
.
__exit__
(
None
,
None
,
None
)
...
...
Lib/test/test_fileio.py
View file @
6103ab1d
...
...
@@ -96,8 +96,6 @@ class AutoFileTests(unittest.TestCase):
methods
=
[
'fileno'
,
'isatty'
,
'read'
,
'readinto'
,
'seek'
,
'tell'
,
'truncate'
,
'write'
,
'seekable'
,
'readable'
,
'writable'
]
if
sys
.
platform
.
startswith
(
'atheos'
):
methods
.
remove
(
'truncate'
)
self
.
f
.
close
()
self
.
assertTrue
(
self
.
f
.
closed
)
...
...
Python/dynload_atheos.c
deleted
100644 → 0
View file @
194fcf2d
/* Support for dynamic loading of extension modules */
#include <atheos/image.h>
#include <errno.h>
#include "Python.h"
#include "importdl.h"
const
struct
filedescr
_PyImport_DynLoadFiletab
[]
=
{
{
".so"
,
"rb"
,
C_EXTENSION
},
{
"module.so"
,
"rb"
,
C_EXTENSION
},
{
0
,
0
}
};
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
fqname
,
const
char
*
shortname
,
const
char
*
pathname
,
FILE
*
fp
)
{
void
*
p
;
int
lib
;
char
funcname
[
258
];
if
(
Py_VerboseFlag
)
printf
(
"load_library %s
\n
"
,
pathname
);
lib
=
load_library
(
pathname
,
0
);
if
(
lib
<
0
)
{
char
buf
[
512
];
if
(
Py_VerboseFlag
)
perror
(
pathname
);
PyOS_snprintf
(
buf
,
sizeof
(
buf
),
"Failed to load %.200s: %.200s"
,
pathname
,
strerror
(
errno
));
PyErr_SetString
(
PyExc_ImportError
,
buf
);
return
NULL
;
}
PyOS_snprintf
(
funcname
,
sizeof
(
funcname
),
"PyInit_%.200s"
,
shortname
);
if
(
Py_VerboseFlag
)
printf
(
"get_symbol_address %s
\n
"
,
funcname
);
if
(
get_symbol_address
(
lib
,
funcname
,
-
1
,
&
p
)
<
0
)
{
p
=
NULL
;
if
(
Py_VerboseFlag
)
perror
(
funcname
);
}
return
(
dl_funcptr
)
p
;
}
Python/thread.c
View file @
6103ab1d
...
...
@@ -137,10 +137,6 @@ static size_t _pythread_stacksize = 0;
#include "thread_plan9.h"
#endif
#ifdef ATHEOS_THREADS
#include "thread_atheos.h"
#endif
/*
#ifdef FOOBAR_THREADS
#include "thread_foobar.h"
...
...
Python/thread_atheos.h
deleted
100644 → 0
View file @
194fcf2d
/* Threading for AtheOS.
Based on thread_beos.h. */
#include <atheos/threads.h>
#include <atheos/semaphore.h>
#include <atheos/atomic.h>
#include <errno.h>
#include <string.h>
/* Missing decl from threads.h */
extern
int
exit_thread
(
int
);
/* Undefine FASTLOCK to play with simple semaphores. */
#define FASTLOCK
#ifdef FASTLOCK
/* Use an atomic counter and a semaphore for maximum speed. */
typedef
struct
fastmutex
{
sem_id
sem
;
atomic_t
count
;
}
fastmutex_t
;
static
int
fastmutex_create
(
const
char
*
name
,
fastmutex_t
*
mutex
);
static
int
fastmutex_destroy
(
fastmutex_t
*
mutex
);
static
int
fastmutex_lock
(
fastmutex_t
*
mutex
);
static
int
fastmutex_timedlock
(
fastmutex_t
*
mutex
,
bigtime_t
timeout
);
static
int
fastmutex_unlock
(
fastmutex_t
*
mutex
);
static
int
fastmutex_create
(
const
char
*
name
,
fastmutex_t
*
mutex
)
{
mutex
->
count
=
0
;
mutex
->
sem
=
create_semaphore
(
name
,
0
,
0
);
return
(
mutex
->
sem
<
0
)
?
-
1
:
0
;
}
static
int
fastmutex_destroy
(
fastmutex_t
*
mutex
)
{
if
(
fastmutex_timedlock
(
mutex
,
0
)
==
0
||
errno
==
EWOULDBLOCK
)
{
return
delete_semaphore
(
mutex
->
sem
);
}
return
0
;
}
static
int
fastmutex_lock
(
fastmutex_t
*
mutex
)
{
atomic_t
prev
=
atomic_add
(
&
mutex
->
count
,
1
);
if
(
prev
>
0
)
return
lock_semaphore
(
mutex
->
sem
);
return
0
;
}
static
int
fastmutex_timedlock
(
fastmutex_t
*
mutex
,
bigtime_t
timeout
)
{
atomic_t
prev
=
atomic_add
(
&
mutex
->
count
,
1
);
if
(
prev
>
0
)
return
lock_semaphore_x
(
mutex
->
sem
,
1
,
0
,
timeout
);
return
0
;
}
static
int
fastmutex_unlock
(
fastmutex_t
*
mutex
)
{
atomic_t
prev
=
atomic_add
(
&
mutex
->
count
,
-
1
);
if
(
prev
>
1
)
return
unlock_semaphore
(
mutex
->
sem
);
return
0
;
}
#endif
/* FASTLOCK */
/*
* Initialization.
*
*/
static
void
PyThread__init_thread
(
void
)
{
/* Do nothing. */
return
;
}
/*
* Thread support.
*
*/
static
atomic_t
thread_count
=
0
;
long
PyThread_start_new_thread
(
void
(
*
func
)
(
void
*
),
void
*
arg
)
{
status_t
success
=
-
1
;
thread_id
tid
;
char
name
[
OS_NAME_LENGTH
];
atomic_t
this_thread
;
dprintf
((
"PyThread_start_new_thread called
\n
"
));
this_thread
=
atomic_add
(
&
thread_count
,
1
);
PyOS_snprintf
(
name
,
sizeof
(
name
),
"python thread (%d)"
,
this_thread
);
tid
=
spawn_thread
(
name
,
func
,
NORMAL_PRIORITY
,
0
,
arg
);
if
(
tid
<
0
)
{
dprintf
((
"PyThread_start_new_thread spawn_thread failed: %s
\n
"
,
strerror
(
errno
)));
}
else
{
success
=
resume_thread
(
tid
);
if
(
success
<
0
)
{
dprintf
((
"PyThread_start_new_thread resume_thread failed: %s
\n
"
,
strerror
(
errno
)));
}
}
return
(
success
<
0
?
-
1
:
tid
);
}
long
PyThread_get_thread_ident
(
void
)
{
return
get_thread_id
(
NULL
);
}
static
void
do_PyThread_exit_thread
(
int
no_cleanup
)
{
dprintf
((
"PyThread_exit_thread called
\n
"
));
/* Thread-safe way to read a variable without a mutex: */
if
(
atomic_add
(
&
thread_count
,
0
)
==
0
)
{
/* No threads around, so exit main(). */
if
(
no_cleanup
)
_exit
(
0
);
else
exit
(
0
);
}
else
{
/* We're a thread */
exit_thread
(
0
);
}
}
void
PyThread_exit_thread
(
void
)
{
do_PyThread_exit_thread
(
0
);
}
void
PyThread__exit_thread
(
void
)
{
do_PyThread_exit_thread
(
1
);
}
#ifndef NO_EXIT_PROG
static
void
do_PyThread_exit_prog
(
int
status
,
int
no_cleanup
)
{
dprintf
((
"PyThread_exit_prog(%d) called
\n
"
,
status
));
/* No need to do anything, the threads get torn down if main()exits. */
if
(
no_cleanup
)
_exit
(
status
);
else
exit
(
status
);
}
void
PyThread_exit_prog
(
int
status
)
{
do_PyThread_exit_prog
(
status
,
0
);
}
void
PyThread__exit_prog
(
int
status
)
{
do_PyThread_exit_prog
(
status
,
1
);
}
#endif
/* NO_EXIT_PROG */
/*
* Lock support.
*
*/
static
atomic_t
lock_count
=
0
;
PyThread_type_lock
PyThread_allocate_lock
(
void
)
{
#ifdef FASTLOCK
fastmutex_t
*
lock
;
#else
sem_id
sema
;
#endif
char
name
[
OS_NAME_LENGTH
];
atomic_t
this_lock
;
dprintf
((
"PyThread_allocate_lock called
\n
"
));
#ifdef FASTLOCK
lock
=
(
fastmutex_t
*
)
malloc
(
sizeof
(
fastmutex_t
));
if
(
lock
==
NULL
)
{
dprintf
((
"PyThread_allocate_lock failed: out of memory
\n
"
));
return
(
PyThread_type_lock
)
NULL
;
}
#endif
this_lock
=
atomic_add
(
&
lock_count
,
1
);
PyOS_snprintf
(
name
,
sizeof
(
name
),
"python lock (%d)"
,
this_lock
);
#ifdef FASTLOCK
if
(
fastmutex_create
(
name
,
lock
)
<
0
)
{
dprintf
((
"PyThread_allocate_lock failed: %s
\n
"
,
strerror
(
errno
)));
free
(
lock
);
lock
=
NULL
;
}
dprintf
((
"PyThread_allocate_lock()-> %p
\n
"
,
lock
));
return
(
PyThread_type_lock
)
lock
;
#else
sema
=
create_semaphore
(
name
,
1
,
0
);
if
(
sema
<
0
)
{
dprintf
((
"PyThread_allocate_lock failed: %s
\n
"
,
strerror
(
errno
)));
sema
=
0
;
}
dprintf
((
"PyThread_allocate_lock()-> %p
\n
"
,
sema
));
return
(
PyThread_type_lock
)
sema
;
#endif
}
void
PyThread_free_lock
(
PyThread_type_lock
lock
)
{
dprintf
((
"PyThread_free_lock(%p) called
\n
"
,
lock
));
#ifdef FASTLOCK
if
(
fastmutex_destroy
((
fastmutex_t
*
)
lock
)
<
0
)
{
dprintf
((
"PyThread_free_lock(%p) failed: %s
\n
"
,
lock
,
strerror
(
errno
)));
}
free
(
lock
);
#else
if
(
delete_semaphore
((
sem_id
)
lock
)
<
0
)
{
dprintf
((
"PyThread_free_lock(%p) failed: %s
\n
"
,
lock
,
strerror
(
errno
)));
}
#endif
}
int
PyThread_acquire_lock
(
PyThread_type_lock
lock
,
int
waitflag
)
{
int
retval
;
dprintf
((
"PyThread_acquire_lock(%p, %d) called
\n
"
,
lock
,
waitflag
));
#ifdef FASTLOCK
if
(
waitflag
)
retval
=
fastmutex_lock
((
fastmutex_t
*
)
lock
);
else
retval
=
fastmutex_timedlock
((
fastmutex_t
*
)
lock
,
0
);
#else
if
(
waitflag
)
retval
=
lock_semaphore
((
sem_id
)
lock
);
else
retval
=
lock_semaphore_x
((
sem_id
)
lock
,
1
,
0
,
0
);
#endif
if
(
retval
<
0
)
{
dprintf
((
"PyThread_acquire_lock(%p, %d) failed: %s
\n
"
,
lock
,
waitflag
,
strerror
(
errno
)));
}
dprintf
((
"PyThread_acquire_lock(%p, %d)-> %d
\n
"
,
lock
,
waitflag
,
retval
));
return
retval
<
0
?
0
:
1
;
}
void
PyThread_release_lock
(
PyThread_type_lock
lock
)
{
dprintf
((
"PyThread_release_lock(%p) called
\n
"
,
lock
));
#ifdef FASTLOCK
if
(
fastmutex_unlock
((
fastmutex_t
*
)
lock
)
<
0
)
{
dprintf
((
"PyThread_release_lock(%p) failed: %s
\n
"
,
lock
,
strerror
(
errno
)));
}
#else
if
(
unlock_semaphore
((
sem_id
)
lock
)
<
0
)
{
dprintf
((
"PyThread_release_lock(%p) failed: %s
\n
"
,
lock
,
strerror
(
errno
)));
}
#endif
}
Tools/scripts/h2py.py
View file @
6103ab1d
...
...
@@ -49,13 +49,7 @@ except KeyError:
try:
searchdirs=os.environ['
INCLUDE
'].split('
;
')
except KeyError:
try:
if sys.platform.startswith("atheos"):
searchdirs=os.environ['
C_INCLUDE_PATH
'].split('
:
')
else:
raise KeyError
except KeyError:
searchdirs=['
/
usr
/
include
']
searchdirs=['
/
usr
/
include
']
def main():
global filedict
...
...
configure
View file @
6103ab1d
#! /bin/sh
# From configure.in Revision: 74
745
.
# From configure.in Revision: 74
979
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 3.2.
#
...
...
@@ -2066,7 +2066,6 @@ then
case
$MACHDEP
in
cygwin
*
)
MACHDEP
=
"cygwin"
;;
darwin
*
)
MACHDEP
=
"darwin"
;;
atheos
*
)
MACHDEP
=
"atheos"
;;
irix646
)
MACHDEP
=
"irix6"
;;
''
)
MACHDEP
=
"unknown"
;;
esac
...
...
@@ -3802,7 +3801,7 @@ else
{
echo
"
$as_me
:
$LINENO
: result: no"
>
&5
echo
"
${
ECHO_T
}
no"
>
&6
;
}
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
...
...
@@ -3972,7 +3971,7 @@ fi
if
test
-z
"
$enable_shared
"
then
case
$ac_sys_system
in
CYGWIN
*
|
atheos
*
)
CYGWIN
*
)
enable_shared
=
"yes"
;;
*
)
enable_shared
=
"no"
;;
...
...
@@ -4108,11 +4107,6 @@ _ACEOF
BLDLIBRARY
=
'-rpath $(LIBDIR) -L. -lpython$(VERSION)'
RUNSHARED
=
LD_LIBRARY_PATH
=
`
pwd
`
:
${
LD_LIBRARY_PATH
}
;;
atheos
*
)
LDLIBRARY
=
'libpython$(VERSION).so'
BLDLIBRARY
=
'-L. -lpython$(VERSION)'
RUNSHARED
=
DLL_PATH
=
`
pwd
`
:
${
DLL_PATH
:-
/atheos/sys/libs
:/atheos/autolnk/lib
}
;;
Darwin
*
)
LDLIBRARY
=
'libpython$(VERSION).dylib'
BLDLIBRARY
=
'-L. -lpython$(VERSION)'
...
...
@@ -4451,7 +4445,6 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
if
test
-z
"
$LN
"
;
then
case
$ac_sys_system
in
CYGWIN
*
)
LN
=
"ln -s"
;;
atheos
*
)
LN
=
"ln -s"
;;
*
)
LN
=
ln
;;
esac
fi
...
...
@@ -5355,7 +5348,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
else
ac_cv_header_stdc
=
no
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
fi
...
...
@@ -5376,7 +5369,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
else
ac_cv_header_stdc
=
no
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
fi
...
...
@@ -6474,7 +6467,7 @@ _ACEOF
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
{
echo
"
$as_me
:
$LINENO
: result:
$was_it_defined
"
>
&5
echo
"
${
ECHO_T
}
$was_it_defined
"
>
&6
;
}
...
...
@@ -7004,7 +6997,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
else
ac_cv_type_uid_t
=
no
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
fi
{
echo
"
$as_me
:
$LINENO
: result:
$ac_cv_type_uid_t
"
>
&5
...
...
@@ -14696,7 +14689,6 @@ then
fi
;;
SCO_SV
*
)
LDSHARED
=
'$(CC) -Wl,-G,-Bexport'
;;
CYGWIN
*
)
LDSHARED
=
"gcc -shared -Wl,--enable-auto-image-base"
;;
atheos
*
)
LDSHARED
=
"gcc -shared"
;;
*
)
LDSHARED
=
"ld"
;;
esac
fi
...
...
@@ -14737,7 +14729,6 @@ then
*
gcc
*
)
CCSHARED
=
"-shared"
;;
*
)
CCSHARED
=
""
;;
esac
;;
atheos
*
)
CCSHARED
=
"-fPIC"
;;
esac
fi
{
echo
"
$as_me
:
$LINENO
: result:
$CCSHARED
"
>
&5
...
...
@@ -15548,7 +15539,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
else
unistd_defines_pthreads
=
no
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
{
echo
"
$as_me
:
$LINENO
: result:
$unistd_defines_pthreads
"
>
&5
echo
"
${
ECHO_T
}
$unistd_defines_pthreads
"
>
&6
;
}
...
...
@@ -16022,149 +16013,6 @@ _ACEOF
THREADOBJ
=
"Python/thread.o"
else
if
test
"
${
ac_cv_header_atheos_threads_h
+set
}
"
=
set
;
then
{
echo
"
$as_me
:
$LINENO
: checking for atheos/threads.h"
>
&5
echo
$ECHO_N
"checking for atheos/threads.h...
$ECHO_C
"
>
&6
;
}
if
test
"
${
ac_cv_header_atheos_threads_h
+set
}
"
=
set
;
then
echo
$ECHO_N
"(cached)
$ECHO_C
"
>
&6
fi
{
echo
"
$as_me
:
$LINENO
: result:
$ac_cv_header_atheos_threads_h
"
>
&5
echo
"
${
ECHO_T
}
$ac_cv_header_atheos_threads_h
"
>
&6
;
}
else
# Is the header compilable?
{
echo
"
$as_me
:
$LINENO
: checking atheos/threads.h usability"
>
&5
echo
$ECHO_N
"checking atheos/threads.h usability...
$ECHO_C
"
>
&6
;
}
cat
>
conftest.
$ac_ext
<<
_ACEOF
/* confdefs.h. */
_ACEOF
cat
confdefs.h
>>
conftest.
$ac_ext
cat
>>
conftest.
$ac_ext
<<
_ACEOF
/* end confdefs.h. */
$ac_includes_default
#include <atheos/threads.h>
_ACEOF
rm
-f
conftest.
$ac_objext
if
{
(
ac_try
=
"
$ac_compile
"
case
"((
$ac_try
"
in
*
\"
*
|
*
\`
*
|
*
\\
*
)
ac_try_echo
=
\$
ac_try
;;
*
)
ac_try_echo
=
$ac_try
;;
esac
eval
"echo
\"\$
as_me:
$LINENO
:
$ac_try_echo
\"
"
)
>
&5
(
eval
"
$ac_compile
"
)
2>conftest.er1
ac_status
=
$?
grep
-v
'^ *+'
conftest.er1
>
conftest.err
rm
-f
conftest.er1
cat
conftest.err
>
&5
echo
"
$as_me
:
$LINENO
:
\$
? =
$ac_status
"
>
&5
(
exit
$ac_status
)
;
}
&&
{
test
-z
"
$ac_c_werror_flag
"
||
test
!
-s
conftest.err
}
&&
test
-s
conftest.
$ac_objext
;
then
ac_header_compiler
=
yes
else
echo
"
$as_me
: failed program was:"
>
&5
sed
's/^/| /'
conftest.
$ac_ext
>
&5
ac_header_compiler
=
no
fi
rm
-f
core conftest.err conftest.
$ac_objext
conftest.
$ac_ext
{
echo
"
$as_me
:
$LINENO
: result:
$ac_header_compiler
"
>
&5
echo
"
${
ECHO_T
}
$ac_header_compiler
"
>
&6
;
}
# Is the header present?
{
echo
"
$as_me
:
$LINENO
: checking atheos/threads.h presence"
>
&5
echo
$ECHO_N
"checking atheos/threads.h presence...
$ECHO_C
"
>
&6
;
}
cat
>
conftest.
$ac_ext
<<
_ACEOF
/* confdefs.h. */
_ACEOF
cat
confdefs.h
>>
conftest.
$ac_ext
cat
>>
conftest.
$ac_ext
<<
_ACEOF
/* end confdefs.h. */
#include <atheos/threads.h>
_ACEOF
if
{
(
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
"
case
"((
$ac_try
"
in
*
\"
*
|
*
\`
*
|
*
\\
*
)
ac_try_echo
=
\$
ac_try
;;
*
)
ac_try_echo
=
$ac_try
;;
esac
eval
"echo
\"\$
as_me:
$LINENO
:
$ac_try_echo
\"
"
)
>
&5
(
eval
"
$ac_cpp
conftest.
$ac_ext
"
)
2>conftest.er1
ac_status
=
$?
grep
-v
'^ *+'
conftest.er1
>
conftest.err
rm
-f
conftest.er1
cat
conftest.err
>
&5
echo
"
$as_me
:
$LINENO
:
\$
? =
$ac_status
"
>
&5
(
exit
$ac_status
)
;
}
>
/dev/null
&&
{
test
-z
"
$ac_c_preproc_warn_flag$ac_c_werror_flag
"
||
test
!
-s
conftest.err
}
;
then
ac_header_preproc
=
yes
else
echo
"
$as_me
: failed program was:"
>
&5
sed
's/^/| /'
conftest.
$ac_ext
>
&5
ac_header_preproc
=
no
fi
rm
-f
conftest.err conftest.
$ac_ext
{
echo
"
$as_me
:
$LINENO
: result:
$ac_header_preproc
"
>
&5
echo
"
${
ECHO_T
}
$ac_header_preproc
"
>
&6
;
}
# So? What about this header?
case
$ac_header_compiler
:
$ac_header_preproc
:
$ac_c_preproc_warn_flag
in
yes
:no:
)
{
echo
"
$as_me
:
$LINENO
: WARNING: atheos/threads.h: accepted by the compiler, rejected by the preprocessor!"
>
&5
echo
"
$as_me
: WARNING: atheos/threads.h: accepted by the compiler, rejected by the preprocessor!"
>
&2
;
}
{
echo
"
$as_me
:
$LINENO
: WARNING: atheos/threads.h: proceeding with the compiler's result"
>
&5
echo
"
$as_me
: WARNING: atheos/threads.h: proceeding with the compiler's result"
>
&2
;
}
ac_header_preproc
=
yes
;;
no:yes:
*
)
{
echo
"
$as_me
:
$LINENO
: WARNING: atheos/threads.h: present but cannot be compiled"
>
&5
echo
"
$as_me
: WARNING: atheos/threads.h: present but cannot be compiled"
>
&2
;
}
{
echo
"
$as_me
:
$LINENO
: WARNING: atheos/threads.h: check for missing prerequisite headers?"
>
&5
echo
"
$as_me
: WARNING: atheos/threads.h: check for missing prerequisite headers?"
>
&2
;
}
{
echo
"
$as_me
:
$LINENO
: WARNING: atheos/threads.h: see the Autoconf documentation"
>
&5
echo
"
$as_me
: WARNING: atheos/threads.h: see the Autoconf documentation"
>
&2
;
}
{
echo
"
$as_me
:
$LINENO
: WARNING: atheos/threads.h: section
\"
Present But Cannot Be Compiled
\"
"
>
&5
echo
"
$as_me
: WARNING: atheos/threads.h: section
\"
Present But Cannot Be Compiled
\"
"
>
&2
;
}
{
echo
"
$as_me
:
$LINENO
: WARNING: atheos/threads.h: proceeding with the preprocessor's result"
>
&5
echo
"
$as_me
: WARNING: atheos/threads.h: proceeding with the preprocessor's result"
>
&2
;
}
{
echo
"
$as_me
:
$LINENO
: WARNING: atheos/threads.h: in the future, the compiler will take precedence"
>
&5
echo
"
$as_me
: WARNING: atheos/threads.h: in the future, the compiler will take precedence"
>
&2
;
}
(
cat
<<
\
_ASBOX
## -------------------------------------- ##
## Report this to http://bugs.python.org/ ##
## -------------------------------------- ##
_ASBOX
)
|
sed
"s/^/
$as_me
: WARNING: /"
>
&2
;;
esac
{
echo
"
$as_me
:
$LINENO
: checking for atheos/threads.h"
>
&5
echo
$ECHO_N
"checking for atheos/threads.h...
$ECHO_C
"
>
&6
;
}
if
test
"
${
ac_cv_header_atheos_threads_h
+set
}
"
=
set
;
then
echo
$ECHO_N
"(cached)
$ECHO_C
"
>
&6
else
ac_cv_header_atheos_threads_h
=
$ac_header_preproc
fi
{
echo
"
$as_me
:
$LINENO
: result:
$ac_cv_header_atheos_threads_h
"
>
&5
echo
"
${
ECHO_T
}
$ac_cv_header_atheos_threads_h
"
>
&6
;
}
fi
if
test
$ac_cv_header_atheos_threads_h
=
yes
;
then
cat
>>
confdefs.h
<<
\
_ACEOF
#define WITH_THREAD 1
_ACEOF
cat
>>
confdefs.h
<<
\
_ACEOF
#define ATHEOS_THREADS 1
_ACEOF
THREADOBJ
=
"Python/thread.o"
else
{
echo
"
$as_me
:
$LINENO
: checking for pthread_create in -lpthreads"
>
&5
echo
$ECHO_N
"checking for pthread_create in -lpthreads...
$ECHO_C
"
>
&6
;
}
if
test
"
${
ac_cv_lib_pthreads_pthread_create
+set
}
"
=
set
;
then
...
...
@@ -16459,9 +16307,6 @@ fi
fi
fi
fi
fi
...
...
@@ -17016,7 +16861,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
$EGREP
"yes"
>
/dev/null 2>&1
;
then
ipv6type
=
$i
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
;;
kame
)
...
...
@@ -17039,7 +16884,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
ipv6libdir
=
/usr/local/v6/lib
ipv6trylibc
=
yes
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
;;
linux-glibc
)
...
...
@@ -17060,7 +16905,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
ipv6type
=
$i
;
ipv6trylibc
=
yes
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
;;
linux-inet6
)
...
...
@@ -17098,7 +16943,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
ipv6lib
=
inet6
;
ipv6libdir
=
/usr/local/v6/lib
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
;;
v6d
)
...
...
@@ -17121,7 +16966,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
ipv6libdir
=
/usr/local/v6/lib
;
BASECFLAGS
=
"-I/usr/local/v6/include
$BASECFLAGS
"
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
;;
zeta
)
...
...
@@ -17143,7 +16988,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
ipv6lib
=
inet6
;
ipv6libdir
=
/usr/local/v6/lib
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
;;
esac
...
...
@@ -17439,7 +17284,6 @@ then
hp
*
|
HP
*
)
DYNLOADFILE
=
"dynload_hpux.o"
;;
# Use dynload_next.c only on 10.2 and below, which don't have native dlopen()
Darwin/[0156]
\.
.
*
)
DYNLOADFILE
=
"dynload_next.o"
;;
atheos
*
)
DYNLOADFILE
=
"dynload_atheos.o"
;;
*
)
# use dynload_shlib.c and dlopen() if we have it; otherwise stub
# out any dynamic loading
...
...
@@ -25235,7 +25079,7 @@ cat >>confdefs.h <<\_ACEOF
_ACEOF
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
fi
...
...
@@ -25505,7 +25349,7 @@ cat >>confdefs.h <<\_ACEOF
_ACEOF
fi
rm
-f
-r
conftest
*
rm
-f
conftest
*
fi
...
...
configure.in
View file @
6103ab1d
...
...
@@ -248,7 +248,6 @@ then
case $MACHDEP in
cygwin*) MACHDEP="cygwin";;
darwin*) MACHDEP="darwin";;
atheos*) MACHDEP="atheos";;
irix646) MACHDEP="irix6";;
'') MACHDEP="unknown";;
esac
...
...
@@ -630,7 +629,7 @@ AC_ARG_ENABLE(shared,
if test -z "$enable_shared"
then
case $ac_sys_system in
CYGWIN*
| atheos*
)
CYGWIN*)
enable_shared="yes";;
*)
enable_shared="no";;
...
...
@@ -716,11 +715,6 @@ if test $enable_shared = "yes"; then
BLDLIBRARY='-rpath $(LIBDIR) -L. -lpython$(VERSION)'
RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
;;
atheos*)
LDLIBRARY='libpython$(VERSION).so'
BLDLIBRARY='-L. -lpython$(VERSION)'
RUNSHARED=DLL_PATH=`pwd`:${DLL_PATH:-/atheos/sys/libs:/atheos/autolnk/lib}
;;
Darwin*)
LDLIBRARY='libpython$(VERSION).dylib'
BLDLIBRARY='-L. -lpython$(VERSION)'
...
...
@@ -774,7 +768,6 @@ AC_SUBST(LN)
if test -z "$LN" ; then
case $ac_sys_system in
CYGWIN*) LN="ln -s";;
atheos*) LN="ln -s";;
*) LN=ln;;
esac
fi
...
...
@@ -1701,7 +1694,6 @@ then
fi;;
SCO_SV*) LDSHARED='$(CC) -Wl,-G,-Bexport';;
CYGWIN*) LDSHARED="gcc -shared -Wl,--enable-auto-image-base";;
atheos*) LDSHARED="gcc -shared";;
*) LDSHARED="ld";;
esac
fi
...
...
@@ -1740,7 +1732,6 @@ then
*gcc*) CCSHARED="-shared";;
*) CCSHARED="";;
esac;;
atheos*) CCSHARED="-fPIC";;
esac
fi
AC_MSG_RESULT($CCSHARED)
...
...
@@ -2056,10 +2047,6 @@ pthread_create (NULL, NULL, start_routine, NULL)], [
AC_CHECK_FUNC(pthread_detach, [AC_DEFINE(WITH_THREAD)
posix_threads=yes
THREADOBJ="Python/thread.o"],[
AC_CHECK_HEADER(atheos/threads.h, [AC_DEFINE(WITH_THREAD)
AC_DEFINE(ATHEOS_THREADS, 1,
[Define this if you have AtheOS threads.])
THREADOBJ="Python/thread.o"],[
AC_CHECK_LIB(pthreads, pthread_create, [AC_DEFINE(WITH_THREAD)
posix_threads=yes
LIBS="$LIBS -lpthreads"
...
...
@@ -2077,7 +2064,7 @@ pthread_create (NULL, NULL, start_routine, NULL)], [
LIBS="$LIBS -lcma"
THREADOBJ="Python/thread.o"],[
USE_THREAD_MODULE="#"])
])])])])])])])])
])
])])])])])])])])
AC_CHECK_LIB(mpc, usconfig, [AC_DEFINE(WITH_THREAD)
LIBS="$LIBS -lmpc"
...
...
@@ -2409,7 +2396,6 @@ then
hp*|HP*) DYNLOADFILE="dynload_hpux.o";;
# Use dynload_next.c only on 10.2 and below, which don't have native dlopen()
Darwin/@<:@0156@:>@\..*) DYNLOADFILE="dynload_next.o";;
atheos*) DYNLOADFILE="dynload_atheos.o";;
*)
# use dynload_shlib.c and dlopen() if we have it; otherwise stub
# out any dynamic loading
...
...
setup.py
View file @
6103ab1d
...
...
@@ -288,7 +288,7 @@ class PyBuildExt(build_ext):
def
get_platform
(
self
):
# Get value of sys.platform
for
platform
in
[
'cygwin'
,
'darwin'
,
'
atheos'
,
'
osf1'
]:
for
platform
in
[
'cygwin'
,
'darwin'
,
'osf1'
]:
if
sys
.
platform
.
startswith
(
platform
):
return
platform
return
sys
.
platform
...
...
@@ -355,13 +355,6 @@ class PyBuildExt(build_ext):
platform = self.get_platform()
srcdir = sysconfig.get_config_var('
srcdir
')
# Check for AtheOS which has libraries in non-standard locations
if platform == '
atheos
':
lib_dirs += ['
/
system
/
libs
', '
/
atheos
/
autolnk
/
lib
']
lib_dirs += os.getenv('
LIBRARY_PATH
', '').split(os.pathsep)
inc_dirs += ['
/
system
/
include
', '
/
atheos
/
autolnk
/
include
']
inc_dirs += os.getenv('
C_INCLUDE_PATH
', '').split(os.pathsep)
# OSF/1 and Unixware have some stuff in /usr/ccs/lib (like -ldb)
if platform in ['
osf1
', '
unixware7
', '
openunix8
']:
lib_dirs += ['
/
usr
/
ccs
/
lib
']
...
...
@@ -465,7 +458,7 @@ class PyBuildExt(build_ext):
exts
.
append
(
Extension
(
'parser'
,
[
'parsermodule.c'
])
)
# Memory-mapped files (also works on Win32).
if
platform
not
in
[
'
atheos'
,
'
mac'
]:
if
platform
not
in
[
'mac'
]:
exts
.
append
(
Extension
(
'mmap'
,
[
'mmapmodule.c'
])
)
else
:
missing
.
append
(
'mmap'
)
...
...
@@ -975,13 +968,10 @@ class PyBuildExt(build_ext):
# Steen Lumholt's termios module
exts
.
append
(
Extension
(
'termios'
,
[
'termios.c'
])
)
# Jeremy Hylton's rlimit interface
if
platform
not
in
[
'atheos'
]:
exts
.
append
(
Extension
(
'resource'
,
[
'resource.c'
])
)
else
:
missing
.
append
(
'resource'
)
exts
.
append
(
Extension
(
'resource'
,
[
'resource.c'
])
)
# Sun yellow pages. Some systems have the functions in libc.
if
platform
not
in
[
'cygwin'
,
'
atheos'
,
'
qnx6'
]:
if
platform
not
in
[
'cygwin'
,
'qnx6'
]:
if
(
self
.
compiler_obj
.
find_library_file
(
lib_dirs
,
'nsl'
)):
libs
=
[
'nsl'
]
else
:
...
...
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