diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-11-05 01:50:18 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-11-05 01:50:18 +0000 |
commit | 075ff26d5b7bc2d47ea6984a7a3efde8c1746427 (patch) | |
tree | bc342ae5e7d3b7581630d9a031081039ebbca894 /gdb | |
parent | 14ad321702406e4ae091107aa067e3e0b34bf2a8 (diff) | |
download | gdb-075ff26d5b7bc2d47ea6984a7a3efde8c1746427.zip gdb-075ff26d5b7bc2d47ea6984a7a3efde8c1746427.tar.gz gdb-075ff26d5b7bc2d47ea6984a7a3efde8c1746427.tar.bz2 |
gdb/
Fix configure --enable-plugins --without-python.
* configure.ac (for ELF support in BFD) <"$plugins" = "yes">: New.
* configure: Regenerate.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rwxr-xr-x | gdb/configure | 8 | ||||
-rw-r--r-- | gdb/configure.ac | 8 |
3 files changed, 22 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index af9fe6c..9ea16e9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ 2010-11-05 Jan Kratochvil <jan.kratochvil@redhat.com> + Fix configure --enable-plugins --without-python. + * configure.ac (for ELF support in BFD) <"$plugins" = "yes">: New. + * configure: Regenerate. + +2010-11-05 Jan Kratochvil <jan.kratochvil@redhat.com> + * solib.c (solib_read_symbols): Call exception_fprintf even without FROM_TTY. Print also so->so_name. diff --git a/gdb/configure b/gdb/configure index dd3d04c..6d920c6 100755 --- a/gdb/configure +++ b/gdb/configure @@ -14937,6 +14937,10 @@ OLD_LIBS=$LIBS CFLAGS="$CFLAGS -I${srcdir}/../include -I../bfd -I${srcdir}/../bfd" LDFLAGS="$LDFLAGS -L../bfd -L../libiberty" intl=`echo $LIBINTL | sed 's,${top_builddir}/,,g'` +# -ldl is provided by bfd/Makfile.am (LIBDL) <PLUGINS>. +if test "$plugins" = "yes"; then + LIBS="-ldl $LIBS" +fi LIBS="-lbfd -liberty $intl $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ELF support in BFD" >&5 $as_echo_n "checking for ELF support in BFD... " >&6; } @@ -14972,6 +14976,10 @@ if test $gdb_cv_var_elf = yes; then $as_echo "#define HAVE_ELF 1" >>confdefs.h + # -ldl is provided by bfd/Makfile.am (LIBDL) <PLUGINS>. + if test "$plugins" = "yes"; then + OLD_LIBS="-ldl $OLD_LIBS" + fi fi CFLAGS=$OLD_CFLAGS LDFLAGS=$OLD_LDFLAGS diff --git a/gdb/configure.ac b/gdb/configure.ac index 1f00c92..a16c87c 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -1838,6 +1838,10 @@ OLD_LIBS=$LIBS CFLAGS="$CFLAGS -I${srcdir}/../include -I../bfd -I${srcdir}/../bfd" LDFLAGS="$LDFLAGS -L../bfd -L../libiberty" intl=`echo $LIBINTL | sed 's,${top_builddir}/,,g'` +# -ldl is provided by bfd/Makfile.am (LIBDL) <PLUGINS>. +if test "$plugins" = "yes"; then + LIBS="-ldl $LIBS" +fi LIBS="-lbfd -liberty $intl $LIBS" AC_CACHE_CHECK([for ELF support in BFD], gdb_cv_var_elf, [AC_TRY_LINK( @@ -1851,6 +1855,10 @@ if test $gdb_cv_var_elf = yes; then CONFIG_OBS="$CONFIG_OBS elfread.o" AC_DEFINE(HAVE_ELF, 1, [Define if ELF support should be included.]) + # -ldl is provided by bfd/Makfile.am (LIBDL) <PLUGINS>. + if test "$plugins" = "yes"; then + OLD_LIBS="-ldl $OLD_LIBS" + fi fi CFLAGS=$OLD_CFLAGS LDFLAGS=$OLD_LDFLAGS |