Skip to content

Commit

Permalink
comment out version requirement glib-2.0 > 2.40 since codeql chokes o…
Browse files Browse the repository at this point in the history
…n it
  • Loading branch information
rockowitz committed Jan 7, 2025
1 parent 2c9eb9e commit 4f86b86
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -593,8 +593,10 @@ dnl 1) appends to xxx_CFLAGS and xxx_LIBS the output of pkg-config --cflags|--li
dnl 2) if no action-if-false branch defined, pkg_check_modules terminates execution if not found

dnl 9/2017: need >= 2.32 for g_thread_...() functions
PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.40)
required_packages="$required_packages glib-2.0 >= 2.40"
# PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.40)
# required_packages="$required_packages glib-2.0 >= 2.40"
PKG_CHECK_MODULES(GLIB, glib-2.0)
required_packages="$required_packages glib-2.0"
PKG_CHECK_MODULES(JANSSON, jansson >= 2.0)
required_packages="$required_packages jansson >= 2.0"

Expand Down

0 comments on commit 4f86b86

Please sign in to comment.