summaryrefslogtreecommitdiffstats
path: root/configure
Commit message (Collapse)AuthorAgeFilesLines
* SF patch #462296: Add attributes to os.stat results; by Nick Mathewson.Guido van Rossum2001-10-181-106/+210
| | | | | | | | | | | | | | | | | 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 #includeGuido van Rossum2001-10-181-2/+2
| | | | <grp.h> it seems. This requires yet another configure test.
* Use CXX in LINKCC if CXX is used to build main() and the system requiresMartin v. Löwis2001-10-181-363/+379
| | | | to link a C++ main using the C++ compiler. Fixes #472007.
* Expose setgroups. Fixes feature request #468116.Martin v. Löwis2001-10-181-2/+2
|
* Do not define _POSIX_THREADS if unistd.h defines it.Martin v. Löwis2001-10-151-269/+313
| | | | Check for pthread_sigmask before using it. Fixes remaining problem in #470781.
* Check whether pthreads are available without any options before checkingMartin v. Löwis2001-10-151-394/+465
| | | | | that -Kpthread is supported. Fixes #470781. Port to autoconf 2.52.
* Check for term.h and include it on non-ncurses system to get a declarationMartin v. Löwis2001-10-131-2/+2
| | | | for tigetstr.
* Provide explicit program when trying to link pthread_create.Martin v. Löwis2001-10-081-248/+238
| | | | Contributed by Albert Chin in discussion of bug #210665.
* Support OpenUNIX like UnixWare.Martin v. Löwis2001-10-071-5/+5
|
* Use AC_TRY_RUN for checking for -Kpthread.Martin v. Löwis2001-10-071-352/+362
|
* Add chroot call. Implements feature #459267.Martin v. Löwis2001-10-041-2/+2
|
* Patch #462122: add readline startup and pre_event hooks.Martin v. Löwis2001-09-301-9/+54
|
* Fix SF bug 419062: building pbs on AIX 4.3.2Guido van Rossum2001-09-281-3/+3
| | | | | Apply patch from "china@thewrittenword.com" to put the correct location for ld_so_aix in BLDSHARED.
* Add cross-compilation defaults to most AC_TRY_RUN values. TheGuido van Rossum2001-09-171-23/+23
| | | | | | supplied values are the most "normal" or "common" values found for recent 32 bit machines. This now seems to work to build Python 2.2 for the ARM processor used on the iPAQ.
* When frameworks are not enabled don't put an empty target in the Makefile.Jack Jansen2001-09-111-394/+401
| | | | Older make's can apparently choke on this.
* Use $(CC) -G to link shared libraries on Solaris.Martin v. Löwis2001-09-101-2/+2
|
* Improve threading on Solaris, according to SF patch #460269, submittedGuido van Rossum2001-09-101-219/+277
| | | | | | | | | | by bbrox@bbrox.org / lionel.ulmer@free.fr. This adds a configure check and if all goes well turns on the PTHREAD_SCOPE_SYSTEM thread attribute for new threads. This should remove the need to add tiny sleeps at the start of threads to allow other threads to be scheduled.
* This time (I hope) I've fixed largefileGuido van Rossum2001-09-091-373/+320
| | | | | | support on Linux (and Solaris, I expect) for real. The necessary symbols are defined once and for all, under the assumption that they won't harm elsewhere.
* (Slightly modified) patch by Steve Spicklemire to make Python buildJack Jansen2001-09-071-249/+267
| | | | | | | | | out of the box on OSX 10.1. Untested by me (except for not having adverse effects on 10.0.4) but it looks good, for now. Eventually we should not trigger on the darwin version but test for something, but until I have the time to install 10.1 myself I have no clue what to test on. It would be nice if this got in to the 2.2a3 distribution.
* SF bug #427073: DLINCLDIR defined incorrectly (Skip Montanaro).Guido van Rossum2001-09-051-2/+2
| | | | | | I don't know what difference it makes, but '/' indeed makes less sense as an include dir than '.', so I'm changing the default. Just so I can close the bug. ;-)
* Changes to automatically enable large file support on some systems.Guido van Rossum2001-09-051-349/+415
| | | | | | | | | | | | | | | | | | | | | I believe this works on Linux (tested both on a system with large file support and one without it), and it may work on Solaris 2.7. The changes are twofold: (1) The configure script now boldly tries to set the two symbols that are recommended (for Solaris and Linux), and then tries a test script that does some simple seeking without writing. (2) The _portable_{fseek,ftell} functions are a little more systematic in how they try the different large file support options: first try fseeko/ftello, but only if off_t is large; then try fseek64/ftell64; then try hacking with fgetpos/fsetpos. I'm keeping my fingers crossed. The meaning of the HAVE_LARGEFILE_SUPPORT macro is not at all clear. I'll see if I can get it to work on Windows as well.
* Patch #455231: Support ELF properly on OpenBSD.Martin v. Löwis2001-09-051-254/+245
|
* Use -fPIC instead of -fpic for gcc on HP/UX. Fixes bug #433234.Martin v. Löwis2001-09-051-2/+2
|
* Check for RFC 2553 API. Fixes bug #454493.Martin v. Löwis2001-09-051-306/+327
|
* Always build gcmodule.Neil Schemenauer2001-08-291-297/+303
|
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-22/+26
| | | | | | | | - Do not compile unicodeobject, unicodectype, and unicodedata if Unicode is disabled - check for Py_USING_UNICODE in all places that use Unicode functions - disables unicode literals, and the builtin functions - add the types.StringTypes list - remove Unicode literals from most tests.
* Patch #427190: Implement and use METH_NOARGS and METH_O.Martin v. Löwis2001-08-161-1/+1
|
* Fix portability problems with glibc 2.0, as reported in #449157.Martin v. Löwis2001-08-151-2/+2
|
* MacOSX: if we're building without --enable-toolbox-glue don't attempt toJack Jansen2001-08-151-244/+246
| | | | | include _PyMac_Error. Also don't try to include __dummy: it needs Foundation and I think (not 100% sure) that this isn't part of naked Darwin.
* Oops, forgot to check in configure.Jack Jansen2001-08-151-400/+420
|
* Autotest for netpacket/packet.h, as it is not available on all Linux versions.Martin v. Löwis2001-08-101-2/+2
| | | | Depend AF_PACKET on HAVE_NETPACKET_PACKET_H.
* Expose nl_langinfo through locale where available.Martin v. Löwis2001-08-101-320/+321
|
* Move IPv6 test further down so that usage of -lnsl has been tested.Martin v. Löwis2001-08-091-548/+557
| | | | Recognize Solaris IPv6 by checking /etc/netconfig.
* Patch #433537: Cache ac_cv_bad_static_forward.Martin v. Löwis2001-08-091-515/+524
| | | | Also move up AC_AIX and AC_MINIX further up.
* Various fixes to streamline build process on Mac OS X:Jack Jansen2001-08-081-372/+396
| | | | | | | | | | | - Give a warning if you're on a case-insensitive filesystem and have not specified --with-suffix. - Don't require --with-dyld, it is now default for OSX/Darwin (suggested by Martin v. Loewis) - Don't define _POSIX_THREADS on Darwin, it's done by standard headers already (fix by Tony Lownds) - Don't use the Mac subtree anymore, the routines relevant to OSX/Darwin have moved to a new file Python/mactoolboxglue.c.
* Auto-detect hstrerror. Raise socket.herror in PyH_Error. Register the threeMartin v. Löwis2001-08-041-2/+2
| | | | exception classes in the module dictionary.
* - On OSX add -no-cpp-precomp to OPT. The user still has to manually specifyJack Jansen2001-08-031-353/+358
| | | | | | | | | | the --with-suffix=.exe, but it seems that that is also true for cygwin (or not? should I automatically set it?) - Got --with-next-framework to build on OSX. This is only the build bit, the install still has to be done manually. Moreover, the Python build order isn't really suited to frameworks (where you want to do 'build lib', 'install lib and framework', 'link executable against installed framework' in that order).
* Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774.Martin v. Löwis2001-07-261-3/+3
|
* Allow usage of gcc on OSF/1; this reverts rev 1.23 of configure.in,Martin v. Löwis2001-07-251-381/+379
| | | | and fixes bug #438786.
* Autocheck for snprintf, and use sprintf if it is not available.Martin v. Löwis2001-07-241-2/+2
| | | | | Remove declaration of h_errno, since it is supposedly declared in netdb.h. Changes proposed by itojun.
* Instead of accessing ss_family, cast sockaddr_storage to sockaddr and access ↵Martin v. Löwis2001-07-231-332/+330
| | | | sa_family.
* Patch #429442 from Jason Tishler: Corrects sys.platform andAndrew M. Kuchling2001-07-201-381/+382
| | | | | distutils.util.get_platform() problems caused by the cruft contained in Cygwin's uname -s.
* Use -Kpthread when trying to find out the size of pthread_t.Martin v. Löwis2001-07-191-240/+244
|
* Patch #418659: Fixes for UnixWare and ReliantUnix.Martin v. Löwis2001-07-191-473/+496
| | | | | | back-out 1.215 of configure.in and 1.34 of Makefile.pre.in Check for -Kpthread compiler support, and use this as the sole option for MT if available.
* Deactivate definition of ss_family and ss_len. Fixes bug #440486.Martin v. Löwis2001-07-181-328/+329
|
* [Bug #438050] Check for sys/poll.h in configure scriptAndrew M. Kuchling2001-07-141-293/+282
|
* Re-do the broken-nice() patch to break less platforms. Hopefully none :PThomas Wouters2001-07-111-5/+50
| | | | | | | Also note that it isn't just Linux nice() that is broken: at least FreeBSD and BSDI also have this problem. os.nice() should probably just be emulated using getpriority()/setpriority(), if they are available, but I'll get to that later.
* Patch #439995 (slightly modified from the uploaded version):Thomas Wouters2001-07-111-277/+288
| | | | | | | Work around Linux's nonstandard nice() systemcall, which does not return the new priority. This closes SF bug #439990.
* The usual...Fred Drake2001-07-111-367/+373
|
* SF Patch #432457 by Jason Tishler: support for readline 4.2.Guido van Rossum2001-07-101-4/+49
| | | | | | | This patch allows the readline module to build cleanly with GNU readline 4.2 without breaking the build for earlier GNU readline versions. The configure script checks for the presence of rl_completion_matches in libreadline.