Skip to content

Commit f92b609

Browse files
committed
update generated files
Signed-off-by: Filipe Laíns <[email protected]>
1 parent 1b55a34 commit f92b609

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

aclocal.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# generated automatically by aclocal 1.16.2 -*- Autoconf -*-
1+
# generated automatically by aclocal 1.16.3 -*- Autoconf -*-
22

33
# Copyright (C) 1996-2020 Free Software Foundation, Inc.
44

configure

+48
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,7 @@ ac_includes_default="\
623623
#endif"
624624

625625
ac_subst_vars='LTLIBOBJS
626+
VENDOR_CONFIG
626627
TEST_MODULES
627628
LIBRARY_DEPS
628629
STATIC_LIBPYTHON
@@ -862,6 +863,7 @@ with_builtin_hashlib_hashes
862863
with_experimental_isolated_subinterpreters
863864
with_static_libpython
864865
enable_test_modules
866+
with_vendor_config
865867
'
866868
ac_precious_vars='build_alias
867869
host_alias
@@ -1615,6 +1617,9 @@ Optional Packages:
16151617
--without-static-libpython
16161618
do not build libpythonMAJOR.MINOR.a and do not
16171619
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+
16181623

16191624
Some influential environment variables:
16201625
MACHDEP name for machine-dependent library files
@@ -17910,6 +17915,49 @@ $as_echo "no" >&6; }
1791017915
fi
1791117916

1791217917

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+
1791317961

1791417962
# generate output files
1791517963
ac_config_files="$ac_config_files Makefile.pre Misc/python.pc Misc/python-embed.pc Misc/python-config.sh"

0 commit comments

Comments
 (0)