summaryrefslogtreecommitdiffstats
path: root/pyconfig.h.in
Commit message (Collapse)AuthorAgeFilesLines
* Patch #1180695: Implement nanosecond stat resolution on FreeBSD,Martin v. Löwis2005-08-091-0/+9
| | | | add st_gen, st_birthtime.
* Patch #1212117: Add optional attribute st_flags to os.stat_resultHye-Shik Chang2005-06-021-0/+3
| | | | | when the member is available on the platform. (Contributed by Diego Petteno)
* Patch #579435: Shadow Password Support ModuleMartin v. Löwis2005-01-231-0/+9
|
* Patch 977343, Solaris likes sys/loadavg.h. Added support for sys/loadavg.hAnthony Baxter2004-10-131-0/+3
| | | | detection to configure &c.
* Patch #1012280: Include curses.h for term.h check. Fixes #933795.Martin v. Löwis2004-09-181-0/+3
| | | | Will backport to 2.3.
* Define _BSD_TYPES. Fixes #1005308. Backported to 2.3.Martin v. Löwis2004-08-121-3/+6
|
* Patch #1003700: Add socketpair function to socket module.Dave Cole2004-08-091-0/+3
|
* This change implements the following gettext features, asGustavo Niemeyer2004-07-221-0/+3
| | | | | | | | | | | | | | | | | | | | discussed recently in python-dev: In _locale module: - bind_textdomain_codeset() binding In gettext module: - bind_textdomain_codeset() function - lgettext(), lngettext(), ldgettext(), ldngettext(), which return translated strings encoded in preferred system encoding, if bind_textdomain_codeset() was not used. - Added equivalent functionality in translate() function and catalog classes. Every change was also documented.
* This closes patch:Michael W. Hudson2004-07-071-0/+6
| | | | | | | | | | | | | | | | | [ 960406 ] unblock signals in threads although the changes do not correspond exactly to any patch attached to that report. Non-main threads no longer have all signals masked. A different interface to readline is used. The handling of signals inside calls to PyOS_Readline is now rather different. These changes are all a bit scary! Review and cross-platform testing much appreciated.
* Massive performance improvement for C extension and builtin tracing codeNicholas Bastin2004-06-251-3/+0
|
* Making C profiling a configure option (at least temporarily)Nicholas Bastin2004-06-221-0/+3
|
* Patch #510695: Add TSC profiling for the VM.Martin v. Löwis2004-06-081-0/+3
|
* Added configure check for broken poll() on some unix systems (MacOS X 10.3)Nicholas Bastin2004-03-211-0/+12
| | | | Fixes SF Bug #850981
* remove support for missing ANSI C header files (limits.h, stddef.h, etc).Skip Montanaro2004-02-101-24/+0
|
* Remove support for --without-universal-newlines (see PEP 11).Skip Montanaro2004-02-071-3/+0
|
* Remove HAVE_STRPTIME - no longer necessary with the pure Python version ofSkip Montanaro2004-02-071-3/+0
| | | | time.strptime().
* Add FreeBSD support for bluetooth sockets.Hye-Shik Chang2004-02-021-0/+3
| | | | (SF Patch #888148, reviewed by loewis)
* Patch #874083: Bluetooth support for socket module.Martin v. Löwis2004-01-311-7/+3
|
* Remove support for SunOS 4.Skip Montanaro2004-01-171-4/+0
| | | | Remove BAD_EXEC_PROTOYPE (leftover from IRIX 4 demolition).
* Remove support for DYNIX, IRIX 4, --with-sgi-dl, --with-dl-dldSkip Montanaro2004-01-171-14/+0
|
* Remove support for minix.Skip Montanaro2004-01-171-6/+0
| | | | Remove unused and unnecessary checks for sizeof(char).
* Patch #839038: Add getsid(2).Martin v. Löwis2003-11-101-4/+8
|
* Typo. HAVE_SYNC -> HAVE_FSYNCSkip Montanaro2003-09-251-1/+1
|
* Check for declarations of fchdir and fsync. Fixes #800710. Backported to 2.3.Martin v. Löwis2003-09-201-5/+5
|
* Improve detection of whether tzset is broken.Brett Cannon2003-09-191-0/+3
|
* Patch 775605: Cygwin pthread_sigmask() workaround patchJason Tishler2003-07-221-3/+6
| | | | | | | | | | | | | | | | | | Cygwin's pthread_sigmask() implementation appears to be buggy. This patch works around this problem by using sigprocmask() instead. This patch is implemented in a general way so it could be used by other platforms too. If this approach is deemed too risky, then I can work up a patch that just hacks Python/thread_pthread.h for Cygwin. Note that I tested this patch against 2.3c1 under Red Hat Linux 8.0 too. [snip] And finally, I need someone to regenerate pyconfig.h.in and configure with the same versions of the autotools that are normally used by Python. Neal kindly regenerated pyconfig.h.in and configure for me.
* FreeBSD 5.x has moved some library routines and typedefs outside theAndrew MacIntyre2003-07-021-0/+3
| | | | | | | | | | | | | | | scope of the _XOPEN_SOURCE and _POSIX_C_SOURCE symbols, including: - getloadavg() - typedefs for u_int, u_long, u_char, u_short, ushort & uint These are now all defined under the control of a __BSD_VISIBLE symbol. The lack of the typedefs causes several extension modules to build incorrectly or not at all, and is the cause of failures reported for test_socket and test_tempfile on this platform (see python-dev: 29/6/03, pieterb@gewis.nl, "Running tests on freebsd5") This change does not appear to be needed in the 2.2 branch.
* Patch #752671: NetBSD needs to link libintl to _locale.so.Martin v. Löwis2003-06-141-0/+3
|
* Get test_ioctl to pass on HPUX 11.Neal Norwitz2003-05-231-0/+3
| | | | | TIOCGPGRP and many other definitions come from bsdtty.h, so it needs to be included at least on HPUX.
* Try linking hstrerror and inet_aton tests. Look for these functions in -lresolv.Martin v. Löwis2003-05-031-0/+3
|
* Patch #730826: Enable extensions on NetBSD 2.0.Martin v. Löwis2003-05-031-0/+3
|
* Patch #724588: Check whether the address of hstrerror and inet_pton canMartin v. Löwis2003-05-031-3/+3
| | | | be taken, and define NI_MAX{HOST|SERV} if necessary.
* Patch #650412: Check whether the address of flock and getpagesizeMartin v. Löwis2003-03-301-4/+4
| | | | can be taken, and use _SC_PAGE_SIZE if getpagesize is not available.
* Add test for setpgrp. Fixes #690317.Martin v. Löwis2003-03-281-0/+3
|
* /dev/ptmx doesn't exist on AIX, they had to be different and use /dev/ptc.Neal Norwitz2003-03-211-0/+3
| | | | Otherwise, the 2 devices seem to work the same for allocating a pseudo-tty.
* - New function time.tzset() provides access to the C library tzet()Guido van Rossum2003-03-141-0/+4
| | | | function, if supported. (SF patch #675422, by Stuart Bishop.)
* - sys.path[0] (the directory from which the script is loaded) is nowGuido van Rossum2003-02-191-0/+3
| | | | | turned into an absolute pathname, unless it is the empty string. (SF patch #664376, by Skip Montanaro.)
* Use configure to check for inet_aton.Neal Norwitz2003-02-131-0/+3
|
* Don't use Posix semaphores on Solaris 8. Fixes #662787.Martin v. Löwis2003-01-211-0/+3
|
* Test for presence of sysexits.h and set HAVE_SYSEXITS_H if so. UsedBarry Warsaw2003-01-071-0/+3
| | | | by posixmodule.c.
* Expose I_ constants. Auto-detect stropts.h. Properly configure the slave ↵Martin v. Löwis2003-01-011-0/+3
| | | | terminal.
* Patch #656590: /dev/ptmx support for ptys.Martin v. Löwis2002-12-311-0/+3
|
* Patch 659834 by Magnus Lie Hetland:Guido van Rossum2002-12-301-0/+3
| | | | | | | | | Check for readline 2.2 features. This should make it possible to compile readline.c again with GNU readline versions 2.0 or 2.1; this ability was removed in readline.c rev. 2.49. Apparently the older versions are still in widespread deployment on older Solaris installations. With an older readline, completion behavior is subtly different (a space is always added).
* Patch #657889: Implement posix.getloadavg.Martin v. Löwis2002-12-271-0/+3
|
* Use wcscoll for _locale.strcoll if available.Martin v. Löwis2002-12-211-0/+3
|
* Remove MALLOC_ZERO_RETURNS_NULL.Martin v. Löwis2002-11-231-3/+0
|
* Patch #639371: Remove FreeBSD 5 specific test, test for ctermid_r, setgroupsMartin v. Löwis2002-11-211-2/+2
| | | | prototypes explicitly.
* Don't define _XOPEN_SOURCE and _POSIX_C_SOURCE on FreeBSD 5.0. Fixes #636318.Martin v. Löwis2002-11-121-5/+3
|
* Use new-style CHECK_TYPE to avoid modifying confdefs.h. Include sys/types.hMartin v. Löwis2002-11-111-1/+1
| | | | Fixes #636431.
* Protect pyconfig.h from multiple inclusions.Martin v. Löwis2002-11-111-0/+7
|