X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=configure.ac;h=1728c60bf7e2d5a1f3c08244de01c91311fb17d2;hp=60d913173a848ff3c1c1a08f5b8aba908536f59c;hb=c8233c78da6acb23b74afe271c30355442fdaa5c;hpb=7529cdaad9e9a52c93ed4d21c2fcccaf3313592c diff --git a/configure.ac b/configure.ac index 60d9131..1728c60 100644 --- a/configure.ac +++ b/configure.ac @@ -123,6 +123,15 @@ PKG_CHECK_MODULES([check], [check >= 0.9.4], LIBS="$LIBS $check_LIBS"], [have_check="no"]) AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes") +PKG_CHECK_MODULES([libsigrok], [libsigrok >= 0.2.0], + [have_libsigrok="yes"; + LIBSIGROK_CFLAGS="$libsigrok_CFLAGS"; + LIBSIGROK_LIBS="$libsigrok_LIBS"], + [have_libsigrok="no"]) +AM_CONDITIONAL(HAVE_LIBSIGROK, test x"$have_libsigrok" = "xyes") +AC_SUBST([LIBSIGROK_CFLAGS]) +AC_SUBST([LIBSIGROK_LIBS]) + # Checks for header files. # These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h. # AC_CHECK_HEADERS([]) @@ -157,43 +166,9 @@ AC_SUBST(SRD_PACKAGE_VERSION_MICRO) AC_SUBST(SRD_PACKAGE_VERSION) AC_CONFIG_FILES([Makefile - libsigrokdecode.h + version.h libsigrokdecode.pc contrib/Makefile - decoders/Makefile - decoders/avr_isp/Makefile - decoders/can/Makefile - decoders/dcf77/Makefile - decoders/ds1307/Makefile - decoders/edid/Makefile - decoders/i2c/Makefile - decoders/i2cdemux/Makefile - decoders/i2cfilter/Makefile - decoders/i2s/Makefile - decoders/i2s_dump/Makefile - decoders/jtag/Makefile - decoders/jtag_stm32/Makefile - decoders/lm75/Makefile - decoders/lpc/Makefile - decoders/maxim_ds28ea00/Makefile - decoders/midi/Makefile - decoders/mlx90614/Makefile - decoders/mx25lxx05d/Makefile - decoders/mxc6225xu/Makefile - decoders/nunchuk/Makefile - decoders/onewire_link/Makefile - decoders/onewire_network/Makefile - decoders/pan1321/Makefile - decoders/rtc8564/Makefile - decoders/sdcard_spi/Makefile - decoders/spi/Makefile - decoders/tlc5620/Makefile - decoders/transitioncounter/Makefile - decoders/uart/Makefile - decoders/uart_dump/Makefile - decoders/usb_packet/Makefile - decoders/usb_signalling/Makefile - decoders/xfp/Makefile tests/Makefile ]) @@ -212,7 +187,7 @@ echo "Detected libraries:" echo # Note: This only works for libs with pkg-config integration. -for lib in "glib-2.0 >= 2.24.0" "check >= 0.9.4"; do +for lib in "glib-2.0 >= 2.24.0" "check >= 0.9.4" "libsigrok >= 0.2.0"; do if `$PKG_CONFIG --exists $lib`; then ver=`$PKG_CONFIG --modversion $lib` answer="yes ($ver)"