Fix building docs for blddir != srcdir

This commit is contained in:
Willem Toorop 2014-05-21 16:21:45 +02:00
parent 0c02f99a77
commit 26faaa67c1
5 changed files with 14 additions and 11 deletions

View File

@ -28,7 +28,7 @@
.TH getdns_list 3 "@date@" "getdns @version@" getdns
.SH NAME
.B getdns_list,
.B getdns_list_get,
.B getdns_list_get_bindata,
.B getdns_list_get_data_type,
.B getdns_list_get_dict,

View File

@ -692,11 +692,12 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
INPUT = . \
getdns/ \
example/ \
test/ \
../README.md
INPUT = @srcdir@ \
getdns/ \
@srcdir@/getdns/ \
@srcdir@/example/ \
@srcdir@/test/ \
@srcdir@/../README.md
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is

View File

@ -168,7 +168,8 @@ add_ip_str(struct getdns_dict * ip)
/**
* check a file for changes since the last check
* and refresh the current data if changes are detected
* @param file to check
* @param context pointer to a previously created context to be used for this call
* @param fchg file to check
* @returns changes as OR'd list of GETDNS_FCHG_* values
* @returns GETDNS_FCHG_NONE if no changes
* @returns GETDNS_FCHG_ERRORS if problems (see fchg->errors for details)

View File

@ -47,7 +47,6 @@
* private function used to locate a key in a dictionary
* @param dict dicitonary to search
* @param key key to search for
* @param addifnotfnd if TRUE then an item will be added if the key is not found
* @return pointer to dictionary item, caller must not free storage associated with item
* @return NULL if additnotfnd == FALSE and key is not in dictionary
*/
@ -342,7 +341,9 @@ getdns_dict_copy(const struct getdns_dict * srcdict,
/*---------------------------------------- getdns_dict_item_free */
/**
* private function used to release storage associated with a dictionary item
* @param item all memory in this structure and its children will be freed
* @param node all memory in this structure and its children will be freed
* @param arg is a dict who's custom memory function will be used
* to free the items
* @return void
*/
void

View File

@ -656,7 +656,7 @@ void getdns_list_destroy(getdns_list *this_list);
* the child dict and will free the copy when the list is destroyed
* @param this_list list containing the item to which child_list is to be assigned
* @param index index of the item within list to which child_list is to be assigned
* @param *child_list list to assign to the item
* @param *child_dict dict to assign to the item
* @return GETDNS_RETURN_GOOD on success
* @return GETDNS_RETURN_NO_SUCH_LIST_ITEM if index is out of range, or list is NULL
*/
@ -915,7 +915,7 @@ getdns_validate_dnssec(getdns_list *to_validate,
* creates a string that describes the dictionary in a human readable form
* one line per item in the dictionary
* TODO: maybe this should be json or something machine readable too
* @param this_dict dictionary to pretty print
* @param some_dict dictionary to pretty print
* @return character array (caller must free this) containing pretty string
*/
char *getdns_pretty_print_dict(const getdns_dict *some_dict);