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.

112 lines
4.0 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 - 2004 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 Thu Aug 8 21:52:42 2002
  20. +++ ./Modules/Setup.dist Fri Jan 10 20:01:20 2003
  21. @@ -130,7 +130,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. --- ./Modules/Setup.dist.orig Thu Aug 23 03:24:42 2001
  29. +++ ./Modules/Setup.dist Thu Oct 4 08:33:35 2001
  30. @@ -136,7 +136,7 @@
  31. # it, depending on your system -- see the GNU readline instructions.
  32. # It's okay for this to be a shared library, too.
  33. -#readline readline.c -lreadline -ltermcap
  34. +readline readline.c -lreadline -ltermcap
  35. # Modules that should always be present (non UNIX dependent):
  36. @@ -177,25 +177,25 @@
  37. # Socket module compiled with SSL support; you must comment out the other
  38. # socket line above, and possibly edit the SSL variable:
  39. -#SSL=/usr/local/ssl
  40. -#_ssl _ssl.c \
  41. -# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
  42. -# -L$(SSL)/lib -lssl -lcrypto
  43. +SSL=/usr
  44. +_ssl _ssl.c \
  45. + -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
  46. + -L$(SSL)/lib -lssl -lcrypto
  47. # The crypt module is now disabled by default because it breaks builds
  48. # on many systems (where -lcrypt is needed), e.g. Linux (I believe).
  49. #
  50. # First, look at Setup.config; configure may have set this for you.
  51. -#crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
  52. +crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
  53. # Some more UNIX dependent modules -- off by default, since these
  54. # are not supported by all UNIX systems:
  55. #nis nismodule.c -lnsl # Sun yellow pages -- not everywhere
  56. -#termios termios.c # Steen Lumholt's termios module
  57. -#resource resource.c # Jeremy Hylton's rlimit interface
  58. +termios termios.c # Steen Lumholt's termios module
  59. +resource resource.c # Jeremy Hylton's rlimit interface
  60. # Multimedia modules -- off by default.
  61. @@ -231,8 +231,8 @@
  62. # FTP archive sites. One URL for it is:
  63. # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
  64. -#GMP=/ufs/guido/src/gmp
  65. -#mpz mpzmodule.c -I$(GMP) $(GMP)/libgmp.a
  66. +#GMP=/usr
  67. +#mpz mpzmodule.c -I$(GMP) $(GMP)/libgmp.a
  68. # SGI IRIX specific modules -- off by default.
  69. @@ -333,7 +333,7 @@
  70. # Lance Ellinghaus's modules:
  71. #rotor rotormodule.c # enigma-inspired encryption
  72. -#syslog syslogmodule.c # syslog daemon interface
  73. +syslog syslogmodule.c # syslog daemon interface
  74. # Curses support, requring the System V version of curses, often
  75. @@ -376,7 +376,7 @@
  76. #
  77. # First, look at Setup.config; configure may have set this for you.
  78. -#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
  79. +gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
  80. # Berkeley DB interface.
  81. @@ -432,7 +432,7 @@
  82. # Andrew Kuchling's zlib module.
  83. # This require zlib 1.1.3 (or later).
  84. # See http://www.cdrom.com/pub/infozip/zlib/
  85. -#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
  86. +zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
  87. # Interface to the Expat XML parser
  88. #