Hi Scott,
Take a look at my comments in the configure script around the code you added
last night about 1 minute before I tried to check in my changes. ;-)
These changes are to the leap makefiles and configure so that when one
specifies -noX11 only tleap is built. Thus in the detection section if
$noX11 is false (i.e. the user did not explicitly specify that they wanted
to exclude xleap build on the configure command line) then you can run the
test for the X11 libraries and if they aren't found set
make_xleap="skip_xleap".
The comments in the configure script should be fairly self explanatory I
hope.
All the best
Ross
/\
\/
|\oss Walker
| HPC Consultant and Staff Scientist |
| San Diego Supercomputer Center |
| Tel: +1 858 822 0854 | EMail:- ross.rosswalker.co.uk |
|
http://www.rosswalker.co.uk | PGP Key available on request |
Note: Electronic Mail is not secure, has no guarantee of delivery, may not
be read every day, and should not be used for urgent or sensitive issues.
> -----Original Message-----
> From: owner-amber-developers.scripps.edu
> [mailto:owner-amber-developers.scripps.edu] On Behalf Of Scott Brozell
> Sent: Saturday, January 06, 2007 17:01
> To: amber-developers list
> Subject: Re: amber-developers: Possible patch to enable
> $AMBERHOME/src/configure to check/test for the presence of X11 libs
>
> Hi Mark,
>
> Thanks for the contribution.
> Last night I committed a similar check using a different
> implementation.
> I'll continue to enhance configure.
>
> Scott
>
> On Sat, 6 Jan 2007, Mark Williamson wrote:
>
> > Dear All,
> >
> > Here's an initial offering for AMBER9's configure script to
> check/test
> > for the presence of X11 libs. It's rather ad-hoc and may
> break things on
> > systems where one only wants to build the non-graphical
> components of
> > AMBER, but I think it generally does the job.
> >
> > If the patch is mangled by email, try the copy at
> >
> > http://dumb.ch.ic.ac.uk/~mjw99/tmp/X11.diff
> >
> > regards,
> >
> > Mark
> >
> >
> >
> >
> > diff -urN ./amber-9.17/src/configure /opt/amber-9.17/src/configure
> > --- ./amber-9.17/src/configure 2007-01-06 09:00:46.000000000 +0000
> > +++ /opt/amber-9.17/src/configure 2007-01-06
> 09:06:14.000000000 +0000
> > .. -1254,6 +1254,36 ..
> > slko='test.sander.DFTB'
> > fi
> >
> >
> +#------------------------------------------------------------
> --------------
> > +# Check if X11 libs are present
> >
> +#------------------------------------------------------------
> --------------
> > +
> > +echo ""
> > +echo "Testing for X11 libs..."
> > +
> > +cat <<EOF > conftest.c
> > +#include <X11/Intrinsic.h>
> > +int main ()
> > +{
> > + XtMalloc (0);
> > + return 0;
> > +}
> > +EOF
> > +
> > +$cc -o conftest conftest.c $xlibs -lXt &>/dev/null
> > +if [ $? != 0 ]; then
> > + echo "X11 libs not found, quitting"
> > + echo "<give some useful tips here>"
> > + rm conftest.c &>/dev/null
> > + exit
> > +else
> > + echo "X11 libs found"
> > + rm conftest conftest.c &>/dev/null
> > +fi
> > +
> > +
> > +
> > +
> >
>
Received on Sun Jan 07 2007 - 06:08:00 PST