Merge pull request #24216 from LnL7/fox-llvm-4

fox: fix build with clang >=4 and possibly other versions
This commit is contained in:
Daniel Peebles 2017-03-22 22:16:00 -04:00 committed by GitHub
commit f5aebcd465
2 changed files with 26 additions and 14 deletions

View File

@ -0,0 +1,13 @@
diff --git a/src/FXReactor.cpp b/src/FXReactor.cpp
index 1ecdb45..9058a30 100644
--- a/src/FXReactor.cpp
+++ b/src/FXReactor.cpp
@@ -452,7 +452,7 @@ FXint FXReactor::processActiveHandles(FXTime block,FXuint flags){
}
// Normal case
- if(0<=hand){
+ if(0==hand){
// Any handles active?
if(0<nhand){

View File

@ -1,20 +1,19 @@
{ stdenv, fetchurl, xlibsWrapper, libpng, libjpeg, libtiff, zlib, bzip2, libXcursor, libXrandr, libXft { stdenv, fetchurl, xlibsWrapper, libpng, libjpeg, libtiff, zlib, bzip2, libXcursor, libXrandr, libXft
, CoreServices ? null }: , CoreServices ? null }:
let
version = "1.7.9";
in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "fox-${version}"; name = "fox-${version}";
version = "1.7.9";
src = fetchurl { src = fetchurl {
url = "ftp://ftp.fox-toolkit.org/pub/${name}.tar.gz"; url = "ftp://ftp.fox-toolkit.org/pub/${name}.tar.gz";
sha256 = "1jb9368xsin3ppdf6979n5s7in3s9klbxqbwcp0z8misjixl7nzg"; sha256 = "1jb9368xsin3ppdf6979n5s7in3s9klbxqbwcp0z8misjixl7nzg";
}; };
patches = [ ./clang.patch ];
buildInputs = [ libpng xlibsWrapper libjpeg libtiff zlib bzip2 libXcursor libXrandr libXft ] buildInputs = [ libpng xlibsWrapper libjpeg libtiff zlib bzip2 libXcursor libXrandr libXft ]
++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices ]; ++ stdenv.lib.optional stdenv.isDarwin CoreServices;
doCheck = true; doCheck = true;
@ -22,7 +21,7 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ]; hardeningDisable = [ "format" ];
meta = { meta = with stdenv.lib; {
description = "C++ based class library for building Graphical User Interfaces"; description = "C++ based class library for building Graphical User Interfaces";
longDescription = '' longDescription = ''
FOX stands for Free Objects for X. FOX stands for Free Objects for X.
@ -31,8 +30,8 @@ stdenv.mkDerivation rec {
Current aims are to make FOX completely platform independent, and thus programs written against the FOX library will be only a compile away from running on a variety of platforms. Current aims are to make FOX completely platform independent, and thus programs written against the FOX library will be only a compile away from running on a variety of platforms.
''; '';
homepage = "http://fox-toolkit.org"; homepage = "http://fox-toolkit.org";
license = stdenv.lib.licenses.lgpl3; license = licenses.lgpl3;
maintainers = [ stdenv.lib.maintainers.bbenoist ]; maintainers = [ maintainers.bbenoist ];
platforms = stdenv.lib.platforms.all; platforms = platforms.all;
}; };
} }