avrdude-dev
[Top][All Lists]
Advanced

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

Re: [avrdude-dev] Windows building advice


From: Joerg Wunsch
Subject: Re: [avrdude-dev] Windows building advice
Date: Tue, 10 Sep 2013 21:05:52 +0200
User-agent: Mutt/1.5.21 (2010-09-15)

As Enoch wrote:

> I was expecting your Mon Sep 9 15:00:36 2013 +0000 patch which is
> described as
> 
> "Check for ar and ranlib in the target tool namespace, rather than on
> the host."

Well, it's in SVN already.

But here it is again, if that's simpler for you:

Index: configure.ac
===================================================================
--- configure.ac        (revision 1213)
+++ configure.ac        (revision 1214)
@@ -39,7 +39,14 @@
 AC_PROG_SED
 AC_PROG_YACC
 AC_PROG_LEX
+AN_MAKEVAR([RANLIB], [AC_PROG_RANLIB])
+AN_PROGRAM([ranlib], [AC_PROG_RANLIB])
+AC_DEFUN([AC_PROG_RANLIB], [AC_CHECK_TARGET_TOOL(RANLIB, ranlib, :)])
 AC_PROG_RANLIB
+AN_MAKEVAR([AR], [AC_PROG_AR])
+AN_PROGRAM([ar], [AC_PROG_AR])
+AC_DEFUN([AC_PROG_AR], [AC_CHECK_TARGET_TOOL(AR, ar, :)])
+AC_PROG_AR
 AH_TEMPLATE([HAVE_YYLEX_DESTROY],
             [Define if lex/flex has yylex_destroy])
 # flex should have this

-- 
cheers, Joerg               .-.-.   --... ...--   -.. .  DL8DTL

http://www.sax.de/~joerg/
Never trust an operating system you don't have sources for. ;-)



reply via email to

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