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.

99 lines
3.5 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/base/python/python-setup.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2005 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. --- ./Modules/Setup.dist.orig 2004-12-09 02:31:09.905092984 +0100
  20. +++ ./Modules/Setup.dist 2004-12-09 02:36:59.073011392 +0100
  21. @@ -147,7 +147,7 @@
  22. # modules are to be built as shared libraries (see above for more
  23. # detail; also note that *static* reverses this effect):
  24. -#*shared*
  25. +*shared*
  26. # GNU readline. Unlike previous Python incarnations, GNU readline is
  27. # now incorporated in an optional module, configured in the Setup file
  28. @@ -157,7 +157,7 @@
  29. # it, depending on your system -- see the GNU readline instructions.
  30. # It's okay for this to be a shared library, too.
  31. -#readline readline.c -lreadline -ltermcap
  32. +readline readline.c -lreadline -ltermcap
  33. # Modules that should always be present (non UNIX dependent):
  34. @@ -197,25 +197,25 @@
  35. # Socket module helper for SSL support; you must comment out the other
  36. # socket line above, and possibly edit the SSL variable:
  37. -#SSL=/usr/local/ssl
  38. -#_ssl _ssl.c \
  39. -# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
  40. -# -L$(SSL)/lib -lssl -lcrypto
  41. +SSL=/usr
  42. +_ssl _ssl.c \
  43. + -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
  44. + -L$(SSL)/lib -lssl -lcrypto
  45. # The crypt module is now disabled by default because it breaks builds
  46. # on many systems (where -lcrypt is needed), e.g. Linux (I believe).
  47. #
  48. # First, look at Setup.config; configure may have set this for you.
  49. -#crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
  50. +crypt cryptmodule.c -lcrypt # crypt(3); needs -lcrypt on some systems
  51. # Some more UNIX dependent modules -- off by default, since these
  52. # are not supported by all UNIX systems:
  53. #nis nismodule.c -lnsl # Sun yellow pages -- not everywhere
  54. -#termios termios.c # Steen Lumholt's termios module
  55. -#resource resource.c # Jeremy Hylton's rlimit interface
  56. +termios termios.c # Steen Lumholt's termios module
  57. +resource resource.c # Jeremy Hylton's rlimit interface
  58. # Multimedia modules -- off by default.
  59. @@ -336,7 +336,7 @@
  60. # -lX11
  61. # Lance Ellinghaus's syslog module
  62. -#syslog syslogmodule.c # syslog daemon interface
  63. +syslog syslogmodule.c # syslog daemon interface
  64. # Curses support, requring the System V version of curses, often
  65. @@ -378,7 +378,7 @@
  66. #
  67. # First, look at Setup.config; configure may have set this for you.
  68. -#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
  69. +gdbm gdbmmodule.c -I/usr/include -L/usr/lib -lgdbm
  70. # Sleepycat Berkeley DB interface.
  71. @@ -442,7 +442,7 @@
  72. # Andrew Kuchling's zlib module.
  73. # This require zlib 1.1.3 (or later).
  74. # See http://www.gzip.org/zlib/
  75. -#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
  76. +zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
  77. # Interface to the Expat XML parser
  78. #