lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

directfb: explicitly disable parallel building

Disable parallel building as parallel builds fail due to incomplete
depends between autogenerated CoreSlave.h and it's include sites:

```
CC prealloc_surface_pool_bridge.lo
prealloc_surface_pool_bridge.c:41:10:
fatal error: core/CoreSlave.h: No such file or directory
```

Dependencies are specified manually in src/core/Makefile.am. Instead
of fixing them one by one locally let's disable parallel builds until
upstream fixes them.

+11
+11
pkgs/development/libraries/directfb/default.nix
··· 48 48 "--with-smooth-scaling" 49 49 ] ++ lib.optional enableX11 "--enable-x11"; 50 50 51 + # Disable parallel building as parallel builds fail due to incomplete 52 + # depends between autogenerated CoreSlave.h and it's include sites: 53 + # CC prealloc_surface_pool_bridge.lo 54 + # prealloc_surface_pool_bridge.c:41:10: 55 + # fatal error: core/CoreSlave.h: No such file or directory 56 + # 57 + # Dependencies are specified manually in src/core/Makefile.am. Instead 58 + # of fixing them one by one locally let's disable parallel builds until 59 + # upstream fixes them. 60 + enableParallelBuilding = false; 61 + 51 62 meta = with lib; { 52 63 description = "Graphics and input library designed with embedded systems in mind"; 53 64 longDescription = ''