Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SF patch #941881: PEP 309 Implementation (Partial Function Application). | Raymond Hettinger | 2005-02-28 | 1 | -0/+2 |
| | | | | | Combined efforts of many including Peter Harris, Hye-Shik Chang, Martin v. Löwis, Nick Coghlan, Paul Moore, and Raymond Hettinger. | ||||
* | spwdmodule.c should only be built when either HAVE_GETSPNAM or HAVE_GETSPENT is | Brett Cannon | 2005-02-16 | 1 | -2/+4 |
| | | | | defined. | ||||
* | Patch #579435: Shadow Password Support Module | Martin v. Löwis | 2005-01-23 | 1 | -0/+2 |
| | |||||
* | Since it is a possibility that LDFLAGS or CPPFLAGS were set with options that | Brett Cannon | 2005-01-02 | 1 | -2/+3 |
| | | | | | in no way affect library or include directories the code must take that into account and not assume some options were found. | ||||
* | Strip out double dashes and dashes for options not used during parsing of | Brett Cannon | 2004-12-31 | 1 | -2/+16 |
| | | | | | | LDFLAGS and CPPFLAGS for library and include directories, respectively. Solves issue of either env var containing other options that do not pertain to the directories being searched for. | ||||
* | Switch from getting LDFLAGS and CPPFLAGS from the environment to the Makefile. | Brett Cannon | 2004-12-18 | 1 | -5/+5 |
| | | | | | | | | This is to avoid a problem that inconsistently comes up where the environment variable is unset while the Makefile clearly has the values set and are used during ``make``. Closes bug #1081045. | ||||
* | rewrote the bsddb module BerkeleyDB library and include file locating | Gregory P. Smith | 2004-12-13 | 1 | -72/+93 |
| | | | | | code. This version is much cleaner and makes a proper attempt at pairing up the correct header file and library. | ||||
* | the bsddb module now also works with BerkeleyDB 4.3. | Gregory P. Smith | 2004-12-13 | 1 | -4/+7 |
| | |||||
* | Change code in setup.py for parsing LDFLAGS and CPPFLAGS to use optparse | Brett Cannon | 2004-12-07 | 1 | -6/+5 |
| | | | | | instead of getopt. Required making use of gettext._ as optional (optparse changed OK'ed by Greg Ward in private email). | ||||
* | setup.py now uses the library directories specified in LDFLAGS (``-L`` | Brett Cannon | 2004-12-07 | 1 | -9/+18 |
| | | | | | | | | | | | | | | | | | | | directories) and the include directories specified in CPPFLAGS (``-I`` directories) for compiling the extension modules. This has led to the core being compiled with the values in the shell's CPPFLAGS. It has also removed the need for special casing to use Fink and DarwinPorts under darwin since the needed directories can now be specified in LDFLAGS and CPPFLAGS (e.g., DarwinPorts users can now do ``LDFLAGS=-L/opt/local/lib; CPPFLAGS=-I/opt/local/include; ./configure`` for everything to work properly). Parsing the values in the environment variables is done with getopt. While optparse would have been a nicer solution it cannot be used because of dependency issues at execution time; optparse uses gettext which uses struct which will not have been compiled when the code is imported. If optparse ever makes its importation of gettext optional by catching ImportError and setting _() to an identity function then it can be used. | ||||
* | Patch #1050475: Fix various x86_64 build issues | Martin v. Löwis | 2004-11-13 | 1 | -1/+5 |
| | | | | | | regrtest.py: skip rgbimg and imageop as they are not built on 64-bit systems. _tkinter.c: replace %.8x with %p for printing pointers. setup.py: add lib64 into the library directories. | ||||
* | Patch 983206: distutils obeys LDSHARED env var. Removed the code in | Anthony Baxter | 2004-10-13 | 1 | -3/+0 |
| | | | | | Python's own setup.py that did the same thing (and tested on Solaris, where LDSHARED is needed...) | ||||
* | Add the directories where DarwinPorts installs library and include files to | Brett Cannon | 2004-09-28 | 1 | -2/+5 |
| | | | | the proper path directories for compiling extension modules. | ||||
* | Remove mpz, rotor, xreadlines modules | Andrew M. Kuchling | 2004-08-31 | 1 | -23/+1 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2004-08-26 | 1 | -2/+2 |
| | |||||
* | When building with --disable-toolbox-glue under Darwin, skip building any | Brett Cannon | 2004-08-26 | 1 | -2/+4 |
| | | | | | | | | Mac-specific modules. Before all modules were compiled but would fail thanks to a dependence on the code included when Python was built without the compiler flag. Closes bug #991962. | ||||
* | Add support for FreeBSD 6. | Hye-Shik Chang | 2004-08-18 | 1 | -1/+1 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2004-07-23 | 1 | -1/+1 |
| | |||||
* | ossaudiodev is available on FreeBSD 5 too. | Hye-Shik Chang | 2004-07-20 | 1 | -1/+1 |
| | |||||
* | Move comment that goes along with audioop | Neal Norwitz | 2004-07-19 | 1 | -1/+1 |
| | |||||
* | Patch #993173: Enable audioop on 64-bit platforms. | Martin v. Löwis | 2004-07-19 | 1 | -1/+4 |
| | |||||
* | Whitespace normalization. Ran reindent.py over the entire source tree. | Tim Peters | 2004-07-18 | 1 | -1/+1 |
| | |||||
* | Bring CJKCodecs 1.1 into trunk. This completely reorganizes source | Hye-Shik Chang | 2004-07-18 | 1 | -9/+3 |
| | | | | | | and installed layouts to make maintenance simple and easy. And it also adds four new codecs; big5hkscs, euc-jis-2004, shift-jis-2004 and iso2022-jp-2004. | ||||
* | _localemodule now needs to be linked with CoreFoundation on darwin. | Jack Jansen | 2004-07-15 | 1 | -1/+8 |
| | |||||
* | Install Barry's smtpd.py daemon. | Skip Montanaro | 2004-06-26 | 1 | -1/+2 |
| | |||||
* | Add compilation of timemodule.c with datetimemodule.c to get | Brett Cannon | 2004-06-24 | 1 | -1/+1 |
| | | | | __PyTime_DoubleToTimet(). | ||||
* | Patch #926209: Patch to setup.py to run on x86_64 Linux. | Martin v. Löwis | 2004-06-04 | 1 | -1/+1 |
| | |||||
* | Don't build the pcre module any more | Andrew M. Kuchling | 2004-06-02 | 1 | -1/+0 |
| | |||||
* | * Restore the pure python version of heapq.py. | Raymond Hettinger | 2004-04-19 | 1 | -1/+1 |
| | | | | * Mark the C version as private and only use when available. | ||||
* | [Patch #905863] Support the CVS version of Tcl/Tk, which has the version ↵ | Andrew M. Kuchling | 2004-03-21 | 1 | -1/+1 |
| | | | | number 8.5 | ||||
* | [Patch #850977] Detect Tcl/Tk libraries on FreeBSD/OpenBSD. Bugfix candidate | Andrew M. Kuchling | 2004-03-21 | 1 | -7/+15 |
| | |||||
* | a couple other sunos4 support items removed | Skip Montanaro | 2004-02-07 | 1 | -5/+1 |
| | |||||
* | * Move collections.deque() in from the sandbox | Raymond Hettinger | 2004-01-29 | 1 | -0/+2 |
| | | | | | | * Add unittests, newsitem, and whatsnew * Apply to Queue.py mutex.py threading.py pydoc.py and shlex.py * Docs are forthcoming | ||||
* | Add CJK codecs support as discussed on python-dev. (SF #873597) | Hye-Shik Chang | 2004-01-17 | 1 | -0/+13 |
| | | | | | Several style fixes are suggested by Martin v. Loewis and Marc-Andre Lemburg. Thanks! | ||||
* | SF Patch #864863: Bisect C implementation | Raymond Hettinger | 2004-01-05 | 1 | -0/+2 |
| | | | | (Contributed by Dmitry Vasiliev.) | ||||
* | Adding an interface to the high-level Open Scripting Architecture, | Jack Jansen | 2003-12-03 | 1 | -0/+2 |
| | | | | | | by request of Donovan Preston. In return, he promised to use this to create a Python OSA component, which would turn Python into a first-class OSA scripting language (like AppleScript itself). | ||||
* | An interface to the LaunchServices API. | Jack Jansen | 2003-12-02 | 1 | -0/+2 |
| | |||||
* | remove "support" for BerkeleyDB 3.1, it hasn't worked for a long time | Gregory P. Smith | 2003-11-13 | 1 | -8/+2 |
| | |||||
* | Convert heapq.py to a C implementation. | Raymond Hettinger | 2003-11-08 | 1 | -0/+2 |
| | |||||
* | [Patch #772077 from Tim Rice] Fix for compiling the readline module on ↵ | Andrew M. Kuchling | 2003-10-24 | 1 | -3/+3 |
| | | | | UnixWare; fix goofy comment indent. 2.3 bugfix candidate | ||||
* | Provide a bit more information to the compiler when building Expat. | Fred Drake | 2003-10-21 | 1 | -11/+16 |
| | | | | | This avoids having to modify the Expat sources in any way starting with Expat 1.95.7. | ||||
* | Add BerkeleyDB 4.2 to the library search for the bsddb module. | Gregory P. Smith | 2003-09-22 | 1 | -4/+11 |
| | |||||
* | Remove possibly-misleading Expat version | Andrew M. Kuchling | 2003-09-15 | 1 | -2/+2 |
| | |||||
* | patch #764612 - find DB 4.1/4.0/3.x on FreeBSD and systems with similar | Andrew MacIntyre | 2003-07-10 | 1 | -2/+3 |
| | | | | installation location policies. | ||||
* | Convert some repetitive code into a loop | Neal Norwitz | 2003-06-17 | 1 | -14/+5 |
| | |||||
* | Patch #752671: NetBSD needs to link libintl to _locale.so. | Martin v. Löwis | 2003-06-14 | 1 | -1/+3 |
| | |||||
* | Install the main script for the new IDLE here. | Guido van Rossum | 2003-06-13 | 1 | -1/+1 |
| | |||||
* | Somehow ColorPicker has never been included or tested under darwin, but it ↵ | Just van Rossum | 2003-05-24 | 1 | -0/+2 |
| | | | | works just fine. | ||||
* | Only look for krb5.h if ssl.h was found. | Martin v. Löwis | 2003-05-09 | 1 | -4/+5 |
| | | | | Fixes bug reported in comment to #728322. | ||||
* | set platform properly for OSF/1 | Skip Montanaro | 2003-05-07 | 1 | -2/+3 |
| |