Make sure the build system honors CPATH and LIBRARY_PATH when looking for headers and libraries. --- a/setup.py 2015-10-07 23:32:58.891329173 +0200 +++ b/setup.py 2015-10-07 23:46:29.653349924 +0200 @@ -575,8 +575,8 @@ # if a file is found in one of those directories, it can # be assumed that no additional -I,-L directives are needed. if not cross_compiling: - lib_dirs = self.compiler.library_dirs + system_lib_dirs - inc_dirs = self.compiler.include_dirs + system_include_dirs + lib_dirs = os.getenv('LIBRARY_PATH', '').split(os.pathsep) + inc_dirs = os.getenv('CPATH', '').split(os.pathsep) else: # Add the sysroot paths. 'sysroot' is a compiler option used to # set the logical path of the standard system headers and scripts Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/license.scm
AgeCommit message (Expand)Author
2018-10-04gnu: perl-string-copyright: Update to 0.003006....* gnu/packages/license.scm (perl-string-copyright): Update to 0.003006. Tobias Geerinckx-Rice
2018-08-15gnu: licensecheck: Update to 3.0.36....* gnu/packages/license.scm (licensecheck): Update to 3.0.36. (perl-regexp-pattern-license): Update to 3.1.92. Oleg Pykhalov
2018-08-11Migrate search.cpan.org home pages to metacpan.org....The venerable search.cpan.org has retired[0]. [0]: https://log.perl.org/2018/05/goodbye-search-dot-cpan-dot-org.html * guix/import/cpan.scm (cpan-home): Generate metacpan.org home page URIs. Update all previously generated ones in (gnu packages) to their canonical new homes. Tobias Geerinckx-Rice
2018-04-05gnu: licensecheck: Update to 3.0.34....* gnu/packages/license.scm (licensecheck): Update to 3.0.34. Tobias Geerinckx-Rice
2018-02-24gnu: Add licensecheck....* gnu/packages/license.scm (licensecheck): New public variable. Oleg Pykhalov
2018-02-24gnu: Add perl-software-license....* gnu/packages/license.scm (perl-software-license): New public variable. Oleg Pykhalov
2018-02-24gnu: Add perl-string-copyright....* gnu/packages/license.scm (perl-string-copyright): New public variable. Oleg Pykhalov
2018-02-24gnu: Add perl-regexp-pattern-license....* gnu/packages/license.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add this. Oleg Pykhalov