root/components/AutomaticGainControl/trunk/AutomaticGainControl/configure.ac @ 4668

Revision 4668, 1.2 KB (checked in by jgaeddert, 6 years ago)

improving documentation, autofoo, readability of AutomaticGainControl? component

  • Property svn:eol-style set to native
RevLine 
[2410]1AC_INIT(AutomaticGainControl, 0.6.0)
2AM_INIT_AUTOMAKE
3
[2987]4AC_PREFIX_DEFAULT("/sdr")
[2410]5
6AC_PROG_CXX
7AC_PROG_INSTALL
8AC_PROG_MAKE_SET
9
10AC_HEADER_SYS_WAIT
11
12AC_FUNC_FORK
13
[2987]14AC_LANG_PUSH([C++])
[2410]15
[2987]16AC_CHECK_LIB([omniORB4], [main], [], [AC_MSG_ERROR([cannot find omniORBi4 library])])
[3442]17AC_CHECK_LIB([omnithread], [main], [], [AC_MSG_ERROR([cannot find omnithread library])])
[2987]18AC_CHECK_LIB([omniDynamic4], [main], [], [AC_MSG_ERROR([cannot find omniDynamic4 library])])
19AC_CHECK_HEADERS([omniORB4/CORBA.h], [], [AC_MSG_ERROR([cannot find omniORB4 header files])])
20
[3442]21AC_CHECK_LIB([sigproc], [main], [], [AC_MSG_ERROR([cannot find sigproc library])])
22AC_CHECK_HEADERS([sigproc/SigProc.h], [], [AC_MSG_ERROR([cannot find sigproc library header files])])
23
24AC_CHECK_LIB([standardInterfaces], [main], [], [AC_MSG_ERROR([cannot find standardInterfaces])])
25AC_CHECK_HEADERS([standardinterfaces/complexShort.h], [], [AC_MSG_ERROR([cannot find standardInterfaces header files])])
26
[2987]27AC_LANG_POP
28
[2410]29export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig"
30PKG_CHECK_MODULES(OSSIE, ossie >= 0.6.0,,exit)
31CXXFLAGS="$CXXFLAGS $OSSIE_CFLAGS"
32IDL_FLAGS="$OSSIE_CFLAGS"
33AC_SUBST(IDL_FLAGS)
34
[3442]35LIBS="$LIBS $OSSIE_LIBS"
[2410]36
37AC_CONFIG_FILES(Makefile)
38
39AC_OUTPUT
Note: See TracBrowser for help on using the browser.