from distutils.command.install import install
from subprocess import Popen
+INSTALL_SCRIPTS = 1
+INSTALL_SQL = 1
+
# dont build C module on win32 as it's unlikely to have dev env
BUILD_C_MOD = 1
if sys.platform == 'win32':
'python/qadmin.py',
]
+if not INSTALL_SCRIPTS:
+ sfx_scripts = []
+ nosfx_scripts = []
+
# sql files we want to access from python
sql_files = [
'sql/pgq/pgq.sql',
#'sql/txid/txid.sql',
]
+if not INSTALL_SQL:
+ sql_files = []
+
def getvar(name, default):
try:
cf = open('config.mak').read()