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.

115 lines
4.1 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 - 2003 Clifford Wolf
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. --- ./Modules/Setup.dist.orig Thu Aug 8 21:52:42 2002
  23. +++ ./Modules/Setup.dist Fri Jan 10 20:01:20 2003
  24. @@ -130,7 +130,7 @@
  25. # modules are to be built as shared libraries (see above for more
  26. # detail; also note that *static* reverses this effect):
  27. -#*shared*
  28. +*shared*
  29. # GNU readline. Unlike previous Python incarnations, GNU readline is
  30. # now incorporated in an optional module, configured in the Setup file
  31. --- ./Modules/Setup.dist.orig Thu Aug 23 03:24:42 2001
  32. +++ ./Modules/Setup.dist Thu Oct 4 08:33:35 2001
  33. @@ -136,7 +136,7 @@
  34. # it, depending on your system -- see the GNU readline instructions.
  35. # It's okay for this to be a shared library, too.
  36. -#readline readline.c -lreadline -ltermcap
  37. +readline readline.c -lreadline -ltermcap
  38. # Modules that should always be present (non UNIX dependent):
  39. @@ -177,25 +177,25 @@
  40. # Socket module compiled with SSL support; you must comment out the other
  41. # socket line above, and possibly edit the SSL variable:
  42. -#SSL=/usr/local/ssl
  43. -#_socket socketmodule.c \
  44. -# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
  45. -# -L$(SSL)/lib -lssl -lcrypto
  46. +SSL=/usr
  47. +_socket socketmodule.c \
  48. + -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
  49. + -L$(SSL)/lib -lssl -lcrypto
  50. # The crypt module is now disabled by default because it breaks builds
  51. # on many systems (where -lcrypt is needed), e.g. Linux (I believe).
  52. #
  53. # First, look at Setup.config; configure may have set this for you.
  54. -#crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
  55. +crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
  56. # Some more UNIX dependent modules -- off by default, since these
  57. # are not supported by all UNIX systems:
  58. #nis nismodule.c -lnsl # Sun yellow pages -- not everywhere
  59. -#termios termios.c # Steen Lumholt's termios module
  60. -#resource resource.c # Jeremy Hylton's rlimit interface
  61. +termios termios.c # Steen Lumholt's termios module
  62. +resource resource.c # Jeremy Hylton's rlimit interface
  63. # Multimedia modules -- off by default.
  64. @@ -231,8 +231,8 @@
  65. # FTP archive sites. One URL for it is:
  66. # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
  67. -#GMP=/ufs/guido/src/gmp
  68. -#mpz mpzmodule.c -I$(GMP) $(GMP)/libgmp.a
  69. +#GMP=/usr
  70. +#mpz mpzmodule.c -I$(GMP) $(GMP)/libgmp.a
  71. # SGI IRIX specific modules -- off by default.
  72. @@ -333,7 +333,7 @@
  73. # Lance Ellinghaus's modules:
  74. #rotor rotormodule.c # enigma-inspired encryption
  75. -#syslog syslogmodule.c # syslog daemon interface
  76. +syslog syslogmodule.c # syslog daemon interface
  77. # Curses support, requring the System V version of curses, often
  78. @@ -376,7 +376,7 @@
  79. #
  80. # First, look at Setup.config; configure may have set this for you.
  81. -#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
  82. +gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
  83. # Berkeley DB interface.
  84. @@ -432,7 +432,7 @@
  85. # Andrew Kuchling's zlib module.
  86. # This require zlib 1.1.3 (or later).
  87. # See http://www.cdrom.com/pub/infozip/zlib/
  88. -#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
  89. +zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
  90. # Interface to the Expat XML parser
  91. #