mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.6 KiB

  1. --- ./Modules/Setup.dist.orig 2004-12-09 02:31:09.905092984 +0100
  2. +++ ./Modules/Setup.dist 2004-12-09 02:36:59.073011392 +0100
  3. @@ -147,7 +147,7 @@
  4. # modules are to be built as shared libraries (see above for more
  5. # detail; also note that *static* reverses this effect):
  6. -#*shared*
  7. +*shared*
  8. # GNU readline. Unlike previous Python incarnations, GNU readline is
  9. # now incorporated in an optional module, configured in the Setup file
  10. @@ -157,7 +157,7 @@
  11. # it, depending on your system -- see the GNU readline instructions.
  12. # It's okay for this to be a shared library, too.
  13. -#readline readline.c -lreadline -ltermcap
  14. +readline readline.c -lreadline -ltermcap
  15. # Modules that should always be present (non UNIX dependent):
  16. @@ -197,25 +197,25 @@
  17. # Socket module helper for SSL support; you must comment out the other
  18. # socket line above, and possibly edit the SSL variable:
  19. -#SSL=/usr/local/ssl
  20. -#_ssl _ssl.c \
  21. -# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
  22. -# -L$(SSL)/lib -lssl -lcrypto
  23. +SSL=/usr
  24. +_ssl _ssl.c \
  25. + -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
  26. + -L$(SSL)/lib -lssl -lcrypto
  27. # The crypt module is now disabled by default because it breaks builds
  28. # on many systems (where -lcrypt is needed), e.g. Linux (I believe).
  29. #
  30. # First, look at Setup.config; configure may have set this for you.
  31. -#crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
  32. +crypt cryptmodule.c -lcrypt # crypt(3); needs -lcrypt on some systems
  33. # Some more UNIX dependent modules -- off by default, since these
  34. # are not supported by all UNIX systems:
  35. #nis nismodule.c -lnsl # Sun yellow pages -- not everywhere
  36. -#termios termios.c # Steen Lumholt's termios module
  37. -#resource resource.c # Jeremy Hylton's rlimit interface
  38. +termios termios.c # Steen Lumholt's termios module
  39. +resource resource.c # Jeremy Hylton's rlimit interface
  40. # Multimedia modules -- off by default.
  41. @@ -336,7 +336,7 @@
  42. # -lX11
  43. # Lance Ellinghaus's syslog module
  44. -#syslog syslogmodule.c # syslog daemon interface
  45. +syslog syslogmodule.c # syslog daemon interface
  46. # Curses support, requring the System V version of curses, often
  47. @@ -378,7 +378,7 @@
  48. #
  49. # First, look at Setup.config; configure may have set this for you.
  50. -#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
  51. +gdbm gdbmmodule.c -I/usr/include -L/usr/lib -lgdbm
  52. # Sleepycat Berkeley DB interface.
  53. @@ -442,7 +442,7 @@
  54. # Andrew Kuchling's zlib module.
  55. # This require zlib 1.1.3 (or later).
  56. # See http://www.gzip.org/zlib/
  57. -#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
  58. +zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
  59. # Interface to the Expat XML parser
  60. #