X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f X-Received: by 10.236.102.40 with SMTP id c28mr23994946yhg.11.1386198817503; Wed, 04 Dec 2013 15:13:37 -0800 (PST) X-Received: by 10.49.49.232 with SMTP id x8mr139249qen.13.1386198817486; Wed, 04 Dec 2013 15:13:37 -0800 (PST) Newsgroups: comp.os.msdos.djgpp Date: Wed, 4 Dec 2013 15:13:37 -0800 (PST) In-Reply-To: <63a4dd50-9a50-49b1-8786-6460a3bb2e42@googlegroups.com> Complaints-To: groups-abuse AT google DOT com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=65.13.115.246; posting-account=p5rsXQoAAAB8KPnVlgg9E_vlm2dvVhfO NNTP-Posting-Host: 65.13.115.246 References: <1129ec5e-7001-4838-aefe-beffc5c0d1ba AT googlegroups DOT com> <54466520-a684-405e-ab40-36a4acc5c10b AT googlegroups DOT com> <528E6CE6 DOT 7040301 AT gmx DOT de> <63a4dd50-9a50-49b1-8786-6460a3bb2e42 AT googlegroups DOT com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: no enought memory under win xp From: rugxulo AT gmail DOT com Injection-Date: Wed, 04 Dec 2013 23:13:37 +0000 Content-Type: text/plain; charset=ISO-8859-1 X-Received-Bytes: 2833 X-Received-Body-CRC: 896173701 Bytes: 3074 Lines: 42 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk Hi, On Wednesday, December 4, 2013 1:57:17 PM UTC-6, raffap DOT DOT DOT AT gmail DOT com wrote: > > i've downloaded the suggested libraries, then i've cd in ghostscript > directory, call Sh , set CONFIG_SITE=./config.site , make ./configure > --with-system-libtiff. > > The configuration start , when arrive to check from X libraries stop > for about 1 minute ,then display this message > > " Unable to include Opvp oppr drivers due to missing or disabled > prerequisite". > > After this the configure continue goes to end , but it's stopped at > end with a message regardind "sed"( i can't read all the message in > dos subsistem in xp) > > Whath i can due for avoid this problem? It's not really supported, so even if you did everything correctly, it probably won't work with DJGPP. I hate to keep saying that, but there's just no way something that is untested and ignored is going to work by default. However, regarding errors about sed, be sure you have GNU sed installed, e.g. 4.2.2: http://na.mirror.garr.it/mirrors/djgpp/beta/v2gnu/sed422b.zip According to the GNU Coding Standards, you need at minimum the following utilities installed before anything is expected to work: http://www.gnu.org/prep/standards/standards.html#Utilities-in-Makefiles " 7.2.2 Utilities in Makefiles The configure script and the Makefile rules for building and installation should not use any utilities directly except these: awk cat cmp cp diff echo egrep expr false grep install-info ln ls mkdir mv printf pwd rm rmdir sed sleep sort tar test touch tr true "