diff options
author | Murray Cumming <murrayc@murrayc.com> | 2016-03-15 12:34:35 +0100 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2016-03-15 12:34:35 +0100 |
commit | f723f80c94d52159c0b6e01a3ddb414a7f0a513f (patch) | |
tree | c5e8b6d31bbcec2f3180611c643493d60099fce6 /sigc++/sigc++.h | |
parent | 4ff55db2cb6038ea5197d8a89ee4ec4f456e3834 (diff) | |
download | sigc++-f723f80c94d52159c0b6e01a3ddb414a7f0a513f.tar.gz |
Reference docs: main page: Make autotools part consistent with CMake part.
Diffstat (limited to 'sigc++/sigc++.h')
-rw-r--r-- | sigc++/sigc++.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sigc++/sigc++.h b/sigc++/sigc++.h index 3389a2e..064c6b3 100644 --- a/sigc++/sigc++.h +++ b/sigc++/sigc++.h @@ -69,13 +69,13 @@ * * Alternatively, if using autoconf, use the following in @c configure.ac: * @code - * PKG_CHECK_MODULES([LIBSIGC], [sigc++-3.0]) + * PKG_CHECK_MODULES([DEPS], [sigc++-3.0]) * @endcode - * Then use the generated @c LIBSIGC_CFLAGS and @c LIBSIGC_LIBS variables + * Then use the generated @c DEPS_CFLAGS and @c DEPS_LIBS variables * in the project @c Makefile.am files. For example: * @code - * program_CPPFLAGS = $(LIBSIGC_CFLAGS) - * program_LDADD = $(LIBSIGC_LIBS) + * yourprogram_CPPFLAGS = $(DEPS_CFLAGS) + * yourprogram_LDADD = $(DEPS_LIBS) * @endcode * * @subsection cmake Using CMake |