Martin v. Löwis
19d173486b
Patch #752671 : NetBSD needs to link libintl to _locale.so.
2003-06-14 21:03:05 +00:00
Martin v. Löwis
d141a8c472
Use -R instead of -rpath on Solaris. Fixes #749911 .
2003-06-14 15:20:28 +00:00
Martin v. Löwis
368de8f17f
Give a warning if SO is set. Fixes #610332 .
2003-06-14 14:46:38 +00:00
Martin v. Löwis
8316feb155
Explicitly undefine PACKAGE_ variables. Fixes #746012 .
2003-06-14 07:48:07 +00:00
Martin v. Löwis
96ce805725
Modified Patch #745620 : build shared lib as ".so" for NetBSD.
2003-05-31 07:58:45 +00:00
Neal Norwitz
b44f16592f
SF patch #719359 , fix test_long failure on OSF/1 with vendor cc
...
This also fixes several other bugs and patches by providing
the proper arguments to cc: 738066 and 741806 need -ieee,
693094 needs -std
2003-05-26 14:11:55 +00:00
Martin v. Löwis
4ee6eef22f
Patch #742741 : Check for true in different paths, support -pthread.
2003-05-26 05:37:51 +00:00
Martin v. Löwis
858f817d28
Modified patch #742126 : Don't define _XOPEN_SOURCE for OpenBSD 3.3.
2003-05-24 12:35:47 +00:00
Neal Norwitz
8225103d2d
Get test_ioctl to pass on HPUX 11.
...
TIOCGPGRP and many other definitions come from bsdtty.h, so it needs
to be included at least on HPUX.
2003-05-23 14:35:24 +00:00
Martin v. Löwis
c2409b4f5a
Update patch #732284 : Correct versions of OpenUNIX, UnixWare, add OpenServer.
2003-05-11 05:53:41 +00:00
Martin v. Löwis
f2e488db23
Patch #732479 : Fix typos.
2003-05-05 22:00:11 +00:00
Martin v. Löwis
53e73c36ee
Patch #732284 : Disable _XOPEN_SOURCE on UnixWare 7.
2003-05-05 05:13:18 +00:00
Martin v. Löwis
5f433f0ef4
Patch #732234 : Check for -Kthread.
2003-05-05 05:05:30 +00:00
Martin v. Löwis
95c419b20a
Try linking hstrerror and inet_aton tests. Look for these functions in -lresolv.
2003-05-03 12:10:48 +00:00
Martin v. Löwis
d3545ec5e3
Patch #730170 : Check for sem_init in -lpthread. Fixes #727051 .
2003-05-03 11:25:43 +00:00
Martin v. Löwis
bcd93962ce
Patch #730826 : Enable extensions on NetBSD 2.0.
2003-05-03 10:32:18 +00:00
Martin v. Löwis
e941617671
Patch #724588 : Check whether the address of hstrerror and inet_pton can
...
be taken, and define NI_MAX{HOST|SERV} if necessary.
2003-05-03 10:12:45 +00:00
Neal Norwitz
7f2588c073
SF patch #706707 , time.tzset standards compliance update by Stuart Bishop
...
Update configure and test to use proper timezone specifications
2003-04-11 15:35:53 +00:00
Neal Norwitz
0b27ff92d2
SF patch #712367 , get build working on AIX
...
configure change is necessary to pass "." to makexp_aix so that
dynamic modules work
setup change gets curses working
2003-03-31 15:53:49 +00:00
Martin v. Löwis
f26d63b3e1
Patch #650412 : Check whether the address of flock and getpagesize
...
can be taken, and use _SC_PAGE_SIZE if getpagesize is not available.
2003-03-30 17:23:49 +00:00
Jack Jansen
150753cb22
The test for setpgrp having two arguments didn't actually test anything.
...
For reasons unknown this suddenly started to matter (since Martin's 1.396
checkin? But why?), at least on MacOSX. Added a real test similar to the
getpgrp argument test.
2003-03-29 22:07:47 +00:00
Martin v. Löwis
a9d71420a6
Disable _XOPEN_SOURCE for Solaris 2.6. Fixes #690317 .
2003-03-28 18:43:31 +00:00
Martin v. Löwis
4daacb1a82
Add test for setpgrp. Fixes #690317 .
2003-03-28 18:37:01 +00:00
Neal Norwitz
865400fd07
/dev/ptmx doesn't exist on AIX, they had to be different and use /dev/ptc.
...
Otherwise, the 2 devices seem to work the same for allocating a pseudo-tty.
2003-03-21 01:42:58 +00:00
Jack Jansen
7b59b42a38
Added a define EXTRAMACHDEPPATH which can be used to add sys.path items
...
for specific platforms. Use this to add plat-mac and
plat-mac/lib-scriptpackages on MacOSX. Also tested for not having adverse
effects on Linux, and I think this code isn't used on Windows anyway.
Fixes #661521 .
2003-03-17 15:44:10 +00:00
Guido van Rossum
d11b62edd0
- New function time.tzset() provides access to the C library tzet()
...
function, if supported. (SF patch #675422 , by Stuart Bishop.)
2003-03-14 21:51:36 +00:00
Jack Jansen
c28fc37ed1
Refer to the Mac OS X bundle_loader by the altbininstall name, so that
...
building distutils extension modules also works if you've only done
an altinstall. Fixes bug #677293 .
2003-02-25 13:14:43 +00:00
Neal Norwitz
6eb37f0eea
Fix SF bug #691793 , Python 2.3a2 build fails on Tru64
...
Need to make sure that preprocessor directives start in first column.
This means we can't indent code which has preprocessor directives,
nor have a space between [ #include for example.
2003-02-23 23:28:15 +00:00
Jack Jansen
97e3f0060c
Disabled -prebind again when linking the interpreter on MacOSX. It caused
...
a serious slowdown when loading dynamic modules that depend on large shared
libraries or frameworks.
2003-02-23 22:59:01 +00:00
Guido van Rossum
162e38c6a3
- sys.path[0] (the directory from which the script is loaded) is now
...
turned into an absolute pathname, unless it is the empty string.
(SF patch #664376 , by Skip Montanaro.)
2003-02-19 15:25:10 +00:00
Neal Norwitz
10b214c2fd
Use configure to check for inet_aton.
2003-02-13 02:11:10 +00:00
Martin v. Löwis
dfc33fd8db
Don't use Posix semaphores on Solaris 8. Fixes #662787 .
2003-01-21 10:14:41 +00:00
Jack Jansen
0780e470dc
On MacOSX, added -prebind option to link phase for executable (and
...
framework, if applicable). This speeds up startup time by up to 50%.
2003-01-20 10:47:48 +00:00
Barry Warsaw
fe33b795d5
Test for presence of sysexits.h and set HAVE_SYSEXITS_H if so. Used
...
by posixmodule.c.
2003-01-07 22:42:49 +00:00
Skip Montanaro
decc6a47df
Split OPT make variable into OPT and BASECFLAGS. The latter contains those
...
compiler flags which are necessary to get a clean compile. The former is
for user-specified optimizer, debug, trace fiddling. See patch 640843.
Add /sw/lib and /sw/include to setup.py search paths on Darwin to take
advantage of fink goodies.
Add scriptsinstall target to Makefile to install certain scripts from
Tools/scripts directory.
2003-01-01 20:07:49 +00:00
Martin v. Löwis
14e73b1864
Expose I_ constants. Auto-detect stropts.h. Properly configure the slave terminal.
2003-01-01 09:51:12 +00:00
Martin v. Löwis
24a880b499
Patch #656590 : /dev/ptmx support for ptys.
2002-12-31 12:55:15 +00:00
Jack Jansen
83f898c86c
Adapted for the move of Mac/Lib to Lib/plat-mac. Makefile.pre.in now
...
knows about plat-mac subdirectories, and configure adds a variable
EXTRAPLATDIR. These together take care of copying Lib/plat-mac to
the destination on darwin.
Adding plat-mac is still done with a .pth file which is only created when
you do a framework build. I'm not 100% happy with this, but fixing it
really needs a functional pythonw in non-framework builds, and I don't
think I can do that before 2.3a1 (but I'll try:-).
2002-12-30 22:23:40 +00:00
Guido van Rossum
faf5e4d48f
Patch 659834 by Magnus Lie Hetland:
...
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).
2002-12-30 16:25:41 +00:00
Martin v. Löwis
438b534ad0
Patch #657889 : Implement posix.getloadavg.
2002-12-27 10:16:42 +00:00
Martin v. Löwis
9c36c29156
Use wcscoll for _locale.strcoll if available.
2002-12-21 18:34:06 +00:00
Martin v. Löwis
03d00d51ba
Fix if-then-else-fi structure.
2002-12-19 19:03:31 +00:00
Martin v. Löwis
7e4cfcb6bc
Unsupport --without-universal-newlines.
2002-12-19 16:21:49 +00:00
Martin v. Löwis
79f3c53ee8
Patch #651289 : Fix quoting errors.
2002-12-11 12:51:58 +00:00
Martin v. Löwis
9ef3376780
Avoid semicolon usage in echo.
2002-12-02 22:23:56 +00:00
Martin v. Löwis
779ffc066e
Add compile-time errors for unsupported systems.
2002-12-02 22:17:01 +00:00
Martin v. Löwis
39f59b089d
Remove MALLOC_ZERO_RETURNS_NULL.
2002-11-23 09:13:40 +00:00
Martin v. Löwis
d584368dec
Patch #639371 : Remove FreeBSD 5 specific test, test for ctermid_r, setgroups
...
prototypes explicitly.
2002-11-21 20:41:28 +00:00
Martin v. Löwis
e1172588e6
The libsocket/libnsl problem is specific to IRIX 4. Confirmed by Tim Rice.
2002-11-13 08:51:19 +00:00
Martin v. Löwis
678fc1ee7d
Don't define _XOPEN_SOURCE and _POSIX_C_SOURCE on FreeBSD 5.0. Fixes #636318 .
2002-11-12 06:04:39 +00:00