Custom Query (257 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 257)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
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;
#329 fixed roard complains about Locking Level on windows ph3-der-loewe stephanj
Description

I am getting this error message upon launch of roard on windows:

(roard: roard.c:2504): Warning: Can not set memory locking level to target level.
#328 fixed make install fails on win32 due to being unable to create symlinks stephanj
Description

Windows doesnt like symlinks it seems and due to that the install process of roaraudio aborts, this results in an uncomplete target dir(missing includes)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Note: See TracQuery for help on using queries.