| Commit message (Expand) | Author | Age | Files | Lines |
* | OSX tests used specific version numbers to test for new features and | Jack Jansen | 2001-11-14 | 1 | -10/+10 |
|
|
* | Add sys/types.h and stdio.h into getaddrinfo test, based on itojun's message | Martin v. Löwis | 2001-11-09 | 1 | -0/+2 |
|
|
* | Link the core with CoreServices, not with Carbon, and don't use any Carbon | Jack Jansen | 2001-10-31 | 1 | -1/+1 |
|
|
* | Check for HP/UX curses problems. Define _XOPEN_SOURCE_EXTENDED and | Martin v. Löwis | 2001-10-24 | 1 | -0/+32 |
|
|
* | Include netdb.h to detect getaddrinfo. Work around problem with getaddrinfo | Martin v. Löwis | 2001-10-24 | 1 | -2/+17 |
|
|
* | install on HP-UX does not support the -d option. Using the install-sh instead. | Neil Schemenauer | 2001-10-21 | 1 | -2/+2 |
|
|
* | Patch from SF bug #473150: configure weaknesses on HP-UX (Michael Piotrowski) | Guido van Rossum | 2001-10-20 | 1 | -2/+2 |
|
|
* | SF patch #460805 by Chris Gonnerman: Support for unsetenv() | Guido van Rossum | 2001-10-19 | 1 | -1/+1 |
|
|
* | SF patch #462296: Add attributes to os.stat results; by Nick Mathewson. | Guido van Rossum | 2001-10-18 | 1 | -0/+3 |
|
|
* | Shut up warnings for setgroups() on Linux -- you have to #include | Guido van Rossum | 2001-10-18 | 1 | -1/+1 |
|
|
* | Use CXX in LINKCC if CXX is used to build main() and the system requires | Martin v. Löwis | 2001-10-18 | 1 | -4/+20 |
|
|
* | Expose setgroups. Fixes feature request #468116. | Martin v. Löwis | 2001-10-18 | 1 | -1/+1 |
|
|
* | Do not define _POSIX_THREADS if unistd.h defines it. | Martin v. Löwis | 2001-10-15 | 1 | -19/+19 |
|
|
* | Check whether pthreads are available without any options before checking | Martin v. Löwis | 2001-10-15 | 1 | -7/+55 |
|
|
* | Check for term.h and include it on non-ncurses system to get a declaration | Martin v. Löwis | 2001-10-13 | 1 | -1/+1 |
|
|
* | Provide explicit program when trying to link pthread_create. | Martin v. Löwis | 2001-10-08 | 1 | -2/+14 |
|
|
* | Support OpenUNIX like UnixWare. | Martin v. Löwis | 2001-10-07 | 1 | -4/+4 |
|
|
* | Use AC_TRY_RUN for checking for -Kpthread. | Martin v. Löwis | 2001-10-07 | 1 | -7/+16 |
|
|
* | Add chroot call. Implements feature #459267. | Martin v. Löwis | 2001-10-04 | 1 | -1/+1 |
|
|
* | Patch #462122: add readline startup and pre_event hooks. | Martin v. Löwis | 2001-09-30 | 1 | -0/+4 |
|
|
* | Fix SF bug 419062: building pbs on AIX 4.3.2 | Guido van Rossum | 2001-09-28 | 1 | -2/+2 |
|
|
* | Add cross-compilation defaults to most AC_TRY_RUN values. The | Guido van Rossum | 2001-09-17 | 1 | -19/+45 |
|
|
* | When frameworks are not enabled don't put an empty target in the Makefile. | Jack Jansen | 2001-09-11 | 1 | -6/+13 |
|
|
* | Use $(CC) -G to link shared libraries on Solaris. | Martin v. Löwis | 2001-09-10 | 1 | -2/+2 |
|
|
* | Improve threading on Solaris, according to SF patch #460269, submitted | Guido van Rossum | 2001-09-10 | 1 | -2/+33 |
|
|
* | This time (I hope) I've fixed largefile | Guido van Rossum | 2001-09-09 | 1 | -41/+5 |
|
|
* | (Slightly modified) patch by Steve Spicklemire to make Python build | Jack Jansen | 2001-09-07 | 1 | -1/+19 |
|
|
* | SF bug #427073: DLINCLDIR defined incorrectly (Skip Montanaro). | Guido van Rossum | 2001-09-05 | 1 | -1/+1 |
|
|
* | Changes to automatically enable large file support on some systems. | Guido van Rossum | 2001-09-05 | 1 | -6/+49 |
|
|
* | Patch #455231: Support ELF properly on OpenBSD. | Martin v. Löwis | 2001-09-05 | 1 | -12/+3 |
|
|
* | Use -fPIC instead of -fpic for gcc on HP/UX. Fixes bug #433234. | Martin v. Löwis | 2001-09-05 | 1 | -1/+1 |
|
|
* | Check for RFC 2553 API. Fixes bug #454493. | Martin v. Löwis | 2001-09-05 | 1 | -3/+21 |
|
|
* | Always compile gcmodule. | Neil Schemenauer | 2001-08-29 | 1 | -5/+1 |
|
|
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 1 | -0/+3 |
|
|
* | Fix portability problems with glibc 2.0, as reported in #449157. | Martin v. Löwis | 2001-08-15 | 1 | -1/+1 |
|
|
* | MacOSX: if we're building without --enable-toolbox-glue don't attempt to | Jack Jansen | 2001-08-15 | 1 | -1/+3 |
|
|
* | Lots of changes in the framework support: | Jack Jansen | 2001-08-15 | 1 | -99/+122 |
|
|
* | Autotest for netpacket/packet.h, as it is not available on all Linux versions. | Martin v. Löwis | 2001-08-10 | 1 | -1/+1 |
|
|
* | Expose nl_langinfo through locale where available. | Martin v. Löwis | 2001-08-10 | 1 | -1/+2 |
|
|
* | Move IPv6 test further down so that usage of -lnsl has been tested. | Martin v. Löwis | 2001-08-09 | 1 | -144/+153 |
|
|
* | Patch #433537: Cache ac_cv_bad_static_forward. | Martin v. Löwis | 2001-08-09 | 1 | -8/+13 |
|
|
* | Various fixes to streamline build process on Mac OS X: | Jack Jansen | 2001-08-08 | 1 | -15/+36 |
|
|
* | Remove redundant check for 'getaddrinfo' (it's already checked the block | Thomas Wouters | 2001-08-08 | 1 | -1/+1 |
|
|
* | Auto-detect hstrerror. Raise socket.herror in PyH_Error. Register the three | Martin v. Löwis | 2001-08-04 | 1 | -1/+1 |
|
|
* | - On OSX add -no-cpp-precomp to OPT. The user still has to manually specify | Jack Jansen | 2001-08-03 | 1 | -2/+7 |
|
|
* | Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. | Martin v. Löwis | 2001-07-26 | 1 | -1/+1 |
|
|
* | Allow usage of gcc on OSF/1; this reverts rev 1.23 of configure.in, | Martin v. Löwis | 2001-07-25 | 1 | -2/+0 |
|
|
* | Autocheck for snprintf, and use sprintf if it is not available. | Martin v. Löwis | 2001-07-24 | 1 | -1/+1 |
|
|
* | Instead of accessing ss_family, cast sockaddr_storage to sockaddr and access ... | Martin v. Löwis | 2001-07-23 | 1 | -2/+0 |
|
|
* | Patch #429442 from Jason Tishler: Corrects sys.platform and | Andrew M. Kuchling | 2001-07-20 | 1 | -0/+1 |
|
|