~ubuntu-branches/ubuntu/natty/yapgvb/natty

« back to all changes in this revision

Viewing changes to config_win32.py

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2009-08-05 06:19:49 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090805061949-uvt1hpjgqkvzszsk
Tags: 1.2.3-0ubuntu1
* New upstream release.
* Update watch file.
* debian/{control,rules}: Add dpatch support.
* Include all changes to the configuration file in 01-config_linux2_py.dpatch
  patch.
* debian/control:
  - Bump Standards-Version.
  - Update homepage.
* debian/doc-base:
  - Remove top-level Apps section.
  - Fix path of HTML files.
* Update debian/copyright.
* Remove empty debian/README.Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from config_generic import *
 
2
 
 
3
 
 
4
 
 
5
# Everything below this line is irrelevant if use_boost = False
 
6
# --------------------------------------------------------------------
 
7
 
 
8
 
 
9
#
 
10
# It's a huge headache to maintain the boost backend on Windows,
 
11
# so only the pure-python backend is supported.  If you want to
 
12
# try to compile the boost backend, set use_boost = True in this file.
 
13
#
 
14
 
1
15
# Edit this to reflect the location of your boost root directory
2
16
boost_location = 'c:/docume~1/administrator/desktop/boost_1_33_1/boost_1_33_1'
3
17
 
4
18
# You will probably need to edit this to point to your compiled boost dll directory
5
19
boost_python_dll_location = boost_location + '/bin/boost/libs/python/build/boost_python.dll/vc-7_1/release/threading-multi'
6
20
 
 
21
 
7
22
# Complete path of the boost python dll.  We will need to bundle it with our distribution 
8
23
# since Windows users can't be expected to have boost installed.
9
24
boost_python_dll_path = boost_python_dll_location + '/boost_python-vc71-mt-1_33_1.dll'