Skip to content

Commit

Permalink
Actually requires Hamlib version 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fillods committed Jan 4, 2023
1 parent 300985a commit db89118
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ You likely miss some of the required libraries if you get any error messages dur

* `gtk+-2.0` at least version 2.12.0
* `gthread-2.0` at least version 2.14.0
* `hamlib` at least version 4.0
* `hamlib` at least version 4.2

Please note that you also need the so-called development packages which
contain the necessary header files.
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ AM_XGETTEXT_OPTION([--from-code=UTF-8])
AC_CHECK_LIB([m], [sincos])

dnl Check hamlib
hamlib_modules="hamlib >= 4.0"
hamlib_modules="hamlib >= 4.2"
PKG_CHECK_MODULES(HAMLIB, [$hamlib_modules], [
CFLAGS="$CFLAGS $HAMLIB_CFLAGS";
LIBS="$LIBS $HAMLIB_LIBS";
dnl AC_DEFINE(WANT_HAMLIB, 1)
], [
AC_MSG_ERROR([Hamradio control libraries 4.0 or later not found...])
AC_MSG_ERROR([Hamradio control libraries 4.2 or later not found...])
])


Expand Down

0 comments on commit db89118

Please sign in to comment.