Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #657889: Implement posix.getloadavg. | Martin v. Löwis | 2002-12-27 | 1 | -0/+3 |
| | |||||
* | Use wcscoll for _locale.strcoll if available. | Martin v. Löwis | 2002-12-21 | 1 | -0/+3 |
| | |||||
* | Remove MALLOC_ZERO_RETURNS_NULL. | Martin v. Löwis | 2002-11-23 | 1 | -3/+0 |
| | |||||
* | Patch #639371: Remove FreeBSD 5 specific test, test for ctermid_r, setgroups | Martin v. Löwis | 2002-11-21 | 1 | -2/+2 |
| | | | | prototypes explicitly. | ||||
* | Don't define _XOPEN_SOURCE and _POSIX_C_SOURCE on FreeBSD 5.0. Fixes #636318. | Martin v. Löwis | 2002-11-12 | 1 | -5/+3 |
| | |||||
* | Use new-style CHECK_TYPE to avoid modifying confdefs.h. Include sys/types.h | Martin v. Löwis | 2002-11-11 | 1 | -1/+1 |
| | | | | Fixes #636431. | ||||
* | Protect pyconfig.h from multiple inclusions. | Martin v. Löwis | 2002-11-11 | 1 | -0/+7 |
| | |||||
* | Don't define _XOPEN_SOURCE on OpenBSD 2.x and 3.[012]. | Martin v. Löwis | 2002-11-11 | 1 | -1/+1 |
| | |||||
* | Check whether we can take the address of chown, link, and symlink. | Martin v. Löwis | 2002-11-11 | 1 | -3/+3 |
| | |||||
* | Patch #628898: Define _XOPEN_SOURCE_EXTENDED and _POSIX_C_SOURCE. | Martin v. Löwis | 2002-10-26 | 1 | -0/+6 |
| | |||||
* | Patch #623780: Replace obsolete struct macros. | Martin v. Löwis | 2002-10-16 | 1 | -8/+0 |
| | |||||
* | Back out #479898. | Martin v. Löwis | 2002-10-11 | 1 | -9/+0 |
| | |||||
* | Patch #569139: Implementation of major, minor and makedev. | Martin v. Löwis | 2002-10-10 | 1 | -0/+11 |
| | |||||
* | Check for wctype.h. | Martin v. Löwis | 2002-10-07 | 1 | -0/+3 |
| | |||||
* | Patch #479898: Use multibyte C library for printing strings if available. | Martin v. Löwis | 2002-10-07 | 1 | -3/+6 |
| | |||||
* | Patch #618347: Work around Solaris 2.6 pthread.h bug. Will backport to 2.2. | Martin v. Löwis | 2002-10-04 | 1 | -0/+3 |
| | |||||
* | Use utimes(2) where available to support microsecond timestamps. | Martin v. Löwis | 2002-09-10 | 1 | -0/+3 |
| | |||||
* | Patch #606592: Subsecond timestamps in stat_result. | Martin v. Löwis | 2002-09-09 | 1 | -0/+3 |
| | |||||
* | SF patch #584245, get python to link on OSF1 (Dec Unix) | Neal Norwitz | 2002-07-30 | 1 | -0/+6 |
| | |||||
* | Patch #573770: Implement lchown. | Martin v. Löwis | 2002-07-28 | 1 | -0/+3 |
| | |||||
* | Define _XOPEN_SOURCE and _GNU_SOURCE in pyconfig.h, to have them | Martin v. Löwis | 2002-07-20 | 1 | -0/+8 |
| | | | | available in the configure tests already. | ||||
* | Alas, roll back the definition of _XOPEN_SOURCE. It breaks the tests | Guido van Rossum | 2002-07-19 | 1 | -3/+0 |
| | | | | | | | | | | | for the time module, because somehow configure won't define the symbols HAVE_STRUCT_TM_TM_ZONE, HAVE_TM_ZONE, and HAVE_TZNAME in this case. I've got no time to research this further, so I leave it in Jeremy and Martin's capable hands to find a different solution for True64 (or to devise a way to get the time tests to succeed while defining _XOPEN_SOURCE). | ||||
* | Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. | Mark Hammond | 2002-07-19 | 1 | -16/+9 |
| | |||||
* | This introduces stricter library/header file checking for the Berkeley DB | Skip Montanaro | 2002-06-14 | 1 | -9/+0 |
| | | | | | | | | | library. Since multiple versions can be installed simultaneously, it's crucial that you only select libraries and header files which are compatible with each other. Version checking is done from highest version to lowest. Building using version 1 of Berkeley DB is disabled by default because of the hash file bugs people keep rediscovering. It can be enabled by uncommenting a few lines in setup.py. Closes patch 553108. | ||||
* | Patch #568235: Add posix.setpgid. | Martin v. Löwis | 2002-06-13 | 1 | -0/+3 |
| | |||||
* | Patch #488073: AtheOS port. | Martin v. Löwis | 2002-06-11 | 1 | -0/+3 |
| | |||||
* | Patch #505375: Make doc strings optional. | Martin v. Löwis | 2002-06-09 | 1 | -0/+3 |
| | |||||
* | Stop testing for sigprocmask. This is a stop gap measure until I work | Michael W. Hudson | 2002-06-06 | 1 | -3/+0 |
| | | | | | out how to just activate my code on platforms where I know it works (currently only linux/x86). | ||||
* | Patch #555929: Cygwin AH_BOTTOM cleanup patch (*** version 2 ***) | Jason Tishler | 2002-06-04 | 1 | -10/+0 |
| | | | | | | | | | | | | This patch complies with the following request found near the top of configure.in: # This is for stuff that absolutely must end up in pyconfig.h. # Please use pyport.h instead, if possible. I tested this patch under Cygwin, Win32, and Red Hat Linux. Python built and ran successfully on each of these platforms. | ||||
* | This is patch | Michael W. Hudson | 2002-05-27 | 1 | -0/+3 |
| | | | | | | | [ 559250 ] more POSIX signal stuff Adds support (and docs and tests and autoconfery) for posix signal mask handling -- sigpending, sigprocmask and sigsuspend. | ||||
* | Back out #555929 | Martin v. Löwis | 2002-05-15 | 1 | -0/+10 |
| | |||||
* | Patch #555929: Cygwin AH_BOTTOM cleanup patch | Jason Tishler | 2002-05-15 | 1 | -10/+0 |
| | | | | | | | | | | | | This patch complies with the following request found near the top of configure.in: # This is for stuff that absolutely must end up in pyconfig.h. # Please use pyport.h instead, if possible. I tested this patch under Cygwin, Win32, and Red Hat Linux. Python built and ran successfully on each of these platforms. | ||||
* | #546163, fix link problem on Solaris 8 for makedev when using mknod | Neal Norwitz | 2002-04-20 | 1 | -0/+3 |
| | |||||
* | Move WITH_UNIVERSAL_NEWLINES template into configure.in. | Martin v. Löwis | 2002-04-16 | 1 | -3/+3 |
| | |||||
* | Add a test for fchdir(). | Fred Drake | 2002-04-15 | 1 | -0/+3 |
| | | | | This is part of SF feature #536796. | ||||
* | Mass checkin of universal newline support. | Jack Jansen | 2002-04-14 | 1 | -0/+3 |
| | | | | | | | | Highlights: import and friends will understand any of \r, \n and \r\n as end of line. Python file input will do the same if you use mode 'U'. Everything can be disabled by configuring with --without-universal-newlines. See PEP278 for details. | ||||
* | Patch #543447: Add posix.mknod. | Martin v. Löwis | 2002-04-14 | 1 | -0/+3 |
| | |||||
* | Remove acconfig.h. | Martin v. Löwis | 2002-04-12 | 1 | -31/+3 |
| | |||||
* | Update to autoconf 2.5x. | Martin v. Löwis | 2002-04-12 | 1 | -461/+537 |
| | |||||
* | Move autoheader declarations into configure.in. | Martin v. Löwis | 2002-04-06 | 1 | -204/+204 |
| | |||||
* | Expose C library's gettext. Fixes #516412. | Martin v. Löwis | 2002-03-27 | 1 | -0/+3 |
| | |||||
* | Patch #532729: check for sem_init in -lrt. | Martin v. Löwis | 2002-03-21 | 1 | -2/+3 |
| | |||||
* | Remove compiler warnings on Solaris 8. | Neal Norwitz | 2002-03-20 | 1 | -0/+2 |
| | | | | Can go into 2.2.x, but not necessary. | ||||
* | Patch #511193: Implement killpg in posixmodule. | Martin v. Löwis | 2002-02-16 | 1 | -0/+3 |
| | |||||
* | Patch #497098: build support for GNU/Hurd. | Martin v. Löwis | 2002-01-01 | 1 | -3/+9 |
| | |||||
* | Check for HP/UX curses problems. Define _XOPEN_SOURCE_EXTENDED and | Martin v. Löwis | 2001-10-24 | 1 | -0/+6 |
| | | | | | | STRICT_SYSV_CURSES when compiling curses module on HP/UX. Generalize access to _flags on systems where WINDOW is opaque. Fixes bugs #432497, #422265, and the curses parts of #467145 and #473150. | ||||
* | SF patch #460805 by Chris Gonnerman: Support for unsetenv() | Guido van Rossum | 2001-10-19 | 1 | -7/+10 |
| | | | | | | | | This adds unsetenv to posix, and uses it in the __delitem__ method of os.environ. (XXX Should we change the preferred name for putenv to setenv, for consistency?) | ||||
* | SF patch #462296: Add attributes to os.stat results; by Nick Mathewson. | Guido van Rossum | 2001-10-18 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | | This is a big one, touching lots of files. Some of the platforms aren't tested yet. Briefly, this changes the return value of the os/posix functions stat(), fstat(), statvfs(), fstatvfs(), and the time functions localtime(), gmtime(), and strptime() from tuples into pseudo-sequences. When accessed as a sequence, they behave exactly as before. But they also have attributes like st_mtime or tm_year. The stat return value, moreover, has a few platform-specific attributes that are not available through the sequence interface (because everybody expects the sequence to have a fixed length, these couldn't be added there). If your platform's struct stat doesn't define st_blksize, st_blocks or st_rdev, they won't be accessible from Python either. (Still missing is a documentation update.) | ||||
* | Shut up warnings for setgroups() on Linux -- you have to #include | Guido van Rossum | 2001-10-18 | 1 | -7/+10 |
| | | | | <grp.h> it seems. This requires yet another configure test. | ||||
* | Expose setgroups. Fixes feature request #468116. | Martin v. Löwis | 2001-10-18 | 1 | -0/+3 |
| |