configure: autoconf regen (2.69) --enable-readline-bundled GR_SRCS

This commit is contained in:
Darryl L. Miles 2025-10-03 23:35:22 +01:00 committed by R. Timothy Edwards
parent af7b6bf119
commit 15faa19346
1 changed files with 31 additions and 24 deletions

55
scripts/configure vendored
View File

@ -782,6 +782,7 @@ enable_framebuffer_backing_store
enable_plot enable_plot
enable_lef enable_lef
enable_readline enable_readline
enable_readline_bundled
enable_threads enable_threads
enable_route enable_route
enable_rsim enable_rsim
@ -1444,6 +1445,7 @@ Optional Features:
--disable-plot disable plot package --disable-plot disable plot package
--disable-lef disable LEF package --disable-lef disable LEF package
--disable-readline disable readline package --disable-readline disable readline package
--enable-readline-bundled enable readline bundled package
--disable-threads disable threaded graphics --disable-threads disable threaded graphics
--disable-route disable routing package --disable-route disable routing package
--disable-rsim disable IRSIM tool --disable-rsim disable IRSIM tool
@ -7976,10 +7978,24 @@ else
fi fi
use_system_readline=yes
use_bundled_readline=auto
# Check whether --enable-readline-bundled was given.
if test "${enable_readline_bundled+set}" = set; then :
enableval=$enable_readline_bundled; use_bundled_readline=yes
else
use_bundled_readline=no
fi
if test "x$enable_readline" = "xyes" ; then if test "x$enable_readline" = "xyes" ; then
$as_echo "#define USE_READLINE 1" >>confdefs.h $as_echo "#define USE_READLINE 1" >>confdefs.h
use_system_readline=yes if test $use_bundled_readline != yes ; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_pre_input_hook in -lreadline" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_pre_input_hook in -lreadline" >&5
$as_echo_n "checking for rl_pre_input_hook in -lreadline... " >&6; } $as_echo_n "checking for rl_pre_input_hook in -lreadline... " >&6; }
if ${ac_cv_lib_readline_rl_pre_input_hook+:} false; then : if ${ac_cv_lib_readline_rl_pre_input_hook+:} false; then :
@ -8017,11 +8033,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_pre_input_hook" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_pre_input_hook" >&5
$as_echo "$ac_cv_lib_readline_rl_pre_input_hook" >&6; } $as_echo "$ac_cv_lib_readline_rl_pre_input_hook" >&6; }
if test "x$ac_cv_lib_readline_rl_pre_input_hook" = xyes; then : if test "x$ac_cv_lib_readline_rl_pre_input_hook" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LIBREADLINE 1
_ACEOF
LIBS="-lreadline $LIBS"
else else
use_system_readline=no use_system_readline=no
@ -8064,11 +8076,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_username_completion_function" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_username_completion_function" >&5
$as_echo "$ac_cv_lib_readline_rl_username_completion_function" >&6; } $as_echo "$ac_cv_lib_readline_rl_username_completion_function" >&6; }
if test "x$ac_cv_lib_readline_rl_username_completion_function" = xyes; then : if test "x$ac_cv_lib_readline_rl_username_completion_function" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LIBREADLINE 1
_ACEOF
LIBS="-lreadline $LIBS"
else else
use_system_readline=no use_system_readline=no
@ -8111,11 +8119,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_filename_completion_function" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_filename_completion_function" >&5
$as_echo "$ac_cv_lib_readline_rl_filename_completion_function" >&6; } $as_echo "$ac_cv_lib_readline_rl_filename_completion_function" >&6; }
if test "x$ac_cv_lib_readline_rl_filename_completion_function" = xyes; then : if test "x$ac_cv_lib_readline_rl_filename_completion_function" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LIBREADLINE 1
_ACEOF
LIBS="-lreadline $LIBS"
else else
use_system_readline=no use_system_readline=no
@ -8158,26 +8162,28 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_attempted_completion_over" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_attempted_completion_over" >&5
$as_echo "$ac_cv_lib_readline_rl_attempted_completion_over" >&6; } $as_echo "$ac_cv_lib_readline_rl_attempted_completion_over" >&6; }
if test "x$ac_cv_lib_readline_rl_attempted_completion_over" = xyes; then : if test "x$ac_cv_lib_readline_rl_attempted_completion_over" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LIBREADLINE 1
_ACEOF
LIBS="-lreadline $LIBS"
else else
use_system_readline=no use_system_readline=no
fi fi
if test $use_system_readline = yes ; then fi
if test $use_system_readline = yes && test $use_bundled_readline != yes; then
$as_echo "#define HAVE_READLINE 1" >>confdefs.h $as_echo "#define HAVE_READLINE 1" >>confdefs.h
rl_libs="-lreadline" rl_libs="-lreadline"
use_bundled_readline=
else else
rl_libs="\${MAGICDIR}/readline/readline/libreadline.a" echo "Using bundled readline"
$as_echo "#define NEED_READLINE 1" >>confdefs.h
# not readline/libhistory.a (seems subset of libreadline.a)
rl_libs="\${MAGICDIR}/readline/libreadline.a"
CPPFLAGS="$CPPFLAGS -I\${MAGICDIR}/readline" CPPFLAGS="$CPPFLAGS -I\${MAGICDIR}/readline"
use_bundled_readline=1 use_bundled_readline=1
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for tgetent in -ltermcap" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tgetent in -ltermcap" >&5
$as_echo_n "checking for tgetent in -ltermcap... " >&6; } $as_echo_n "checking for tgetent in -ltermcap... " >&6; }
if ${ac_cv_lib_termcap_tgetent+:} false; then : if ${ac_cv_lib_termcap_tgetent+:} false; then :
$as_echo_n "(cached) " >&6 $as_echo_n "(cached) " >&6
@ -8264,7 +8270,8 @@ fi
fi fi
modules="$modules readline" modules="$modules readline"
fi
else else
unused="$unused readline" unused="$unused readline"
fi fi
@ -8657,7 +8664,7 @@ if test $usingTcl ; then
gr_dflags="$gr_dflags -DOGL" gr_dflags="$gr_dflags -DOGL"
gr_libs="$gr_libs -lGL ${use_libglu} ${use_libxi} ${use_libxmu} ${use_libxext} -lm" gr_libs="$gr_libs -lGL ${use_libglu} ${use_libxi} ${use_libxmu} ${use_libxext} -lm"
gr_srcs="$gr_srcs \${TOGL_SRCS}" gr_srcs="$gr_srcs \${TOGL_GL_SRCS} \${TOGL_GLU_SRCS} \${THREE_D_GL_SRCS}"
if ! test $usingX11 ; then if ! test $usingX11 ; then
usingX11=1 usingX11=1
gr_dflags="$gr_dflags -DXLIB" gr_dflags="$gr_dflags -DXLIB"
@ -8684,7 +8691,7 @@ else
if test $usingOGL ; then if test $usingOGL ; then
gr_dflags="$gr_dflags -DOGL" gr_dflags="$gr_dflags -DOGL"
gr_libs="$gr_libs -lGL ${use_libglu} ${use_libxi} ${use_libxmu} ${use_libxext} -lm" gr_libs="$gr_libs -lGL ${use_libglu} ${use_libxi} ${use_libxmu} ${use_libxext} -lm"
gr_srcs="$gr_srcs \${OGL_SRCS}" gr_srcs="$gr_srcs \${OGL_GL_SRCS} \${OGL_GLU_SRCS}"
if ! test $usingX11 ; then if ! test $usingX11 ; then
usingX11=1 usingX11=1
gr_libs="$gr_libs -lX11" gr_libs="$gr_libs -lX11"