@@ -343,17 +343,28 @@ def b(value):
343
343
344
344
345
345
def pkg_config (pkg ):
346
- cmd = os .popen ('pkg-config --libs %s' % pkg , 'r' )
347
- libs = cmd .readline ().strip ()
348
- ret = cmd .close ()
349
- if (ret ): return None
350
-
351
- cmd = os .popen ('pkg-config --cflags %s' % pkg , 'r' )
352
- cflags = cmd .readline ().strip ()
353
- ret = cmd .close ()
354
- if (ret ): return None
355
-
356
- return (libs , cflags )
346
+ pkg_config = os .environ .get ('PKG_CONFIG' , 'pkg-config' )
347
+ args = '--silence-errors'
348
+ retval = ()
349
+ for flag in ['--libs-only-l' , '--cflags-only-I' , '--libs-only-L' ]:
350
+ try :
351
+ val = subprocess .check_output ([pkg_config , args , flag , pkg ])
352
+ # check_output returns bytes
353
+ val = val .encode ().strip ().rstrip ('\n ' )
354
+ except subprocess .CalledProcessError :
355
+ # most likely missing a .pc-file
356
+ val = None
357
+ except OSError :
358
+ # no pkg-config/pkgconf installed
359
+ return (None , None , None )
360
+ retval += (val ,)
361
+ return retval
362
+
363
+
364
+ def format_libraries (list ):
365
+ """Returns string of space separated libraries"""
366
+ libraries = list .split (',' )
367
+ return ' ' .join ('-l{0}' .format (i ) for i in libraries )
357
368
358
369
359
370
def try_check_compiler (cc , lang ):
@@ -668,40 +679,30 @@ def configure_node(o):
668
679
o ['variables' ]['node_target_type' ] = 'static_library'
669
680
670
681
671
- def configure_libz (o ):
672
- o ['variables' ]['node_shared_zlib' ] = b (options .shared_zlib )
673
-
674
- if options .shared_zlib :
675
- o ['libraries' ] += ['-l%s' % options .shared_zlib_libname ]
676
- if options .shared_zlib_libpath :
677
- o ['libraries' ] += ['-L%s' % options .shared_zlib_libpath ]
678
- if options .shared_zlib_includes :
679
- o ['include_dirs' ] += [options .shared_zlib_includes ]
680
-
681
-
682
- def configure_http_parser (o ):
683
- o ['variables' ]['node_shared_http_parser' ] = b (options .shared_http_parser )
684
-
685
- if options .shared_http_parser :
686
- o ['libraries' ] += ['-l%s' % options .shared_http_parser_libname ]
687
- if options .shared_http_parser_libpath :
688
- o ['libraries' ] += ['-L%s' % options .shared_http_parser_libpath ]
689
- if options .shared_http_parser_includes :
690
- o ['include_dirs' ] += [options .shared_http_parser_includes ]
691
-
692
-
693
- def configure_libuv (o ):
694
- o ['variables' ]['node_shared_libuv' ] = b (options .shared_libuv )
695
-
696
- if options .shared_libuv :
697
- o ['libraries' ] += ['-l%s' % options .shared_libuv_libname ]
698
- if options .shared_libuv_libpath :
699
- o ['libraries' ] += ['-L%s' % options .shared_libuv_libpath ]
700
- else :
701
- o ['variables' ]['uv_library' ] = 'static_library'
702
-
703
- if options .shared_libuv_includes :
704
- o ['include_dirs' ] += [options .shared_libuv_includes ]
682
+ def configure_library (lib , output ):
683
+ shared_lib = 'shared_' + lib
684
+ output ['variables' ]['node_' + shared_lib ] = b (getattr (options , shared_lib ))
685
+
686
+ if getattr (options , shared_lib ):
687
+ default_cflags = getattr (options , shared_lib + '_includes' )
688
+ default_lib = format_libraries (getattr (options , shared_lib + '_libname' ))
689
+ default_libpath = getattr (options , shared_lib + '_libpath' )
690
+ if default_libpath :
691
+ default_libpath = '-L' + default_libpath
692
+ (pkg_libs , pkg_cflags , pkg_libpath ) = pkg_config (lib )
693
+ cflags = pkg_cflags .split ('-I' ) if pkg_cflags else default_cflags
694
+ libs = pkg_libs if pkg_libs else default_lib
695
+ libpath = pkg_libpath if pkg_libpath else default_libpath
696
+
697
+ # libpath needs to be provided ahead libraries
698
+ if libpath :
699
+ output ['libraries' ] += [libpath ]
700
+ if libs :
701
+ # libs passed to the linker cannot contain spaces.
702
+ # (libpath on the other hand can)
703
+ output ['libraries' ] += libs .split ()
704
+ if cflags :
705
+ output ['include_dirs' ] += [cflags ]
705
706
706
707
707
708
def configure_v8 (o ):
@@ -714,25 +715,11 @@ def configure_v8(o):
714
715
def configure_openssl (o ):
715
716
o ['variables' ]['node_use_openssl' ] = b (not options .without_ssl )
716
717
o ['variables' ]['node_shared_openssl' ] = b (options .shared_openssl )
717
- o ['variables' ]['openssl_no_asm' ] = (
718
- 1 if options .openssl_no_asm else 0 )
718
+ o ['variables' ]['openssl_no_asm' ] = 1 if options .openssl_no_asm else 0
719
719
720
720
if options .without_ssl :
721
721
return
722
-
723
- if options .shared_openssl :
724
- (libs , cflags ) = pkg_config ('openssl' ) or ('-lssl -lcrypto' , '' )
725
-
726
- libnames = options .shared_openssl_libname .split (',' )
727
- o ['libraries' ] += ['-l%s' % s for s in libnames ]
728
-
729
- if options .shared_openssl_libpath :
730
- o ['libraries' ] += ['-L%s' % options .shared_openssl_libpath ]
731
-
732
- if options .shared_openssl_includes :
733
- o ['include_dirs' ] += [options .shared_openssl_includes ]
734
- else :
735
- o ['cflags' ] += cflags .split ()
722
+ configure_library ('openssl' , o )
736
723
737
724
738
725
def configure_fullystatic (o ):
@@ -853,11 +840,14 @@ def configure_intl(o):
853
840
# ICU from pkg-config.
854
841
o ['variables' ]['v8_enable_i18n_support' ] = 1
855
842
pkgicu = pkg_config ('icu-i18n' )
856
- if not pkgicu :
843
+ if pkgicu [ 0 ] is None :
857
844
print 'Error: could not load pkg-config data for "icu-i18n".'
858
845
print 'See above errors or the README.md.'
859
846
sys .exit (1 )
860
- (libs , cflags ) = pkgicu
847
+ (libs , cflags , libpath ) = pkgicu
848
+ # libpath provides linker path which may contain spaces
849
+ o ['libraries' ] += [libpath ]
850
+ # safe to split, cannot contain spaces
861
851
o ['libraries' ] += libs .split ()
862
852
o ['cflags' ] += cflags .split ()
863
853
# use the "system" .gyp
@@ -1016,9 +1006,9 @@ if (options.dest_os):
1016
1006
flavor = GetFlavor (flavor_params )
1017
1007
1018
1008
configure_node (output )
1019
- configure_libz ( output )
1020
- configure_http_parser ( output )
1021
- configure_libuv ( output )
1009
+ configure_library ( 'zlib' , output )
1010
+ configure_library ( 'http_parser' , output )
1011
+ configure_library ( 'libuv' , output )
1022
1012
configure_v8 (output )
1023
1013
configure_openssl (output )
1024
1014
configure_winsdk (output )
0 commit comments