diff options
author | frueauf <frueauf@pkgsrc.org> | 1998-05-08 16:39:01 +0000 |
---|---|---|
committer | frueauf <frueauf@pkgsrc.org> | 1998-05-08 16:39:01 +0000 |
commit | 5e7e8f81191678f30bf34072ba1f2d54927f6249 (patch) | |
tree | e2cff70d36dc4e41cf333ec40e9b386a96908463 /lang/python | |
parent | 692004ef0b51311527804d3a4558b909cecb920f (diff) | |
download | pkgsrc-5e7e8f81191678f30bf34072ba1f2d54927f6249.tar.gz |
Link cryptmodule against -lcrypt, fixes pr 5422 by Jaromir Dolecek.
Diffstat (limited to 'lang/python')
-rw-r--r-- | lang/python/files/Setup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/python/files/Setup b/lang/python/files/Setup index b0e5233355a..7b5955b0d4b 100644 --- a/lang/python/files/Setup +++ b/lang/python/files/Setup @@ -146,7 +146,7 @@ errno errnomodule.c # posix (UNIX) errno values # The crypt module is now disabled by default because it breaks builds # on many systems (where -lcrypt is needed), e.g. Linux (I believe). -crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems +crypt cryptmodule.c -lcrypt # crypt(3); needs -lcrypt on some systems # Some more UNIX dependent modules -- off by default, since these |