Custom Query (257 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (40 - 42 of 257)

Ticket Resolution Summary Owner Reporter
#330 fixed Compile fails on Windows due to __null being some reserved keyword stephanj
Description

mingw on windows complains about a reserved keyword it seems.

$ gcc --version
gcc.exe (GCC) 4.6.1
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

a quickfix discussed on irc helped:

$ diff uuid.c  current/libroar/uuid.c
88c88
<  static const roar_uuid_t * __null = NULL,
---
>  static const roar_uuid_t * nix = NULL,
96c96
<   return __null;
---
>   return nix;
110c110
<  return __null;
---
>  return nix;
#331 fixed roarshout fails to compile on windows stephanj
Description

The compiler complains about a missing pthread references.

Adding $(lib_pthread) to lib_shout in Makefile.conf fixed this.

Thanks ph3!

#341 fixed Tests fail on Windows due to missing LD_LIBRARY_PATH support stephanj
Description

Tests fail on Windows due to missing LD_LIBRARY_PATH support... Insteads the Dir has to be in the Path.

Adding the following to tests/common.sh fixes the problem:

export PATH=$LD_LIBRARY_PATH:$PATH

Note: See TracQuery for help on using queries.