sane-project-website/old-archive/2001-07/0168.html

189 wiersze
6.8 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML>
<HEAD>
<TITLE>sane-devel: Xsane Configuere Script Bug</TITLE>
<META NAME="Author" CONTENT="Juergen Sauer (jojo@automatix.de)">
<META NAME="Subject" CONTENT="Xsane Configuere Script Bug">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1>Xsane Configuere Script Bug</H1>
<!-- received="Tue Jul 17 04:28:01 2001" -->
<!-- isoreceived="20010717112801" -->
<!-- sent="Tue, 17 Jul 2001 13:05:17 +0200" -->
<!-- isosent="20010717110517" -->
<!-- name="Juergen Sauer" -->
<!-- email="jojo@automatix.de" -->
<!-- subject="Xsane Configuere Script Bug" -->
<!-- id="01071713051700.06440@pc2" -->
<STRONG>From:</STRONG> Juergen Sauer (<A HREF="mailto:jojo@automatix.de?Subject=Re:%20Xsane%20Configuere%20Script%20Bug&In-Reply-To=&lt;01071713051700.06440@pc2&gt;"><EM>jojo@automatix.de</EM></A>)<BR>
<STRONG>Date:</STRONG> Tue Jul 17 2001 - 04:05:17 PDT
<P>
<!-- next="start" -->
<LI><STRONG>Next message:</STRONG> <A HREF="0169.html">Pierre Abbat: "Re: How to write a backend?"</A>
<UL>
<LI><STRONG>Previous message:</STRONG> <A HREF="0167.html">fheitka@attglobal.net: "compiling latest sane on PowerPC Linux"</A>
<!-- nextthread="start" -->
<LI><STRONG>Next in thread:</STRONG> <A HREF="0182.html">Henning Meier-Geinitz: "Re: Xsane Configuere Script Bug"</A>
<LI><STRONG>Reply:</STRONG> <A HREF="0182.html">Henning Meier-Geinitz: "Re: Xsane Configuere Script Bug"</A>
<LI><STRONG>Reply:</STRONG> <A HREF="0247.html">Oliver Rauch: "Re: Xsane Configuere Script Bug"</A>
<!-- reply="end" -->
<LI><STRONG>Messages sorted by:</STRONG>
<A HREF="date.html#168">[ date ]</A>
<A HREF="index.html#168">[ thread ]</A>
<A HREF="subject.html#168">[ subject ]</A>
<A HREF="author.html#168">[ author ]</A>
</UL>
<HR NOSHADE><P>
<!-- body="start" -->
<P>
Moin,
<BR>
Bug report about Xsane 0.78, I was not able to enable the gimp Plugin
<BR>
mode during the ./configure script.
<BR>
<P>I read the File Xsane.PROBLEMS, and followed that instructions.
<BR>
<P>This is the result:
<BR>
[...]
<BR>
checking for gimp-config... (cached) /usr/bin/gimp-config
<BR>
checking for GIMP - version &gt;= 1.0.0... no
<BR>
*** Could not run GIMP test program, checking why...
<BR>
[...]
<BR>
gtk-config is in /usr/bin
<BR>
gimp-config is in place /usr/bin
<BR>
<P>I do Xsane config like this:
<BR>
-----------------------------------------------------
<BR>
#!/bin/bash
<BR>
if [ ! -x configure ] ; then
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;echo Autoconfigure Script fehlt! ERROR
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;exit 1
<BR>
fi
<BR>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;./configure \
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--prefix=/usr \
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--sysconfdir=/etc/sane.d \
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--with-gnu-ld \
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--with-gtk-prefix=/usr \
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--enable-gimp \
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--with-gimp-prefix=/usr
<BR>
<P>if [ $? -gt 0 ] ; then
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;echo Upps.
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;exit 1
<BR>
fi
<BR>
exit 0
<BR>
------------------------------------------------------
<BR>
I configured &amp;&amp; build gimp like this, just before the xsane build:
<BR>
------------------------------------------------------
<BR>
#!/bin/bash
<BR>
echo Jojo configuriert GIMP
<BR>
if [ ! -x configure ] ; then
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;echo Autoconfigure Script fehlt! ERROR
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;exit 1
<BR>
fi
<BR>
<P>./configure \
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--prefix=/usr \
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--enable-mp=yes \
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--with-included-gettext \
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--datadir=/usr/share/gimp \
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--with-gtk=/usr \
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--with-gnu-ld \
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--with-gimp-prefix=/usr/bin \
<BR>
<P><P>if [ $? -gt 0 ] ; then
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;echo Upps.
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;echo Was schiefgegangen
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;exit 1
<BR>
fi
<BR>
------------------------------------------------------
<BR>
<P>mfG
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;J<EFBFBD>rgen Sauer
<BR>
<PRE>
--
J<EFBFBD>rgen Sauer - AutomatiX GmbH, +49-4209-4699, <A HREF="mailto:jojo@automatix.de?Subject=Re:%20Xsane%20Configuere%20Script%20Bug&In-Reply-To=&lt;01071713051700.06440@pc2&gt;">jojo@automatix.de</A> **
** Das Linux Systemhaus - Service - Support - Server - L<>sungen **
<A HREF="http://www.automatix.de">http://www.automatix.de</A> to Mail me: remove: -not-for-spawm- **
<P>--
Source code, list archive, and docs: <A HREF="http://www.mostang.com/sane/">http://www.mostang.com/sane/</A>
To unsubscribe: echo unsubscribe sane-devel | mail <A HREF="mailto:majordomo@mostang.com?Subject=Re:%20Xsane%20Configuere%20Script%20Bug&In-Reply-To=&lt;01071713051700.06440@pc2&gt;">majordomo@mostang.com</A>
</PRE>
<P><!-- body="end" -->
<HR NOSHADE>
<UL>
<!-- next="start" -->
<LI><STRONG>Next message:</STRONG> <A HREF="0169.html">Pierre Abbat: "Re: How to write a backend?"</A>
<LI><STRONG>Previous message:</STRONG> <A HREF="0167.html">fheitka@attglobal.net: "compiling latest sane on PowerPC Linux"</A>
<!-- nextthread="start" -->
<LI><STRONG>Next in thread:</STRONG> <A HREF="0182.html">Henning Meier-Geinitz: "Re: Xsane Configuere Script Bug"</A>
<LI><STRONG>Reply:</STRONG> <A HREF="0182.html">Henning Meier-Geinitz: "Re: Xsane Configuere Script Bug"</A>
<LI><STRONG>Reply:</STRONG> <A HREF="0247.html">Oliver Rauch: "Re: Xsane Configuere Script Bug"</A>
<!-- reply="end" -->
<LI><STRONG>Messages sorted by:</STRONG>
<A HREF="date.html#168">[ date ]</A>
<A HREF="index.html#168">[ thread ]</A>
<A HREF="subject.html#168">[ subject ]</A>
<A HREF="author.html#168">[ author ]</A>
</UL>
<!-- trailer="footer" -->
<HR NOSHADE>
<P>
<SMALL>
<EM>
This archive was generated by <A HREF="http://www.hypermail.org/">hypermail 2b29</A>
: <EM>Tue Jul 17 2001 - 04:30:08 PDT</EM>
</EM>
</SMALL>
</BODY>
</HTML>