summaryrefslogtreecommitdiffstats
path: root/configure.in
Commit message (Collapse)AuthorAgeFilesLines
* Autotest for netpacket/packet.h, as it is not available on all Linux versions.Martin v. Löwis2001-08-101-1/+1
| | | | Depend AF_PACKET on HAVE_NETPACKET_PACKET_H. Fixes #449157
* Expose nl_langinfo through locale where available.Martin v. Löwis2001-08-101-1/+2
|
* Move IPv6 test further down so that usage of -lnsl has been tested.Martin v. Löwis2001-08-091-144/+153
| | | | Recognize Solaris IPv6 by checking /etc/netconfig.
* Patch #433537: Cache ac_cv_bad_static_forward.Martin v. Löwis2001-08-091-8/+13
| | | | Also move up AC_AIX and AC_MINIX further up.
* Various fixes to streamline build process on Mac OS X:Jack Jansen2001-08-081-15/+36
| | | | | | | | | | | - 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.
* Remove redundant check for 'getaddrinfo' (it's already checked the blockThomas Wouters2001-08-081-1/+1
| | | | before.)
* Auto-detect hstrerror. Raise socket.herror in PyH_Error. Register the threeMartin v. Löwis2001-08-041-1/+1
| | | | exception classes in the module dictionary.
* - On OSX add -no-cpp-precomp to OPT. The user still has to manually specifyJack Jansen2001-08-031-2/+7
| | | | | | | | | | 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-1/+1
|
* Allow usage of gcc on OSF/1; this reverts rev 1.23 of configure.in,Martin v. Löwis2001-07-251-2/+0
| | | | and fixes bug #438786.
* Autocheck for snprintf, and use sprintf if it is not available.Martin v. Löwis2001-07-241-1/+1
| | | | | 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-2/+0
| | | | sa_family.
* Patch #429442 from Jason Tishler: Corrects sys.platform andAndrew M. Kuchling2001-07-201-0/+1
| | | | | 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-1/+5
|
* Patch #418659: Fixes for UnixWare and ReliantUnix.Martin v. Löwis2001-07-191-98/+101
| | | | | | 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-1/+2
|
* [Bug #438050] Check for sys/poll.h in configure scriptAndrew M. Kuchling2001-07-141-1/+1
|
* Re-do the broken-nice() patch to break less platforms. Hopefully none :PThomas Wouters2001-07-111-1/+18
| | | | | | | 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-1/+1
| | | | | | | Work around Linux's nonstandard nice() systemcall, which does not return the new priority. This closes SF bug #439990.
* Check for --with-pydebug earlier, and record the result.Fred Drake2001-07-111-15/+21
| | | | | | | When setting up the basic OPT value for GCC, only use optimization if not using debugging mode. Fix a typo in a comment in the IPv6 check.
* SF Patch #432457 by Jason Tishler: support for readline 4.2.Guido van Rossum2001-07-101-0/+4
| | | | | | | 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.
* Default to ucs2 when no argument to --enable-unicode is specified.Martin v. Löwis2001-06-271-6/+2
|
* Support using UCS-4 as the Py_UNICODE type:Martin v. Löwis2001-06-261-19/+54
| | | | | | | | | | Add configure option --enable-unicode. Add config.h macros Py_USING_UNICODE, PY_UNICODE_TYPE, Py_UNICODE_SIZE, SIZEOF_WCHAR_T. Define Py_UCS2. Encode and decode large UTF-8 characters into single Py_UNICODE values for wide Unicode types; likewise for UTF-16. Remove test whether sizeof Py_UNICODE is two.
* Emulate inet_{pton,ntop} on systems that don't provide it.Martin v. Löwis2001-06-241-1/+1
|
* Patch #401196: Configuration machinery for IPv6.Martin v. Löwis2001-06-231-0/+284
| | | | | Contributed by Jun-ichiro "itojun" Hagino. get{addr,name}info emulation code taken from WIDE.
* Added a MACHDEP_OBJS to the python link. Use this on MacOSX to includeJack Jansen2001-06-191-1/+17
| | | | | | | Mac/macglue.c into the core interpreter. This file contains the glue code that allows extension modules for Mac toolboxes to live in different shared libraries but still communicate with each other. The glue code is controlled by the USE_MAC_TOOLBOX_GLUE define.
* Add a check for sys/modem.h, needed by termios on HP-UX.Fred Drake2001-05-111-1/+1
|
* Process Setup* files with makesetup in the same order as the makefile.Neil Schemenauer2001-04-211-1/+1
|
* Bump the version number in more placesGuido van Rossum2001-04-181-1/+1
|
* Unixware 7 support by Billy G. Allie (SF patch 413011)Guido van Rossum2001-04-111-80/+109
|
* "install -d" does not work on BSDI systems even though autoconf thinksNeil Schemenauer2001-03-311-0/+9
| | | | install works on that system. Use "install-sh" on BSDI.
* Add CONFIG_ARGS Makefile variable (saves the arguments passedNeil Schemenauer2001-03-221-0/+4
| | | | to configure).
* Use proper compiler flags on UnixWare.Martin v. Löwis2001-03-211-0/+11
| | | | Closes bug #231439.
* Get rid of --with-check-import-case. (Jason Tishler, SF #409924)Guido van Rossum2001-03-201-12/+0
|
* Define __EXTENSIONS__ on Solaris. Fixes posixmodule error in bug #232787.Martin v. Löwis2001-03-061-0/+5
|
* Move all knowledge that $(MAINOBJ) is built in the Modules/ directoryFred Drake2001-03-061-2/+2
| | | | | | | | into Makefile.pre.in; the configure script will only determine the basename of the file. This fixes installation of a Python built using C++, reported by Greg Wilson.
* Add Python/ prefix to files in LIBOBJS. This closes SF bug "[ #404827 ] PythonNeil Schemenauer2001-03-041-12/+19
| | | | Makefile: LIBOBJS incorrect".
* Add Vladimir Marangozov's object allocator. It is disabled by default. ThisNeil Schemenauer2001-02-271-0/+10
| | | | closes SF patch #401229.
* Don't create the Include directory if building outside of the sourceNeil Schemenauer2001-02-271-1/+1
| | | | directory. Closes SF #403930.
* Rip out various module-enabling switches, made obsolete by setup.pyAndrew M. Kuchling2001-02-211-121/+0
|
* Revert SF patch #103655. Martin Löwis says:Neil Schemenauer2001-02-191-1/+1
| | | | | | | | | | | | | | -shared does the following things: - invoke the linker with -G -dy -z text (the latter only if -mimpure-text was not given) - drop crt1.o from the list of objects being linked - drop -lc from the list of libraries being linked OTOH, -G is just passed through to the linker. The things that -shared does are necessary: crt1.o defines _start, and requires main, so it should not be present in a shared library. Likewise, -z text should be used to detect position-dependent code at compile time.
* Use -G option for linking shared libraries on Solaris (SF patch #103656).Neil Schemenauer2001-02-191-1/+5
| | | | | | Compile shared object files using -fPIC option when using GCC on Solaris (SF patch #103865). Closes bug #132783. Move config.c generated by makesetup to the Modules directory.
* Add Include to the list of source directories.Neil Schemenauer2001-02-161-1/+1
|
* Simplify linking on AIX and BeOS (SF patch #103679).Neil Schemenauer2001-02-161-11/+17
|
* Patches for AIX. Checked by Benjamin Collar.Marc-André Lemburg2001-02-091-2/+2
|
* - Remove Guido's LINKCC=CXX experiment.Neil Schemenauer2001-01-271-5/+8
| | | | - Cygwin doesn't want CCSHARED flag when bulding the interpreter DLL.
* Restore --with-suffix option. AC_EXEEXT doesn't aways do what the user wantsNeil Schemenauer2001-01-271-0/+8
| | | | and an option is more friendly then manually setting a variable.
* Removed setup.cfg from the list of generated filesAndrew M. Kuchling2001-01-261-2/+2
| | | | Fixed typo in message
* - LIBRARY is now a SUBST variable.Neil Schemenauer2001-01-261-17/+36
| | | | | | | | | | - Add CFLAGSFORSHARED variable. configure sets this to CCSHARED if LDLIBRARY is a shared library. - Remove -fPIC from OPT, it has no business there. - Change CCSHARED option for Linux to -fPIC. It should probably be -fPIC on a few other platforms as well. - Don't create silly boot Makefile, create Setup files and run makesetup instead.
* - build now happens in toplevel directory, add subdir paths to filenamesNeil Schemenauer2001-01-241-70/+69
| | | | | | | | | - change EXE to EXTEXT, there is an autoconf macro for it - use PROG_INSTALL macro rather than always using install-sh - add option to disable signal module (simplifies the makefile) - create subdirs for object files (when building out of src dir) - don't generate subdir makefiles - generate "boot" makefile