summaryrefslogtreecommitdiff
path: root/glib/glibmm.h
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2020-12-11 18:21:32 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2020-12-11 18:21:32 +0100
commit3ac399bcc946ef5e398cdf7eaf603f7430ca1f28 (patch)
tree41674f3b9f9a651c12977890a27097e884ac84a6 /glib/glibmm.h
parentb7ec92f0980f8913e7ef53b605070eb9ebe7bee4 (diff)
downloadglibmm-3ac399bcc946ef5e398cdf7eaf603f7430ca1f28.tar.gz
Change the ABI to glibmm-2.68
So we can use the 2.66 version numbers for stable releases in the glibmm-2.4 ABI series. We've done similar ABI name changes several times before.
Diffstat (limited to 'glib/glibmm.h')
-rw-r--r--glib/glibmm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/glib/glibmm.h b/glib/glibmm.h
index 02f6d056..44e8cda1 100644
--- a/glib/glibmm.h
+++ b/glib/glibmm.h
@@ -63,7 +63,7 @@
*
* If your source file is @c program.cc, you can compile it with:
* @code
- * g++ program.cc -o program `pkg-config --cflags --libs glibmm-2.66 giomm-2.66`
+ * g++ program.cc -o program `pkg-config --cflags --libs glibmm-2.68 giomm-2.68`
* @endcode
* If your version of g++ is not C++17-compliant by default,
* add the @c -std=c++17 option.
@@ -71,8 +71,8 @@
* If you use <a href="https://mesonbuild.com/">Meson</a>, include the following
* in @c meson.build:
* @code
- * glibmm_dep = dependency('glibmm-2.66')
- * giomm_dep = dependency('giomm-2.66')
+ * glibmm_dep = dependency('glibmm-2.68')
+ * giomm_dep = dependency('giomm-2.68')
* program_name = 'program'
* cpp_sources = [ 'program.cc' ]
* executable(program_name,
@@ -83,7 +83,7 @@
*
* Alternatively, if using autoconf, use the following in @c configure.ac:
* @code
- * PKG_CHECK_MODULES([GLIBMM], [glibmm-2.66 giomm-2.66])
+ * PKG_CHECK_MODULES([GLIBMM], [glibmm-2.68 giomm-2.68])
* @endcode
* Then use the generated @c GLIBMM_CFLAGS and @c GLIBMM_LIBS variables in the
* project Makefile.am files. For example: