re-introduce optional build of DAHDI input plugin

We should only build it when the dahdi/user.h file is actually present.
This commit is contained in:
Harald Welte 2011-08-24 08:32:38 +02:00
parent ce307b4420
commit 3bc7885539
3 changed files with 10 additions and 1 deletions

View File

@ -38,7 +38,7 @@ PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.3.0)
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 0.3.0)
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.3.0)
AC_CHECK_HEADERS(dahdi/user.h,,AC_MSG_ERROR(DAHDI input driver headers missing))
AC_CHECK_HEADERS(dahdi/user.h,,AC_MSG_WARN(DAHDI input driver will not be built))
AC_OUTPUT(
libosmoabis.pc

View File

@ -20,6 +20,7 @@
*/
#include "internal.h"
#include "../config.h"
#include <stdio.h>
#include <unistd.h>
@ -722,7 +723,9 @@ void e1inp_init(void)
osmo_signal_register_handler(SS_L_GLOBAL, e1i_sig_cb, NULL);
e1inp_misdn_init();
#ifdef HAVE_DAHDI_USER_H
e1inp_dahdi_init();
#endif
e1inp_ipaccess_init();
e1inp_hsl_init();
e1inp_rs232_init();

View File

@ -22,6 +22,10 @@
*
*/
#include "../../config.h"
#ifdef HAVE_DAHDI_USER_H
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
@ -461,3 +465,5 @@ int e1inp_dahdi_init(void)
/* register the driver with the core */
return e1inp_driver_register(&dahdi_driver);
}
#endif /* HAVE_DAHDI_USER_H */