boost.patch.nopython 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. Index: Jamfile
  2. --- Jamfile.orig 2005-02-27 18:28:08 +0100
  3. +++ Jamfile 2005-08-13 14:34:09 +0200
  4. @@ -64,15 +64,6 @@
  5. <library>. By default all libraries attempt to
  6. build.
  7. - --with-python-root[=PYTHON_ROOT]
  8. - Build Boost.Python libraries with the Python
  9. - devel packages located at PYTHON_ROOT.
  10. - Default PYTHON_ROOT; C:\\tools\\python on Win32.
  11. - Default PYTHON_ROOT; /usr/local on Unix, Linux, etc.
  12. - Default PYTHON_ROOT; /usr on Cygwin.
  13. -
  14. - --with-pydebug Build Boost.Python libraries using the
  15. - Python debug runtime.
  16. " ;
  17. EXIT "" ;
  18. }
  19. @@ -124,17 +115,6 @@
  20. local include-locate = [ MATCH "^--includedir=(.*)" : $(ARGV) ] ;
  21. include-locate ?= $(boost-locate)/include ;
  22. -# location of python
  23. -local python-root = [ MATCH "^--with-python-root=(.*)" : $(ARGV) ] ;
  24. -PYTHON_ROOT ?= $(python-root) ;
  25. -
  26. -# variant for pydebug build
  27. -local with-debug-python ;
  28. -if --with-pydebug in $(ARGV)
  29. -{
  30. - with-debug-python = debug-python ;
  31. -}
  32. -
  33. # libraries to disable building, etc.
  34. local without-libraries = [ MATCH "^--without-(.*)" : $(ARGV) ] ;
  35. @@ -144,9 +124,6 @@
  36. {
  37. switch $(arg)
  38. {
  39. - case --with-python-root=* : local _ ;
  40. - case --with-pydebug : local _ ;
  41. -
  42. case --with-* :
  43. with-libraries += [ MATCH "^--with-(.*)" : $(arg) ] ;
  44. }
  45. @@ -155,9 +132,6 @@
  46. #
  47. project-root ;
  48. -# bring in the rules for python
  49. -import python ;
  50. -
  51. #
  52. local version-tag = [ MATCH "^([^.]+).([^.]+)" : $(BOOST_VERSION) ] ;
  53. version-tag = $(version-tag:J="_") ;
  54. @@ -176,7 +150,6 @@
  55. local lib-build =
  56. debug release
  57. - [ cond $(with-debug-python) : debug-python ]
  58. [ cond $(NT) : <runtime-link>static/dynamic ]
  59. <threading>single/multi
  60. ;
  61. Index: status/Jamfile
  62. --- status/Jamfile.orig 2005-06-23 11:57:18 +0200
  63. +++ status/Jamfile 2005-08-13 14:35:31 +0200
  64. @@ -44,7 +44,6 @@
  65. subinclude libs/program_options/test ; # test-suite program_options
  66. subinclude libs/property_map/test ; # test-suite property_map
  67. subinclude libs/ptr_container/test ; # test-suite ptr_container
  68. -subinclude libs/python/test ; # test-suite python
  69. subinclude libs/random/test ; # test-suite random
  70. subinclude libs/range/test ; # test-suite range
  71. subinclude libs/regex/test ; # test-suite regex