From 0d70522eda026024d510d53a610029f63f0f865b Mon Sep 17 00:00:00 2001 From: Dimitri Stolnikov Date: Thu, 7 Jun 2012 22:41:42 +0200 Subject: [PATCH] automake: define pkg-config variables --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index 3703c37..c879f4d 100644 --- a/configure.ac +++ b/configure.ac @@ -28,6 +28,10 @@ AC_HEADER_STDC AC_CHECK_HEADERS(sys/types.h) AC_CHECK_HEADERS(pthread.h,, [AC_MSG_ERROR([pthread.h required])]) +# pc variables +AC_SUBST(RTLSDR_PC_LIBS,["$LIBS"]) +AC_SUBST(RTLSDR_PC_CFLAGS,["$CFLAGS"]) + dnl checks for required libraries dnl pthreads AC_CHECK_LIB(pthread, pthread_create, [LIBS="$LIBS -lpthread"])