diff options
author | Guido van Rossum <guido@python.org> | 2000-02-29 15:52:40 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-29 15:52:40 (GMT) |
commit | 61b705a5700fadada031857f2bbf6dc94003820e (patch) | |
tree | 0db38bcee18e87599d3af801b3db0a4c00bb7b98 /Modules/Setup.in | |
parent | 43713e5a2899930a8698e244b0d0fef59a676d17 (diff) | |
download | cpython-61b705a5700fadada031857f2bbf6dc94003820e.zip cpython-61b705a5700fadada031857f2bbf6dc94003820e.tar.gz cpython-61b705a5700fadada031857f2bbf6dc94003820e.tar.bz2 |
Patch by Fred Gansevles (the module's original author).
This patch fixes 3 small problems.
1) If a map is used which is generated with 'makedbm -a',
the trailing '\0' is now handled correctely.
2) The nis.maps() function skipped the first map in the output list.
3) The library '-lnsl' is added in Setup.in (needed on Linux glibc2 and
Solaris systems. Maybe on other systems too?)
[I note that this still doesn't work when you are using NIS+ --GvR]
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index 2343ed8..45bdbac 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -164,7 +164,7 @@ socket socketmodule.c # socket(2); not on ancient System V # Some more UNIX dependent modules -- off by default, since these # are not supported by all UNIX systems: -#nis nismodule.c # Sun yellow pages -- not everywhere +#nis nismodule.c -lnsl # Sun yellow pages -- not everywhere #termios termios.c # Steen Lumholt's termios module #resource resource.c # Jeremy Hylton's rlimit interface |