Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #881820: look for openpty and forkpty also in libbsd. | Martin v. Löwis | 2006-01-08 | 3 | -3/+163 |
| | | | | Will backport. | ||||
* | Remove some shadowed variables | Neal Norwitz | 2006-01-08 | 3 | -4/+4 |
| | |||||
* | strlen() returns a size_t, get rid of 64-bit warning | Neal Norwitz | 2006-01-08 | 1 | -1/+1 |
| | |||||
* | Repair bizarre indentation created by VC 7.1. | Tim Peters | 2006-01-08 | 1 | -1/+1 |
| | |||||
* | alias_for_import_name(): Dueling compiler warnings ;-) | Tim Peters | 2006-01-08 | 1 | -1/+2 |
| | | | | | | | Squash new warnings from VC 7.1 about mixing signed and unsigned types in comparisons. I can see why `len` was changed to size_t here, but don't see why `i` was also changed. Change `i` back to int. | ||||
* | analyze_cells(): This no longer compiled under VC 7.1. | Tim Peters | 2006-01-08 | 1 | -1/+2 |
| | | | | Move declaration of local `flags` to top of block. | ||||
* | Revert previous checkin, the check is for <, not ==. i is unsed in ↵ | Neal Norwitz | 2006-01-08 | 1 | -2/+5 |
| | | | | non-debug builds, but is used in debug builds | ||||
* | ignore db_home (result of db tests) | Neal Norwitz | 2006-01-08 | 0 | -0/+0 |
| | |||||
* | ignore db_home (result of db tests) and autom4te.cache from autoconf | Neal Norwitz | 2006-01-08 | 0 | -0/+0 |
| | |||||
* | Fix icc warnings: remove (sometimes) unused variable conditionally | Neal Norwitz | 2006-01-08 | 1 | -2/+4 |
| | |||||
* | Fix icc warnings: remove unused variable | Neal Norwitz | 2006-01-08 | 1 | -2/+1 |
| | |||||
* | Fix icc warnings. This couldn't have been correct since i is checked | Neal Norwitz | 2006-01-08 | 1 | -5/+2 |
| | | | | | for 2 different values without changing. I think this was the intent. The unused warning only occurs when not building in debug mode. | ||||
* | Fix icc warnings: try to set TCL_UNIX_FD for #if TCL_WIN_SOCKET == ↵ | Neal Norwitz | 2006-01-08 | 1 | -0/+11 |
| | | | | TCL_UNIX_FD. res is not used, add a XXX comment | ||||
* | Fix icc warnings: HASH_OBJ_CONSTRUCTOR was not defined and using #if ↵ | Neal Norwitz | 2006-01-08 | 1 | -0/+4 |
| | | | | HASH_OBJ_CONSTRUCTOR | ||||
* | Fix icc warnings: conversion from "long" to "int" may lose significant bits | Neal Norwitz | 2006-01-08 | 2 | -15/+15 |
| | |||||
* | Fix icc warnings: strlen() returns size_t | Neal Norwitz | 2006-01-08 | 2 | -7/+7 |
| | |||||
* | Revert revision 41940: the test causes -uall to | Tim Peters | 2006-01-07 | 1 | -4/+1 |
| | | | | fail everywhere. | ||||
* | icc accepts -OPT... but generates a warning, so just disable the check | Neal Norwitz | 2006-01-07 | 2 | -1/+13 |
| | |||||
* | Fix icc warnings: single bit fields should be unsigned | Neal Norwitz | 2006-01-07 | 1 | -7/+7 |
| | |||||
* | Fix icc warnings: shadowing local variable (i) and complex is set but not ↵ | Neal Norwitz | 2006-01-07 | 1 | -3/+2 |
| | | | | used, so remove | ||||
* | Fix icc warnings: single bit fields should be unsigned, shadowing local ↵ | Neal Norwitz | 2006-01-07 | 1 | -16/+16 |
| | | | | variables | ||||
* | Fix icc warnings: shadowing local variables | Neal Norwitz | 2006-01-07 | 1 | -2/+1 |
| | |||||
* | Fix icc warnings: using wrong enum type | Neal Norwitz | 2006-01-07 | 1 | -2/+2 |
| | |||||
* | Fix icc warnings: extra semi-colon and signed vs unsigned | Neal Norwitz | 2006-01-07 | 1 | -8/+8 |
| | |||||
* | Fix icc warnings: extra semi-colon | Neal Norwitz | 2006-01-07 | 2 | -3/+3 |
| | |||||
* | If there is no libtermcap all the readline tests failed. | Neal Norwitz | 2006-01-07 | 3 | -7/+173 |
| | | | | | | | | | This inappropriately disabled some capabilities which exist. Now test for readline in -lreadline, if not found there, try it in -ltermcap only if not in -lreadline. If both libraries are required, there will need to be more work, but I'm not sure under what conditions both libraries would be required. | ||||
* | Add compiler test regarding optional arguments. | Georg Brandl | 2006-01-06 | 1 | -1/+4 |
| | |||||
* | Correct typo | Georg Brandl | 2006-01-06 | 1 | -1/+1 |
| | |||||
* | initscr() will exit if there's an error. Try to catch the obvious failure | Neal Norwitz | 2006-01-06 | 1 | -4/+7 |
| | | | | | | | | | | | | | cases if TERM isn't set or is unknown (perhaps we should only check if unset or empty?) Skip the test if TERM isn't set. This seems to occur when running under buildbot and presumably cron. For some more info check here: http://mail.python.org/pipermail/python-checkins/2006-January/048704.html Will backport if it works. | ||||
* | Py_GetBuildInfo(): Squash compiler warnings. | Tim Peters | 2006-01-06 | 1 | -3/+3 |
| | | | | Locals `revision` and `branch` were const-incorrect. | ||||
* | svnversion_init(): Use standard layout for function defn. | Tim Peters | 2006-01-06 | 1 | -1/+2 |
| | |||||
* | Trimmed trailing whitespace. | Tim Peters | 2006-01-06 | 1 | -20/+20 |
| | |||||
* | Generalize buildno to be a sequence of non-comma | Martin v. Löwis | 2006-01-06 | 1 | -1/+1 |
| | | | | characters. | ||||
* | Deal with empty svn_revisions. | Martin v. Löwis | 2006-01-06 | 1 | -1/+1 |
| | |||||
* | Add HeadURL to the keywords. | Martin v. Löwis | 2006-01-05 | 0 | -0/+0 |
| | |||||
* | Drop sys.build_number. Add sys.subversion. | Martin v. Löwis | 2006-01-05 | 5 | -25/+114 |
| | |||||
* | squash compiler warning on Mac OSX 10.3 | Skip Montanaro | 2006-01-05 | 1 | -0/+4 |
| | |||||
* | Always set SVNVERSION to "exported" if it otherwise fails. | Martin v. Löwis | 2006-01-05 | 4 | -17/+25 |
| | |||||
* | Stop maintaining the buildno file. | Martin v. Löwis | 2006-01-05 | 5 | -37/+88 |
| | | | | Also, stop determining Unicode sizes with PyString_GET_SIZE. | ||||
* | If the audio file does not exist, the test should be skipped. Will backport. | Neal Norwitz | 2006-01-05 | 2 | -2/+2 |
| | |||||
* | Try to make svnversion test more portable, based on Sjoerd's suggestion | Neal Norwitz | 2006-01-05 | 1 | -1/+1 |
| | |||||
* | Skip test_curses if stdin is not a tty (like when run from cron or ↵ | Neal Norwitz | 2006-01-05 | 1 | -1/+3 |
| | | | | buildbot). Will backport. | ||||
* | Fix errors on 64-bit platforms. Will backport | Neal Norwitz | 2006-01-05 | 2 | -4/+6 |
| | |||||
* | Bug #1395715: wrong LaTeX label | Georg Brandl | 2006-01-04 | 1 | -1/+1 |
| | |||||
* | Fix a warning from gcc by adding a missed const qualifier. | Hye-Shik Chang | 2006-01-04 | 1 | -1/+1 |
| | |||||
* | SF bug #1395926: Also test for svnversion command on $PATH before using it to | Barry Warsaw | 2006-01-03 | 1 | -1/+1 |
| | | | | calculate the build number. | ||||
* | Mention that zlib is now builtin on Windows. | Martin v. Löwis | 2006-01-03 | 1 | -0/+3 |
| | |||||
* | Patch #1307806: Use project defaults where possible | Martin v. Löwis | 2006-01-03 | 14 | -1048/+71 |
| | |||||
* | Make zlib builtin. | Martin v. Löwis | 2006-01-03 | 6 | -281/+66 |
| | |||||
* | Remove unneeded directories. | Martin v. Löwis | 2006-01-03 | 167 | -39686/+0 |
| |