* libltdl/ltdl.h (ltdl_error_table): Added missing error code, and

fixed typo in another code.
* doc/libtool.texi (Libltdl interface): Added missing @end
clause.
This commit is contained in:
Gary V. Vaughan 2000-01-28 01:33:33 +00:00
parent 1873874379
commit e5fbd005ca
3 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2000-01-28 Gary V. Vaughan <gary@oranda.demon.co.uk>
* libltdl/ltdl.h (ltdl_error_table): Added missing error code, and
fixed typo in another code.
* doc/libtool.texi (Libltdl interface): Added missing @end
clause.
2000-01-27 Thomas Tanner <tanner@ffii.org>
* ltconfig.in: Oops, replace the remaining $objdir's

View File

@ -3039,6 +3039,7 @@ you can add more of your own with @code{lt_dladderror}. This function returns
if (lt_dlseterror (LTDL_ERROR_NO_MEMORY) != 0)
perror (lt_dlerror ());
@end example
@end deftypefun
@deftypefun int lt_dlpreload (const lt_dlsymlist *@var{preloaded})
Register the list of preloaded modules @var{preloaded}.

View File

@ -128,7 +128,8 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
LTDL_ERROR(NO_MEMORY, "not enough memory") \
LTDL_ERROR(INVALID_HANDLE, "invalid module handle") \
LTDL_ERROR(BUFFER_OVERFLOW, "internal buffer overflow") \
LTDL_ERROR(SHUTDOWN, "library already sutdown")
LTDL_ERROR(INVALID_ERRORCODE, "invalid errorcode") \
LTDL_ERROR(SHUTDOWN, "library already shutdown")
#ifdef __STDC__
# define LTDL_ERROR(name, diagnostic) LTDL_ERROR_##name,