# HG changeset patch # User Mathieu Lacage # Date 1220549704 25200 # Node ID da5482f27f7e3aec893a539e462baae9311afbd5 # Parent 1fec65ceb523c90e30f4d4a2cc007b6f4473f988# Parent 74aeed0b0334ad00f9d7c2f4debfca17a61e8f8a merge with HEAD diff -r 1fec65ceb523 -r da5482f27f7e wscript --- a/wscript Thu Sep 04 10:34:42 2008 -0700 +++ b/wscript Thu Sep 04 10:35:04 2008 -0700 @@ -526,10 +526,13 @@ pathvar = 'PATH' elif sys.platform == 'cygwin': pathvar = 'PATH' + elif sys.platform.startswith('freebsd'): + pathvar = 'LD_LIBRARY_PATH' else: Params.warning(("Don't know how to configure " - "dynamic library path for the platform '%s'") % (sys.platform,)) - pathvar = None + "dynamic library path for the platform %r;" + " assuming it's LD_LIBRARY_PATH.") % (sys.platform,)) + pathvar = 'LD_LIBRARY_PATH' proc_env = dict(os.environ) if os_env is not None: