diff options
author | Doug Evans <xdje42@gmail.com> | 2014-09-09 21:18:25 -0700 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2014-09-09 21:18:25 -0700 |
commit | d342a0da4fa83b680426511a7d0e1b1e299c63b8 (patch) | |
tree | 8d2b73afdc502bb218f675735c82961b5e407c78 /gdb/configure | |
parent | b4a3d263b07508de083928823aee72699e59afc0 (diff) | |
download | gdb-d342a0da4fa83b680426511a7d0e1b1e299c63b8.zip gdb-d342a0da4fa83b680426511a7d0e1b1e299c63b8.tar.gz gdb-d342a0da4fa83b680426511a7d0e1b1e299c63b8.tar.bz2 |
PR guile/17367
gdb/ChangeLog:
* acinclude.m4 (GDB_GUILE_PROGRAM_NAMES): Pass guile version as
last parameter to pkg-config, not first.
* configure.ac: Pass --with-guile provided pkg-config path to
GDB_GUILE_PROGRAM_NAMES.
* configure: Regenerate.
Diffstat (limited to 'gdb/configure')
-rwxr-xr-x | gdb/configure | 38 |
1 files changed, 36 insertions, 2 deletions
diff --git a/gdb/configure b/gdb/configure index 350ec0c..6e7435f 100755 --- a/gdb/configure +++ b/gdb/configure @@ -9171,20 +9171,22 @@ $as_echo "${found_usable_guile}" >&6; } esac if test "${have_libguile}" != no; then + case "${with_guile}" in + [\\/]* | ?:[\\/]*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the absolute file name of the 'guild' command" >&5 $as_echo_n "checking for the absolute file name of the 'guild' command... " >&6; } if test "${ac_cv_guild_program_name+set}" = set; then : $as_echo_n "(cached) " >&6 else - ac_cv_guild_program_name="`"${pkg_config_prog_path}" "${guile_version}" --variable guild`" + ac_cv_guild_program_name="`"${with_guile}" --variable guild "${guile_version}"`" # In Guile up to 2.0.11 included, guile-2.0.pc would not define # the 'guild' and 'bindir' variables. In that case, try to guess # what the program name is, at the risk of getting it wrong if # Guile was configured with '--program-suffix' or similar. if test "x$ac_cv_guild_program_name" = "x"; then - guile_exec_prefix="`"${pkg_config_prog_path}" "${guile_version}" --variable exec_prefix`" + guile_exec_prefix="`"${with_guile}" --variable exec_prefix "${guile_version}"`" ac_cv_guild_program_name="$guile_exec_prefix/bin/guild" fi @@ -9199,6 +9201,38 @@ $as_echo "$ac_cv_guild_program_name" >&6; } GUILD="$ac_cv_guild_program_name" + ;; + *) + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the absolute file name of the 'guild' command" >&5 +$as_echo_n "checking for the absolute file name of the 'guild' command... " >&6; } +if test "${ac_cv_guild_program_name+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_guild_program_name="`"${pkg_config_prog_path}" --variable guild "${guile_version}"`" + + # In Guile up to 2.0.11 included, guile-2.0.pc would not define + # the 'guild' and 'bindir' variables. In that case, try to guess + # what the program name is, at the risk of getting it wrong if + # Guile was configured with '--program-suffix' or similar. + if test "x$ac_cv_guild_program_name" = "x"; then + guile_exec_prefix="`"${pkg_config_prog_path}" --variable exec_prefix "${guile_version}"`" + ac_cv_guild_program_name="$guile_exec_prefix/bin/guild" + fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_guild_program_name" >&5 +$as_echo "$ac_cv_guild_program_name" >&6; } + + if ! "$ac_cv_guild_program_name" --version >&5 2>&5; then + as_fn_error "'$ac_cv_guild_program_name' appears to be unusable" "$LINENO" 5 + fi + + GUILD="$ac_cv_guild_program_name" + + + ;; + esac if test "$cross_compiling" = no; then |