# HG changeset patch # User Mike Becker # Date 1743938477 -7200 # Node ID 637d4775e79e901776f757b3a9ca595ce67a4207 # Parent 91a64ba395f784226196535d1b329ea011ad183c fixes some docs compiler complaints diff -r 91a64ba395f7 -r 637d4775e79e docs/Writerside/topics/install.md --- a/docs/Writerside/topics/install.md Sun Apr 06 13:13:52 2025 +0200 +++ b/docs/Writerside/topics/install.md Sun Apr 06 13:21:17 2025 +0200 @@ -1,6 +1,4 @@ ---- -title: Build Instructions ---- +# Build Instructions The build processes uses configure and make. Make sure that you have `make` and a @@ -14,7 +12,7 @@ Download the latest source archive from Source Forge and extract it somewhere on your machine. You can also use the command line to do this. - + wget -O libucx.tgz https://sourceforge.net/projects/ucx/files/latest tar -xzf libucx.tgz cd libucx @@ -24,7 +22,7 @@ Configure the build according to your preferences. You can get a list of all available options with ./configure --help. The recommended configuration for production builds is ./configure --release. - + ./configure --release make make check diff -r 91a64ba395f7 -r 637d4775e79e docs/Writerside/topics/properties.h.md --- a/docs/Writerside/topics/properties.h.md Sun Apr 06 13:13:52 2025 +0200 +++ b/docs/Writerside/topics/properties.h.md Sun Apr 06 13:21:17 2025 +0200 @@ -11,7 +11,7 @@ An example properties file looks like this: -```properties +```Ini # Comment line at start of file key1 = value1 key2 = value2 diff -r 91a64ba395f7 -r 637d4775e79e docs/Writerside/topics/test.h.md --- a/docs/Writerside/topics/test.h.md Sun Apr 06 13:13:52 2025 +0200 +++ b/docs/Writerside/topics/test.h.md Sun Apr 06 13:21:17 2025 +0200 @@ -22,7 +22,7 @@ - +d = 42; @@ -38,10 +38,10 @@ } free(x); } - +]]> - +d; } - +]]> @@ -93,7 +93,7 @@ Instead, you define a callable test subroutine with `CX_TEST_SUBROUTINE` and call it with `CX_TEST_CALL_SUBROUTINE`. The following example illustrates this with an adaption of the above test case. - +d = d; CX_TEST_ASSERT(foo(x) == d); @@ -108,7 +108,7 @@ } free(x); } - +]]> > Any test function, test case or test subroutine, is a normal C function. > As such you can decide to make them `static` when you do not want external linkage.