37 |
# locations of doc building executables |
# locations of doc building executables |
38 |
doxygen_path = '' |
doxygen_path = '' |
39 |
epydoc_path = '' |
epydoc_path = '' |
40 |
|
epydoc_pythonpath = '' |
41 |
|
|
42 |
# names of c and c++ compilers to use |
# names of c and c++ compilers to use |
43 |
cc = 'gcc' |
cc = 'gcc' |
92 |
# try to import <hostname>_options |
# try to import <hostname>_options |
93 |
if usegcc==0: |
if usegcc==0: |
94 |
import socket |
import socket |
95 |
hostname = socket.gethostname() |
hostname = socket.gethostname().split('.')[0] |
96 |
try: |
try: |
97 |
exec "from "+hostname+"_options import *" |
exec "from "+hostname+"_options import *" |
98 |
except ImportError: |
except ImportError: |