X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=configure.ac;h=2b1e930ea082fe37256170dafb237ed2e6763459;hb=90008d10160926204632783d881cb4f12e73aa7e;hp=5b36071a291f81c81aabc85f03645e85c5590740;hpb=0bb46307e8fa6c32a31d70866a6426b195025215;p=deb_libcec.git diff --git a/configure.ac b/configure.ac index 5b36071..2b1e930 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libcec], 1:3:0) +AC_INIT([libcec], 1:5:0) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) AC_PROG_CXX @@ -8,11 +8,15 @@ has_libudev="yes" case "${host}" in *-*-linux*) PKG_CHECK_MODULES([UDEV],[libudev],,[has_libudev="no";AC_MSG_WARN("library 'udev' is missing - adapter detection will not be available")]) + LIBS+=" -lrt" ;; *-apple-darwin*) has_libudev="no"; LIBS+="-framework CoreVideo -framework IOKit" ;; + *-freebsd*) + has_libudev="no" + ;; esac if test "x$has_libudev" != "xno"; then @@ -34,4 +38,4 @@ CXXFLAGS="-fPIC -Wall -Wextra -Wno-missing-field-initializers $CXXFLAGS" AC_SUBST(REQUIRES) AC_CONFIG_FILES([src/lib/libcec.pc]) -AC_OUTPUT([Makefile src/lib/Makefile src/testclient/Makefile]) +AC_OUTPUT([Makefile src/lib/Makefile src/testclient/Makefile src/cec-config/Makefile])