Update for corrected name of standard header file. Should be dlfcn.h, not dllfcn.h. I am surprised no one ever noticed before now.

This commit is contained in:
Gregory Nutt 2019-02-09 14:10:16 -06:00
parent 87f42accc6
commit 43e79ac329
5 changed files with 7 additions and 7 deletions

View File

@ -1596,7 +1596,7 @@ examples/sotest
This example builds a small shared library module test case. The test This example builds a small shared library module test case. The test
shared library is built using the relocatable ELF format and installed shared library is built using the relocatable ELF format and installed
in a ROMFS file system. At run time, the shared library is installed and exercised. Requires CONFIG_LIBC_DLLFCN. Other configuration options: in a ROMFS file system. At run time, the shared library is installed and exercised. Requires CONFIG_LIBC_DLFCN. Other configuration options:
CONFIG_EXAMPLES_SOTEST_DEVMINOR - The minor device number of the ROMFS block CONFIG_EXAMPLES_SOTEST_DEVMINOR - The minor device number of the ROMFS block
driver. For example, the N in /dev/ramN. Used for registering the RAM driver. For example, the N in /dev/ramN. Used for registering the RAM

View File

@ -6,7 +6,7 @@
config EXAMPLES_SOTEST config EXAMPLES_SOTEST
tristate "Shared Library Example" tristate "Shared Library Example"
default n default n
depends on LIBC_DLLFCN depends on LIBC_DLFCN
---help--- ---help---
Enable the shared library example Enable the shared library example

View File

@ -41,7 +41,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <stdarg.h> #include <stdarg.h>
#include <dllfcn.h> #include <dlfcn.h>
#include <syslog.h> #include <syslog.h>
#include <nuttx/symtab.h> #include <nuttx/symtab.h>

View File

@ -41,7 +41,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <stdarg.h> #include <stdarg.h>
#include <dllfcn.h> #include <dlfcn.h>
#include <syslog.h> #include <syslog.h>
#include <nuttx/symtab.h> #include <nuttx/symtab.h>

View File

@ -46,7 +46,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <syslog.h> #include <syslog.h>
#include <dllfcn.h> #include <dlfcn.h>
#include <errno.h> #include <errno.h>
#include <debug.h> #include <debug.h>
@ -65,8 +65,8 @@
* are required -- only the more obvious. * are required -- only the more obvious.
*/ */
#ifndef CONFIG_LIBC_DLLFCN #ifndef CONFIG_LIBC_DLFCN
# error "You must select CONFIG_LIBC_DLLFCN in your configuration file" # error "You must select CONFIG_LIBC_DLFCN in your configuration file"
#endif #endif
#ifdef CONFIG_EXAMPLES_SOTEST_BUILTINFS #ifdef CONFIG_EXAMPLES_SOTEST_BUILTINFS