Custom Query (257 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (55 - 57 of 257)

Ticket Resolution Summary Owner Reporter
#283 fixed There should be a roar_buffer_moveinto() like function moving a buffer into a buffer chain ph3-der-loewe ph3-der-loewe
Description

There should be a function like roar_buffer_moveinto() moving a buffer into a buffer chain. This function should take a pointer to the buffer pointer. The function should basically do the following:

if ( *buf == NULL ) {
 *buf = *next;
 *next = NULL;
} else {
 roar_buffer_moveinto(*buf, next);
}

Such a function may be useful in a lot cases. It may be very helpful with the common protocol interface (see #257).

#282 fixed configure script uses 'dependencys' while 'dependencies' would be correct ph3-der-loewe ph3-der-loewe
Description

The configure script misspells 'dependencies'. This should be corrected.

#281 fixed Dependency linking should be switched to default to indirect ph3-der-loewe ph3-der-loewe
Description

The default model for dependency linking should be switch to indirect.

Note that this may not be supported on all platforms. For those configure should keep providing --link-deps. Also they (the ones we know of) should be added to some kind of blacklist for indirect linking. I suspect win32 to be such a platform.

Note: See TracQuery for help on using queries.