Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: Armin Rigo <arigo@us...> - 2004-07-30 16:02:24
|
Update of /cvsroot/psyco/psyco In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3999 Modified Files: setup.py Log Message: Support for more Intel-based OSes: * Solaris (SF patch from Skip Montanaro) * FreeBSD (I don't know what's wrong with anonymous mmaps, but it didn't work; we fail back to PyMem_MALLOC() if mmap() doesn't appear to work) Index: setup.py =================================================================== RCS file: /cvsroot/psyco/psyco/setup.py,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** setup.py 4 Mar 2004 11:57:54 -0000 1.15 --- setup.py 30 Jul 2004 16:02:15 -0000 1.16 *************** *** 75,78 **** --- 75,79 ---- 'i586': 'i386', 'i686': 'i386', + 'i86pc': 'i386', # Solaris/Intel }[mach] except KeyError: |