********>Bugfix 3:
Author: Mengjuei Hsieh and Dave Case
Date: 05/7/2006
Programs: LEaP
Description: The configure script creates an XLIBS variable with a space
that should not be there.
Fix: apply the following patch to amber9/src/configure
------------------------------------------------------------------------------
*** configure 3 Apr 2006 23:34:24 -0000 9.0
--- configure 8 May 2006 00:06:38 -0000
***************
*** 203,209 ****
use_lmod=LMOD_UNAVAILABLE
fi
xhome='/usr/X11R6'
! xlibs="-L $xhome/lib"
machine=`uname -m`
if [ "$machine" = "em64t" ] || [ "$machine" = "x86_64" ] || [ "$x86_64" = "yes" ]; then
--- 203,209 ----
use_lmod=LMOD_UNAVAILABLE
fi
xhome='/usr/X11R6'
! xlibs="-L$xhome/lib"
machine=`uname -m`
if [ "$machine" = "em64t" ] || [ "$machine" = "x86_64" ] || [ "$x86_64" = "yes" ]; then
***************
*** 710,717 ****
fflags="-tp p7 -O1"
foptflags="-tp p7 -Mscalarsse -Mvect=sse -Mflushz -fast -O3"
- xlibs="-L $xhome/lib"
-
moduledir='-module $(EMPTY)'
if [ $static = "yes" ]; then
static_flag='-Bstatic'
--- 710,715 ----
***************
*** 867,873 ****
loadptraj="$load"
xhome='/usr/lib32'
! xlibs="-L $xhome"
;;
####################### HP ############################
--- 865,871 ----
loadptraj="$load"
xhome='/usr/lib32'
! xlibs="-L$xhome"
;;
####################### HP ############################
------------------------------------------------------------------------------
Temporary workarounds: Manually edit config.h to remove the extra space.