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.
		
		
		
		
		
			
		
			
				
					
					
						
							36 lines
						
					
					
						
							906 B
						
					
					
				
			
		
		
	
	
							36 lines
						
					
					
						
							906 B
						
					
					
				import Options, Utils
 | 
						|
from os import unlink, symlink, chdir
 | 
						|
from os.path import exists
 | 
						|
 | 
						|
srcdir = '.'
 | 
						|
blddir = 'build'
 | 
						|
VERSION = '0.0.2'
 | 
						|
 | 
						|
def set_options(opt):
 | 
						|
  opt.tool_options('compiler_cxx')
 | 
						|
 | 
						|
def configure(conf):
 | 
						|
  conf.check_tool('compiler_cxx')
 | 
						|
  conf.check_tool('node_addon')
 | 
						|
 | 
						|
  conf.env.append_unique('CPPFLAGS', ["-I/usr/local/include"])
 | 
						|
  conf.env.append_unique('CXXFLAGS', ["-Wall"])
 | 
						|
 | 
						|
  conf.env.append_unique('LINKFLAGS', ["-L/usr/local/lib"])
 | 
						|
 | 
						|
 | 
						|
def build(bld):
 | 
						|
  obj = bld.new_task_gen('cxx', 'shlib', 'node_addon')
 | 
						|
  #obj.cxxflags = ['-DLDAP_DEPRECATED']
 | 
						|
  obj.cxxflags = ["-DLDAP_DEPRECATED", "-g", "-D_FILE_OFFSET_BITS=64", "-D_LARGEFILE_SOURCE", "-Wall"]
 | 
						|
  obj.target = 'ldap'
 | 
						|
  obj.source = './src/ldap.cc'
 | 
						|
  obj.lib = ['ldap']
 | 
						|
 | 
						|
#def shutdown():
 | 
						|
  # HACK to get bindings.node out of build directory.
 | 
						|
  # better way to do this?
 | 
						|
  #t = 'ldapsearch.node'
 | 
						|
  #symlink('build/default/' + t, t)
 | 
						|
 |