Skip to content

Commit

Permalink
documentation: Various doc tidyup
Browse files Browse the repository at this point in the history
doc/Doxyfile.in: Update to 1.9.8 version

configure.ac: Tidy up coap_defines.h generation

doc/upgrade_4.3.4_4.3.5.txt: Document upgrade requirements

doc/Makefile.am: Include upgrade_4.3.4_4.3.5.txt

cmake_coap_defines.h.in: Add brief description
src/coap_sha1.c: Add in brief description
  • Loading branch information
mrdeep1 committed Oct 2, 2024
1 parent 3cba297 commit 24192b0
Show file tree
Hide file tree
Showing 6 changed files with 450 additions and 231 deletions.
5 changes: 5 additions & 0 deletions cmake_coap_defines.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
* of use.
*/

/**
* @file coap_defines.h
* @brief List of libcoap library build defines
*/

#ifndef COAP_DEFINES_H_
#define COAP_DEFINES_H_

Expand Down
4 changes: 3 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1554,7 +1554,9 @@ else
fi

mkdir -p include/coap$LIBCOAP_API_VERSION
LT_TEMP=`grep -B2 " COAP_" coap_config.h > include/coap$LIBCOAP_API_VERSION/coap_defines.h`
head -19 cmake_coap_defines.h.in > include/coap$LIBCOAP_API_VERSION/coap_defines.h
LT_TEMP=`grep -B2 " COAP_" coap_config.h >> include/coap$LIBCOAP_API_VERSION/coap_defines.h`
tail -2 cmake_coap_defines.h.in >> include/coap$LIBCOAP_API_VERSION/coap_defines.h
if test "x$LT_TEMP" != "x" ; then
AC_MSG_ERROR([Unable to build coap_defines.h])
fi
Loading

0 comments on commit 24192b0

Please sign in to comment.