From 8190e96fad6481eed053dc724ce5d8fbb89d8ad1 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Thu, 2 Sep 2010 05:27:53 +0000 Subject: Merged revisions 284610 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r284610 | tilghman | 2010-09-02 00:20:59 -0500 (Thu, 02 Sep 2010) | 10 lines When optional_api is non-optional, force dependent modules to be loaded. (closes issue #17707) Reported by: ira Patches: 20100819__issue17707__asterisk1.8.diff.txt uploaded by tilghman (license 14) Tested by: tilghman Review: https://reviewboard.asterisk.org/r/876/ ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@284628 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/module.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/asterisk/module.h') diff --git a/include/asterisk/module.h b/include/asterisk/module.h index 24f66fc36..aaa8cbef3 100644 --- a/include/asterisk/module.h +++ b/include/asterisk/module.h @@ -242,6 +242,11 @@ struct ast_module_info { * this value will never be read and the module will be given the lowest possible priority * on load. */ unsigned char load_pri; + + /*! Modules which should be loaded first, in comma-separated string format. + * These are only required for loading, when the optional_api header file + * detects that the compiler does not support the optional API featureset. */ + const char *nonoptreq; }; void ast_module_register(const struct ast_module_info *); -- cgit v1.2.3