|
Revision 11054, 0.8 KB
(checked in by mcarrick, 14 months ago)
|
|
removing check for ossie libs, wont be installed at time of configure
|
| Line | |
|---|
| 1 | # Generated by WaveDev/wavedev/generate/templates/basic_ports/ |
|---|
| 2 | AC_INIT(EchoSound, 0.8.0) |
|---|
| 3 | AM_INIT_AUTOMAKE |
|---|
| 4 | |
|---|
| 5 | AC_CONFIG_MACRO_DIR([m4]) |
|---|
| 6 | LT_INIT |
|---|
| 7 | AC_PREFIX_DEFAULT("/sdr/") |
|---|
| 8 | |
|---|
| 9 | AC_PROG_CXX |
|---|
| 10 | AC_PROG_INSTALL |
|---|
| 11 | AC_PROG_LIBTOOL |
|---|
| 12 | AC_PROG_MAKE_SET |
|---|
| 13 | |
|---|
| 14 | AC_HEADER_SYS_WAIT |
|---|
| 15 | |
|---|
| 16 | AC_FUNC_FORK |
|---|
| 17 | |
|---|
| 18 | AC_LANG_PUSH([C++]) |
|---|
| 19 | |
|---|
| 20 | AC_CHECK_LIB([omniORB4], [main], [], [AC_MSG_ERROR([cannot find omniORBi4 library])]) |
|---|
| 21 | AC_CHECK_LIB([omnithread], [main], [], [AC_MSG_ERROR([cannot find omnithread library])]) |
|---|
| 22 | AC_CHECK_LIB([omniDynamic4], [main], [], [AC_MSG_ERROR([cannot find omniDynamic4 library])]) |
|---|
| 23 | AC_CHECK_HEADERS([omniORB4/CORBA.h], [], [AC_MSG_ERROR([cannot find omniORB4 header files])]) |
|---|
| 24 | |
|---|
| 25 | AC_LANG_POP |
|---|
| 26 | |
|---|
| 27 | export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig" |
|---|
| 28 | CXXFLAGS="$CXXFLAGS $OSSIE_CFLAGS" |
|---|
| 29 | LIBS="$LIBS $OSSIE_LIBS" |
|---|
| 30 | |
|---|
| 31 | AC_CONFIG_FILES(Makefile) |
|---|
| 32 | |
|---|
| 33 | AC_OUTPUT |
|---|