We don't really want to rebuild eztrace on each and every binutils upload.

--- a/src/core/Makefile.am
+++ b/src/core/Makefile.am
@@ -45,7 +45,7 @@ endif 				#HAVE_LIBOPCODE
 if USE_LIBELF
 eztrace_LDADD += -lelf
 else
-eztrace_LDADD += -lbfd
+eztrace_LDADD += /usr/lib/libbfd.a
 endif # USE_LIBELF
 
 eztrace_avail_CPPFLAGS = $(TLCFLAGS)
--- a/configure.ac
+++ b/configure.ac
@@ -51,7 +51,7 @@ AC_CHECK_LIB([m], [cos])
 AC_CHECK_LIB([pthread], [pthread_create])
 AC_CHECK_LIB([pthread], [pthread_spin_lock], have_full_pthread=yes, have_full_pthread=no)
 AC_CHECK_LIB([iberty], [cplus_demangle])
-AC_CHECK_LIB([bfd], [bfd_demangle])
+LIBS="/usr/lib/libbfd.a -lz $LIBS"
 
 # Check the OS type
 os_type=`uname -s`
@@ -240,11 +240,7 @@ if test $use_pptrace = yes ; then
     fi
 fi
 
-AC_CHECK_LIB([opcodes], disassembler,
-[
-   libopcode_found=yes
-   AC_MSG_RESULT(libopcode found.)
-], [libopcode_found=no])
+LIBS="/usr/lib/libopcodes.a $LIBS"
 
 AM_CONDITIONAL([HAVE_LIBOPCODE], [test "$libopcode_found" = yes])
 AM_CONDITIONAL([USE_PPTRACE], [test "$pptrace_lib_found" = yes])
