Module Name: src Committed By: pooka Date: Thu Jul 24 11:58:45 UTC 2014
Modified Files: src/sys/kern: makesyscalls.sh Log Message: Ensure that symbols are aliased to standard names when using RUMP_KERNEL_IS_LIBC. For example configure scripts do not always include headers, and if select is visible as a __RENAME'd __select50 instead of select, configure will not find it. before: === snip === checking for gethostbyname... yes checking for socket... no checking for socket in -lsocket... no === snip === after: === snip === checking for gethostbyname... yes checking for socket... yes checking for main in -linet6... no === snip === Another option would be to enable the libc compat bits, and it probably will be done at some point, but this is easier and more self-contained for now. To generate a diff of this commit: cvs rdiff -u -r1.144 -r1.145 src/sys/kern/makesyscalls.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.