root/ossiedev/branches/nikhil87/CIREN/components/Interpolator-metadata/configure.ac @ 9847

Revision 9847, 1.2 KB (checked in by nikhil, 3 years ago)

directory changes

  • Property svn:eol-style set to native
Line 
1AC_INIT(Interpolator_metadata, 0.0.1)
2AM_INIT_AUTOMAKE
3
4AC_PREFIX_DEFAULT("/sdr")
5
6AC_PROG_CXX
7AC_PROG_INSTALL
8AC_PROG_MAKE_SET
9
10AC_HEADER_SYS_WAIT
11
12AC_FUNC_FORK
13
14AC_LANG_PUSH([C++])
15
16AC_CHECK_LIB([omniORB4], [main], [], [AC_MSG_ERROR([cannot find omniORBi4 library])])
17AC_CHECK_LIB([omnithread], [main], [], [AC_MSG_ERROR([cannot find omnithread library])])
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
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
27AC_LANG_POP
28
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
35LIBS="$LIBS $OSSIE_LIBS"
36
37AC_CONFIG_FILES(Makefile)
38
39AC_OUTPUT
Note: See TracBrowser for help on using the browser.