mirror of
https://github.com/samba-team/samba.git
synced 2025-01-25 06:04:04 +03:00
r19440: merged from samba3
(This used to be commit c22fb040234d0cb808fb36e1b4b7ea7bfd45c8cb)
This commit is contained in:
parent
ab037664d8
commit
9044f4aa90
@ -26,28 +26,28 @@
|
||||
#include "replace.h"
|
||||
|
||||
#ifndef HAVE_DLOPEN
|
||||
void *dlopen(const char *name, int flags)
|
||||
void *rep_dlopen(const char *name, int flags)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_DLSYM
|
||||
void *dlsym(void *handle, const char *symbol)
|
||||
void *rep_dlsym(void *handle, const char *symbol)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_DLERROR
|
||||
char *dlerror(void)
|
||||
char *rep_dlerror(void)
|
||||
{
|
||||
return "dynamic loading of objects not supported on this platform";
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_DLCLOSE
|
||||
int dlclose(void *handle)
|
||||
int rep_dlclose(void *handle)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user