GNOME Bugzilla – Bug 724949
Server side (PHP) search broke in 1.8.3
Last modified: 2014-03-19 21:52:54 UTC
Created attachment 269989 [details] bug example The following works in 1.8.2 but broke in 1.8.3: Configuration (doxygen.cfg): SERVER_BASED_SEARCH = YES OPTIMIZE_OUTPUT_FOR_C = YES FILE_PATTERNS = *.h EXTRACT_ALL = YES Header file dummy.h: /** @def DUMMY_MACRO * @brief Some dummy macro */ #define DUMMY_MACRO 1234 /** * @brief Some dummy function * * @param[in] dummy Dummy arg */ void dummy_function(int dummy); Now search for DUMMY_MACRO or dummy_function and they are not found in 1.8.3 and above (tried latest git but that was the same). It appears that the search.idx does not contain the members any more, because if I copy search.idx generated with 1.8.2 into a project generated with 1.8.3 it works.
Confirmed. Should be fixed in the next GIT update.
Just tested from git. Works great now. Thanks a lot!