80c75c68ce
2: install shared library by default. 3: resolv undefined symbol. PR: ports/157875 Submitted by: Brett Kiefer <brett at fogcreek.com>, L Campbell <lcampbell at ironclad.mobi> [3]
15 lines
506 B
Text
15 lines
506 B
Text
--- SConstruct.orig 2011-06-01 14:00:58.000000000 +0800
|
|
+++ SConstruct 2011-06-16 09:56:00.000000000 +0800
|
|
@@ -120,10 +120,10 @@ LIBRARY_FLAGS = {
|
|
}
|
|
},
|
|
'os:freebsd': {
|
|
- 'CPPPATH' : ['/usr/local/include'],
|
|
+ 'CPPPATH' : [join(root_dir, 'src'), '/usr/local/include'],
|
|
'LIBPATH' : ['/usr/local/lib'],
|
|
'CCFLAGS': ['-ansi'],
|
|
- 'LIBS': ['execinfo']
|
|
+ 'LIBS': ['pthread', 'execinfo']
|
|
},
|
|
'os:openbsd': {
|
|
'CPPPATH' : ['/usr/local/include'],
|