mingw-cross-env-list
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Mingw-cross-env-list] Preparation of release 2.8


From: Martin Lambers
Subject: Re: [Mingw-cross-env-list] Preparation of release 2.8
Date: Sun, 6 Sep 2009 22:11:16 +0200
User-agent: Mutt/1.5.18 (2008-05-17)

Hi!

On Wed, 02. Sep 2009, 20:04:43 +0200, Volker Grabsch wrote:
> If you want to help, please run the current development version
> on your system(s) and tell me
> 
>     1) what system it is
> 
>     2) whether the build succeeded or failed
> 
>     3) in case the build failed: the complete log file
>        (... and maybe a patch that fixes the issue ;-))
> 
> Thank you in advance!

With today's development version (20090906) and 'make JOBS=4', I get a
build failure with package theora on Debian lenny amd64.

The build log is attached. The build system tries to execute a binary
compiled with the cross compiler while building the specification. This
is only done when the packages pdflatex, bibtex, and transfig are found
by the configure script. This can be avoided by passing HAVE_PDFLATEX=no
to the configure script, like in the patch below.

Regards,
Martin


diff -r 8e93be50e66f src/theora.mk
--- a/src/theora.mk     Wed Sep 02 17:12:07 2009 +0200
+++ b/src/theora.mk     Sun Sep 06 22:10:31 2009 +0200
@@ -42,6 +42,7 @@
     cd '$(1)' && ./configure \
         --host='$(TARGET)' \
         --disable-shared \
-        --prefix='$(PREFIX)/$(TARGET)'
+        --prefix='$(PREFIX)/$(TARGET)' \
+       HAVE_PDFLATEX=no
     $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= 
noinst_PROGRAMS=
 endef




reply via email to

[Prev in Thread] Current Thread [Next in Thread]