mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +00:00
* Microscopic corrections to make things compile on the Cray APP.
* Removed one use of $> in Makefile and warned about others. Added configurable lines in Makefile to change CC and AR.
This commit is contained in:
parent
f56e3db1dd
commit
9575a44575
6 changed files with 32 additions and 5 deletions
|
@ -31,8 +31,16 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
#include "modsupport.h"
|
||||
#include "ceval.h"
|
||||
|
||||
#ifdef sun
|
||||
#ifdef i860
|
||||
/* Cray APP doesn't have memmove */
|
||||
#define NEED_MEMMOVE
|
||||
extern char *memcpy();
|
||||
#endif
|
||||
|
||||
#ifdef sun
|
||||
/* SunOS doesn't have memmove */
|
||||
#define NEED_MEMMOVE
|
||||
extern char *memcpy();
|
||||
#endif
|
||||
|
||||
#ifdef NEED_MEMMOVE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue