genode/libports/src/lib/libc/patches
Josef Söntgen 30fe9d1912 Extend libc with libresolv functionality
This commit enables libc's own libresolv and its dependencies.
2012-05-29 13:54:59 +02:00
..
log2.patch Preliminary 'log2()' and 'log2f()' implementation 2012-03-08 10:42:21 +01:00
malloc_c.patch Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
math_private.patch Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
pthread_cancel.patch Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
README Extend libc with libresolv functionality 2012-05-29 13:54:59 +02:00
res_send_c.patch Extend libc with libresolv functionality 2012-05-29 13:54:59 +02:00
vfwprintf_c_warn.patch Imported Genode release 11.11 2011-12-22 16:19:25 +01:00

Manual modifications
####################

:'src/lib/libc/stdlib/malloc.c':

  Undefine 'MALLOC_DSS' to avoid the usage of sbrk.
  ! //#define	MALLOC_DSS

:'src/lib/libc/stdio/vfwprintf.c':

  Fix warnings caused by conversions between (char *) and (wchar_t *).
  This is just a cosmetic fix.

:'src/lib/libc/gen/_pthread_stubs.c':

  Prevent definition of symbol 'pthread_cancel'. This symbol is provided by the
  C++ support library as weak symbol. By redefining this symbol as non-weak in
  the libc, the C++ support library would use the libc dummy stub instead its
  own implementation, causing problems with handling exceptions.

:'src/lib/libc/resolv/res_send.c':

  Disable usage of kqueue and fix building libresolv when kqueue is disabled.