X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f X-Received: by 10.66.190.36 with SMTP id gn4mr54982684pac.17.1430914334862; Wed, 06 May 2015 05:12:14 -0700 (PDT) X-Received: by 10.140.98.175 with SMTP id o44mr386529qge.33.1430914334554; Wed, 06 May 2015 05:12:14 -0700 (PDT) Newsgroups: comp.os.msdos.djgpp Date: Wed, 6 May 2015 05:12:14 -0700 (PDT) In-Reply-To: <201505042003.t44K3odg011007@delorie.com> Complaints-To: groups-abuse AT google DOT com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=89.24.106.115; posting-account=Q0wMHAoAAADjYrghh94FTf6YnbpTqZgp NNTP-Posting-Host: 89.24.106.115 References: <201505042003 DOT t44K3odg011007 AT delorie DOT com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: ANNOUNCE: DJGPP 2.05 beta 1 From: "RayeR (glaux AT centrum DOT cz)" Injection-Date: Wed, 06 May 2015 12:12:14 +0000 Content-Type: text/plain; charset=ISO-8859-1 Bytes: 1599 Lines: 6 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, thank you for your effort to make final release of djdev 2.05! Please could you just add log2f macro to INCLUDE/MATH.H that I need for compiling FFMPEG package? #ifndef log2f #define log2f(x) (logf(x)/(float)M_LN2) #endif I can see that it's placed in INCLUDE/LIBM/MATH.H but this file seems to not be included in my case (or macro not defined) so I added it directly to INCLUDE/MATH.H myself. After this minor fix FFMPEG was compiled without problem and works fine.