@@ -623,6 +623,7 @@ ac_includes_default="\
623
623
#endif"
624
624
625
625
ac_subst_vars='LTLIBOBJS
626
+ VENDOR_CONFIG
626
627
TEST_MODULES
627
628
LIBRARY_DEPS
628
629
STATIC_LIBPYTHON
@@ -862,6 +863,7 @@ with_builtin_hashlib_hashes
862
863
with_experimental_isolated_subinterpreters
863
864
with_static_libpython
864
865
enable_test_modules
866
+ with_vendor_config
865
867
'
866
868
ac_precious_vars='build_alias
867
869
host_alias
@@ -1615,6 +1617,9 @@ Optional Packages:
1615
1617
--without-static-libpython
1616
1618
do not build libpythonMAJOR.MINOR.a and do not
1617
1619
install python.o (default is yes)
1620
+ --with-vendor-config=<config.py>
1621
+ use a vendor config to customize the certain details of the Python installation
1622
+
1618
1623
1619
1624
Some influential environment variables:
1620
1625
MACHDEP name for machine-dependent library files
@@ -17910,6 +17915,49 @@ $as_echo "no" >&6; }
17910
17915
fi
17911
17916
17912
17917
17918
+ # --with-vendor-config
17919
+ VENDOR_CONFIG=''
17920
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-vendor-config" >&5
17921
+ $as_echo_n "checking for --with-vendor-config... " >&6; }
17922
+
17923
+ # Check whether --with-vendor-config was given.
17924
+ if test "${with_vendor_config+set}" = set; then :
17925
+ withval=$with_vendor_config;
17926
+ as_ac_File=`$as_echo "ac_cv_file_"$withval"" | $as_tr_sh`
17927
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for \"$withval\"" >&5
17928
+ $as_echo_n "checking for \"$withval\"... " >&6; }
17929
+ if eval \${$as_ac_File+:} false; then :
17930
+ $as_echo_n "(cached) " >&6
17931
+ else
17932
+ test "$cross_compiling" = yes &&
17933
+ as_fn_error $? "cannot check for file existence when cross compiling" "$LINENO" 5
17934
+ if test -r ""$withval""; then
17935
+ eval "$as_ac_File=yes"
17936
+ else
17937
+ eval "$as_ac_File=no"
17938
+ fi
17939
+ fi
17940
+ eval ac_res=\$$as_ac_File
17941
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
17942
+ $as_echo "$ac_res" >&6; }
17943
+ if eval test \"x\$"$as_ac_File"\" = x"yes"; then :
17944
+
17945
+ if ( echo "$withval" | grep '.*\.py$' > /dev/null); then
17946
+ VENDOR_CONFIG="$withval"
17947
+ else
17948
+ as_fn_error $? "--with-vendor-config requires a Python file" "$LINENO" 5
17949
+ fi
17950
+
17951
+ else
17952
+
17953
+ as_fn_error $? "--with-vendor-config requires a valid file" "$LINENO" 5
17954
+
17955
+ fi
17956
+
17957
+
17958
+ fi
17959
+
17960
+
17913
17961
17914
17962
# generate output files
17915
17963
ac_config_files="$ac_config_files Makefile.pre Misc/python.pc Misc/python-embed.pc Misc/python-config.sh"
0 commit comments