1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
|
##
## Libs from SipFoundry
##
## Common C and C++ flags for pingtel related source
AC_DEFUN([SFAC_INIT_FLAGS],
[
## TODO Remove cpu specifics and use make variables setup for this
##
## NOTES:
## -D__pingtel_on_posix__ - really used for linux v.s. other
## -D_REENTRANT - rougewave ?
## -fmessage-length=0 - ?
##
AC_SUBST(SIPX_INCDIR, [${includedir}])
AC_SUBST(SIPX_LIBDIR, [${libdir}])
# Autoconf already provides a built-in abs_srcdir substitution, however,
# while it specifies a root-directory rooted path, it can have relative
# parts in the middle of it. For Doxygen STRIP_FROM_PATH, I need a full,
# path to the project directory, without any relative bits at all.
# Thus, sipx_abs_srcdir was conceived.
SFAC_SRCDIR_EXPAND
AC_SUBST(sipx_abs_srcdir, [${abs_srcdir}])
SF_CXX_C_FLAGS="-D__pingtel_on_posix__ -D_linux_ -D_REENTRANT -D_FILE_OFFSET_BITS=64 -fmessage-length=0"
SF_CXX_WARNINGS="-Wall -Wformat -Wwrite-strings -Wpointer-arith"
CXXFLAGS="$CXXFLAGS $SF_CXX_C_FLAGS $SF_CXX_WARNINGS"
CFLAGS="$CFLAGS $SF_CXX_C_FLAGS $SF_CXX_WARNINGS -Wnested-externs -Wmissing-declarations -Wmissing-prototypes"
## NOTE: These are not expanded (e.g. contain $(prefix)) and are only
## fit for Makefiles. You can however write a Makefile that transforms
## *.in to * with the concrete values.
##
## See sipXconfig/Makefile.am for an example.
## See autoconf manual 4.7.2 Installation Directory Variables for why it's restricted
##
AC_SUBST(SIPX_BINDIR, [${bindir}])
AC_SUBST(SIPX_CONFDIR, [${sysconfdir}/sipxpbx])
AC_SUBST(SIPX_DATADIR, [${datadir}/sipxpbx])
AC_SUBST(SIPX_LOGDIR, [${localstatedir}/log/sipxpbx])
AC_SUBST(SIPX_RUNDIR, [${localstatedir}/run/sipxpbx])
AC_SUBST(SIPX_TMPDIR, [${localstatedir}/tmp])
AC_SUBST(SIPX_DBDIR, [${localstatedir}/sipxdata/sipdb])
AC_SUBST(SIPX_SCHEMADIR, [${datadir}/sipx/schema])
AC_SUBST(SIPX_DOCDIR, [${datadir}/doc/sipx])
# temporary - see http://track.sipfoundry.org/browse/XPB-33
AC_SUBST(SIPX_VXMLDATADIR,[${localstatedir}/sipxdata/mediaserver/data])
AC_SUBST(SIPX_PARKMUSICDIR,[${localstatedir}/sipxdata/parkserver/music])
# temporary - see http://track.sipfoundry.org/browse/XPB-93
AC_SUBST(SIPX_BACKUPDIR, [${localstatedir}/sipxdata/backup])
AC_SUBST(SIPX_CONFIGPHONEDIR, [${localstatedir}/sipxdata/configserver/phone])
## Used in a number of different project and subjective where this should really go
## INSTALL instruction assume default, otherwise safe to change/override
AC_ARG_VAR(wwwdir, [Web root for web content, default is ${datadir}/www. \
WARNING: Adjust accordingly when following INSTALL instructions])
test -z $wwwdir && wwwdir='${datadir}/www'
AC_ARG_VAR(SIPXPBXUSER, [The user that sipXpbx runs under, default is 'sipxchange'])
test -z $SIPXPBXUSER && SIPXPBXUSER=sipxchange
AC_SUBST(SIPXPHONECONF, [${sysconfdir}/sipxphone])
AC_SUBST(SIPXPHONEDATA, [${datadir}/sipxphone])
AC_SUBST(SIPXPHONELIB, [${datadir}/sipxphone/lib])
AC_ARG_ENABLE(rpmbuild,
[ --enable-rpmbuild Build an rpm],
enable_rpmbuild=yes )
AC_ARG_ENABLE(buildnumber,
[ --enable-buildnumber enable build number as part of RPM name],
enable_buildnumber=yes)
])
## Check to see that we are using the minimum required version of automake
AC_DEFUN([SFAC_AUTOMAKE_VERSION],[
AC_MSG_CHECKING(for automake version >= $1)
sf_am_version=`automake --version | head -n 1 | awk '/^automake/ {print $NF}'`
AX_COMPARE_VERSION( [$1], [le], [$sf_am_version], AC_MSG_RESULT( $sf_am_version is ok), AC_MSG_ERROR( found $sf_am_version - you must upgrade automake ))
])
## sipXportLib
# SFAC_LIB_PORT attempts to find the sf portability library and include
# files by looking in /usr/[lib|include], /usr/local/[lib|include], and
# relative paths.
#
# If not found, the configure is aborted. Otherwise, variables are defined
# for both the INC and LIB paths
# AND the paths are added to the CFLAGS and CXXFLAGS
AC_DEFUN([SFAC_LIB_PORT],
[
AC_REQUIRE([SFAC_INIT_FLAGS])
AC_REQUIRE([CHECK_PCRE])
AC_REQUIRE([CHECK_SSL])
SFAC_ARG_WITH_INCLUDE([os/OsDefs.h],
[sipxportinc],
[ --with-sipxportinc=<dir> portability include path ],
[sipXportLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('os/OsDefs.h' not found)
fi
SIPXPORTINC=$foundpath
AC_SUBST(SIPXPORTINC)
CFLAGS="-I$SIPXPORTINC $PCRE_CFLAGS $CFLAGS"
CXXFLAGS="-I$SIPXPORTINC $PCRE_CXXFLAGS $CXXFLAGS"
foundpath=""
SFAC_ARG_WITH_INCLUDE([sipxunit/TestUtilities.h],
[sipxportinc],
[ --with-sipxportinc=<dir> portability include path ],
[sipXportLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('sipxunit/TestUtilities.h' not found)
fi
SIPXUNITINC=$foundpath
AC_SUBST(SIPXUNITINC)
CFLAGS="-I$SIPXUNITINC $CFLAGS"
CXXFLAGS="-I$SIPXUNITINC $CXXFLAGS"
foundpath=""
SFAC_ARG_WITH_LIB([libsipXport.la],
[sipxportlib],
[ --with-sipxportlib=<dir> portability library path ],
[sipXportLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
AC_SUBST(SIPXPORT_LIBS, "$foundpath/libsipXport.la")
AC_SUBST(SIPXPORT_STATIC_LIBS, "$foundpath/libsipXport.a")
AC_SUBST(SIPXPORT_LDFLAGS, "-L$foundpath")
else
AC_MSG_ERROR('libsipXport.la' not found)
fi
foundpath=""
SFAC_ARG_WITH_LIB([libsipXunit.la],
[sipxportlib],
[ --with-sipxportlib=<dir> portability library path ],
[sipXportLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
# sipXunit unitesting support
AC_SUBST(SIPXUNIT_LDFLAGS, "-L$foundpath")
AC_SUBST(SIPXUNIT_LIBS, "$foundpath/libsipXunit.la")
else
AC_MSG_ERROR('libsipXunit.la' not found)
fi
]) # SFAC_LIB_PORT
## sipXtackLib
# SFAC_LIB_STACK attempts to find the sf networking library and include
# files by looking in /usr/[lib|include], /usr/local/[lib|include], and
# relative paths.
#
# If not found, the configure is aborted. Otherwise, variables are defined
# for both the INC and LIB paths AND the paths are added to the CFLAGS,
# CXXFLAGS, LDFLAGS, and LIBS.
AC_DEFUN([SFAC_LIB_STACK],
[
AC_REQUIRE([SFAC_LIB_PORT])
AC_REQUIRE([SFAC_LIB_SDP])
SFAC_ARG_WITH_INCLUDE([net/SipUserAgent.h],
[sipxtackinc],
[ --with-sipxtackinc=<dir> sip stack include path ],
[sipXtackLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('net/SipUserAgent.h' not found)
fi
SIPXTACKINC=$foundpath
AC_SUBST(SIPXTACKINC)
if test "$SIPXTACKINC" != "$SIPXPORTINC"
then
CFLAGS="-I$SIPXTACKINC $CFLAGS"
CXXFLAGS="-I$SIPXTACKINC $CXXFLAGS"
fi
if test x${disable_stream_player} != xtrue; then
SFAC_ARG_WITH_LIB([libsipXtack.la],
[sipxtacklib],
[ --with-sipxtacklib=<dir> sip stack library path ],
[sipXtackLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('libsipXtack.la' not found)
fi
SIPXTACKLIB=$foundpath
AC_SUBST(SIPXTACK_LIBS,["$SIPXTACKLIB/libsipXtack.la"])
AC_SUBST(SIPXTACK_STATIC_LIBS,["$SIPXTACKLIB/libsipXtack.a"])
AC_SUBST(SIPXTACK_LDFLAGS,["-L$SIPXTACKLIB"])
else
AC_MSG_RESULT(Stream player is disabled - linking with sipXtackLib not required)
fi
]) # SFAC_LIB_STACK
## sipXsdpLib
#
# If not found, the configure is aborted. Otherwise, variables are defined
# for both the INC and LIB paths AND the paths are added to the CFLAGS,
# CXXFLAGS, LDFLAGS, and LIBS.
AC_DEFUN([SFAC_LIB_SDP],
[
AC_REQUIRE([SFAC_LIB_PORT])
SFAC_ARG_WITH_INCLUDE([sdp/Sdp.h],
[sipxsdpinc],
[ --with-sipxsdpinc=<dir> sdp include path ],
[sipXsdpLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('sdp/Sdp.h' not found)
fi
SIPXSDPINC=$foundpath
AC_SUBST(SIPXSDPINC)
if test "$SIPXSDPINC" != "$SIPXPORTINC"
then
CFLAGS="-I$SIPXSDPINC $CFLAGS"
CXXFLAGS="-I$SIPXSDPINC $CXXFLAGS"
fi
SFAC_ARG_WITH_LIB([libsipXsdp.la],
[sipxsdplib],
[ --with-sipxsdplib=<dir> sdp library path ],
[sipXsdpLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('libsipXsdp.la' not found)
fi
SIPXSDPLIB=$foundpath
AC_SUBST(SIPXSDP_LIBS,["$SIPXSDPLIB/libsipXsdp.la"])
AC_SUBST(SIPXSDP_STATIC_LIBS,["$SIPXSDPLIB/libsipXsdp.a"])
AC_SUBST(SIPXSDP_LDFLAGS,["-L$SIPXSDPLIB"])
]) # SFAC_LIB_SDP
## sipXmediaLib
# SFAC_LIB_MEDIA attempts to find the sf media library and include
# files by looking in /usr/[lib|include], /usr/local/[lib|include], and
# relative paths.
#
# If not found, the configure is aborted. Otherwise, variables are defined
# for both the INC and LIB paths AND the paths are added to the CFLAGS,
# CXXFLAGS, LDFLAGS, and LIBS.
AC_DEFUN([SFAC_LIB_MEDIA],
[
AC_REQUIRE([SFAC_LIB_STACK])
SFAC_ARG_WITH_INCLUDE([mp/MpMediaTask.h],
[sipxmediainc],
[ --with-sipxmediainc=<dir> media library include path ],
[sipXmediaLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('mp/MpMediaTask.h' not found)
fi
SIPXMEDIAINC=$foundpath
AC_SUBST(SIPXMEDIAINC)
if test "$SIPXMEDIAINC" != "$SIPXTACKINC"
then
CFLAGS="-I$SIPXMEDIAINC $CFLAGS"
CXXFLAGS="-I$SIPXMEDIAINC $CXXFLAGS"
fi
SFAC_ARG_WITH_LIB([libsipXmedia.la],
[sipxmedialib],
[ --with-sipxmedialib=<dir> media library path ],
[sipXmediaLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('libsipXmedia.la' not found)
fi
SIPXMEDIALIB=$foundpath
AC_SUBST(SIPXMEDIA_LIBS, ["$SIPXMEDIALIB/libsipXmedia.la"])
AC_SUBST(SIPXMEDIA_STATIC_LIBS, ["$SIPXMEDIALIB/libsipXmedia.a"])
AC_SUBST(SIPXMEDIA_LDFLAGS, ["-L$SIPXMEDIALIB"])
]) # SFAC_LIB_MEDIA
## sipXmediaProcessingLib
# SFAC_LIB_MEDIA_PROCESSING attempts to find the sf media processing library and include
# files by looking in /usr/[lib|include], /usr/local/[lib|include], and
# relative paths.
#
# If not found, the configure is aborted. Otherwise, variables are defined
# for both the INC and LIB paths AND the paths are added to the CFLAGS,
# CXXFLAGS, LDFLAGS, and LIBS.
AC_DEFUN([SFAC_LIB_MEDIA_PROCESSING],
[
AC_REQUIRE([SFAC_LIB_MEDIA])
SFAC_ARG_WITH_INCLUDE([mi/CpMediaInterface.h],
[sipxmediainterfaceinc],
[ --with-sipxmediainterfaceinc=<dir> media interface library include path ],
[sipXmediaAdapterLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('mi/CpMediaInterface.h' not found)
fi
SIPXMEDIAINTERFACEINC=$foundpath
AC_SUBST(SIPXMEDIAINTERFACEINC)
if test "$SIPXMEDIAINTERFACEINC" != "$SIPXMEDIAINC"
then
CFLAGS="-I$SIPXMEDIAINTERFACEINC $CFLAGS"
CXXFLAGS="-I$SIPXMEDIAINTERFACEINC $CXXFLAGS"
fi
SFAC_ARG_WITH_LIB([libsipXmediaProcessing.la],
[sipxmediaprocessinglib],
[ --with-sipxmediaprocessinglib=<dir> media library path ],
[sipXmediaAdapterLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('libsipXmediaProcessing.la' not found)
fi
SIPXMEDIAMPLIB=$foundpath
AC_SUBST(SIPXMEDIA_MP_LIBS, ["$SIPXMEDIAMPLIB/libsipXmediaProcessing.la"])
AC_SUBST(SIPXMEDIA_MP_STATIC_LIBS, ["$SIPXMEDIAMPLIB/libsipXmediaProcessing.a"])
AC_SUBST(SIPXMEDIA_MP_LDFLAGS, ["-L$SIPXMEDIAMPLIB"])
]) # SFAC_LIB_MEDIA_PROCESSING
## Optionally compile in the GIPS library in the media subsystem
# (sipXmediaLib project) and executables that link it in
# Conditionally use the GIPS audio libraries
AC_DEFUN([CHECK_GIPSNEQ],
[
AC_ARG_WITH(gipsneq,
[ --with-gipsneq Compile the media subsystem with the GIPS audio libraries
],
compile_with_gips=yes)
AC_MSG_CHECKING(if link in with gips NetEQ)
if test x$compile_with_gips = xyes
then
AC_MSG_RESULT(yes)
SFAC_SRCDIR_EXPAND
AC_MSG_CHECKING(for gips includes)
# Define HAVE_GIPS for c pre-processor
GIPS_CPPFLAGS=-DHAVE_GIPS
if test -e $withval/include/GIPS/Vendor_gips_typedefs.h
then
gips_dir=$withval
elif test -e $abs_srcdir/../sipXbuild/vendors/gips/include/GIPS/Vendor_gips_typedefs.h
then
gips_dir=$abs_srcdir/../sipXbuild/vendors/gips
else
AC_MSG_ERROR(GIPS/Vendor_gips_typedefs.h not found)
fi
AC_MSG_RESULT($gips_dir)
# Add GIPS include path
GIPSINC=$gips_dir/include
# Add GIPS objects to be linked in
GIPS_NEQ_OBJS=$gips_dir/GIPS_SuSE_i386.a
CPPFLAGS="$CPPFLAGS $GIPS_CPPFLAGS -I$GIPSINC"
# GIPS needs to be at the end of the list
#LIBS="$LIBS $GIPS_OBJS"
else
AC_MSG_RESULT(no)
fi
AC_SUBST(GIPSINC)
AC_SUBST(GIPS_NEQ_OBJS)
AC_SUBST(GIPS_CPPFLAGS)
]) # CHECK_GIPSNEQ
AC_DEFUN([CHECK_GIPSVE],
[
AC_ARG_WITH(gipsve,
[ --with-gipsve Link to GIPS voice engine if --with-gipsve is set],
link_with_gipsve=yes)
AC_MSG_CHECKING(if linking to gips voice engine)
if test x$link_with_gipsve = xyes
then
AC_MSG_RESULT(yes)
SFAC_SRCDIR_EXPAND
AC_MSG_CHECKING(for gips includes)
if test -e $abs_srcdir/../sipXbuild/vendors/gips/VoiceEngine/interface/GipsVoiceEngineLib.h
then
gips_dir=$abs_srcdir/../sipXbuild/vendors/gips
else
AC_MSG_ERROR(sipXbuild/vendors/gips/VoiceEngine/interface/GipsVoiceEngineLib.h not found)
fi
AC_MSG_RESULT($gips_dir)
# Add GIPS include path
GIPSINC=$gips_dir/VoiceEngine/interface
CPPFLAGS="$CPPFLAGS -I$gips_dir/include -I$GIPSINC -DVOICE_ENGINE"
# Add GIPS objects to be linked in
if test "`uname`" == "Darwin"; then
GIPS_VE_OBJS="$gips_dir/VoiceEngine/libraries/VoiceEngine_mac_ppc_gcc.a"
else
GIPS_VE_OBJS="$gips_dir/VoiceEngine/libraries/VoiceEngine_Linux_Alsa_gcc.a"
fi
else
AC_MSG_RESULT(no)
fi
AC_SUBST(GIPSINC)
AC_SUBST(GIPS_VE_OBJS)
AC_SUBST(SIPXMEDIA_VE_LIBS, ["$SIPXMEDIALIB/libsipXvoiceEngine.la"])
AC_SUBST(SIPXMEDIA_VE_STATIC_LIBS, ["$SIPXMEDIALIB/libsipXvoiceEngine.a"])
AM_CONDITIONAL(BUILDVE, test x$link_with_gipsve = xyes)
]) # CHECK_GIPSVE
AC_DEFUN([CHECK_GIPSCE],
[
AC_ARG_WITH(gipsce,
[ --with-gipsce Link to GIPS conference engine if --with-gipsce is set],
link_with_gipsce=yes)
AC_MSG_CHECKING(if linking to gips conference engine)
if test x$link_with_gipsce = xyes
then
AC_MSG_RESULT(yes)
SFAC_SRCDIR_EXPAND
AC_MSG_CHECKING(for gips includes)
if test -e $abs_srcdir/../sipXbuild/vendors/gips/ConferenceEngine/interface/ConferenceEngine.h
then
gips_dir=$abs_srcdir/../sipXbuild/vendors/gips
else
AC_MSG_ERROR(sipXbuild/vendors/gips/ConferenceEngine/interface/ConferenceEngine.h not found)
fi
AC_MSG_RESULT($gips_dir)
# Add GIPS include path
GIPSINC=$gips_dir/ConferenceEngine/interface
CPPFLAGS="$CPPFLAGS -I$gips_dir/include -I$GIPSINC -DVOICE_ENGINE"
# Add GIPS objects to be linked in
GIPS_CE_OBJS="$gips_dir/ConferenceEngine/libraries/ConferenceEngine_Linux_gcc.a"
else
AC_MSG_RESULT(no)
fi
AC_SUBST(GIPSINC)
AC_SUBST(GIPS_CE_OBJS)
AC_SUBST(SIPXMEDIA_CE_LIBS, ["$SIPXMEDIALIB/libsipXconferenceEngine.la"])
AM_CONDITIONAL(BUILDCE, test x$link_with_gipsce = xyes)
]) # CHECK_GIPSCE
AC_DEFUN([CHECK_VIDEO],
[
AC_ARG_ENABLE(video,
[ --enable-video Include video support (no)],
[],
[enable_video=no])
AC_MSG_CHECKING(for video (--enable-video))
if test x$enable_video != xno
then
AC_MSG_RESULT(yes)
VIDEO_DEFINE=-DVIDEO
AC_SUBST(VIDEO_DEFINE)
else
AC_MSG_RESULT(no)
fi
]) # CHECK_VIDEO
## sipXcallLib
# SFAC_LIB_CALL attempts to find the sf call processing library and include
# files by looking in /usr/[lib|include], /usr/local/[lib|include], and
# relative paths.
#
# If not found, the configure is aborted. Otherwise, variables are defined
# for both the INC and LIB paths AND the paths are added to the CFLAGS,
# CXXFLAGS, LDFLAGS, and LIBS.
AC_DEFUN([SFAC_LIB_CALL],
[
AC_REQUIRE([SFAC_LIB_MEDIA_PROCESSING])
SFAC_ARG_WITH_INCLUDE([cp/CallManager.h],
[sipxcallinc],
[ --with-sipxcallinc=<dir> call processing library include path ],
[sipXcallLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('cp/CallManager.h' not found)
fi
SIPXCALLINC=$foundpath
AC_SUBST(SIPXCALLINC)
if test "$SIPXCALLINC" != "$SIPXPORTINC"
then
CFLAGS="-I$SIPXCALLINC $CFLAGS"
CXXFLAGS="-I$SIPXCALLINC $CXXFLAGS"
fi
SFAC_ARG_WITH_LIB([libsipXcall.la],
[sipxcalllib],
[ --with-sipxcalllib=<dir> call processing library path ],
[sipXcallLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('libsipXcall.la' not found)
fi
SIPXCALLLIB=$foundpath
AC_SUBST(SIPXCALL_LIBS, ["$SIPXCALLLIB/libsipXcall.la"])
AC_SUBST(SIPXCALL_STATIC_LIBS, ["$SIPXCALLLIB/libsipXcall.a"])
AC_SUBST(SIPXCALL_LDFLAGS,["-L$SIPXCALLLIB"])
]) # SFAC_LIB_CALL
## sipXcommserverLib
# SFAC_LIB_CALL attempts to find the sf communication server library and
# include files by looking in /usr/[lib|include], /usr/local/[lib|include],
# and relative paths.
#
# If not found, the configure is aborted. Otherwise, variables are defined
# for both the INC and LIB paths AND the paths are added to the CFLAGS,
# CXXFLAGS, LDFLAGS, and LIBS.
AC_DEFUN([SFAC_LIB_COMMSERVER],
[
AC_REQUIRE([SFAC_LIB_STACK])
SFAC_ARG_WITH_INCLUDE([sipdb/SIPDBManager.h],
[sipxcommserverinc],
[ --with-sipxcommserverinc=<dir> call processing library include path ],
[sipXcommserverLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('sipdb/SIPDBManager.h' not found)
fi
SIPXCOMMSERVERINC=$foundpath
if test "$SIPXCOMMSERVERINC" != "$SIPXPORTINC"
then
CFLAGS="-I$SIPXCOMMSERVERINC $CFLAGS"
CXXFLAGS="-I$SIPXCOMMSERVERINC $CXXFLAGS"
fi
AC_SUBST(SIPXCOMMSERVERINC)
SFAC_ARG_WITH_LIB([libsipXcommserver.la],
[sipxcommserverlib],
[ --with-sipxcommserverlib=<dir> call processing library path ],
[sipXcommserverLib])
if test x_$foundpath != x_; then
AC_MSG_RESULT($foundpath)
else
AC_MSG_ERROR('libsipXcommserver.la' not found)
fi
SIPXCOMMSERVERLIB=$foundpath
AC_SUBST(SIPXCOMMSERVER_LIBS, ["$SIPXCOMMSERVERLIB/libsipXcommserver.la"])
AC_SUBST(SIPXCOMMSERVER_LDFLAGS,["-L$SIPXCOMMSERVERLIB"])
]) # SFAC_LIB_COMMSERVER
## Generic find of an include
# Fed from AC_DEFUN([SFAC_INCLUDE_{module name here}],
#
# $1 - sample include file
# $2 - variable name (for overridding with --with-$2
# $3 - help text
# $4 - directory name (assumed parallel with this script)
AC_DEFUN([SFAC_ARG_WITH_INCLUDE],
[
SFAC_SRCDIR_EXPAND()
AC_MSG_CHECKING(for [$4] includes)
AC_ARG_WITH( [$2],
[ [$3] ],
[ include_path=$withval ],
[ include_path="$includedir $prefix/include /usr/include /usr/local/include [$abs_srcdir]/../[$4]/interface [$abs_srcdir]/../[$4]/include [$abs_srcdir]/../[$4]/src/test" ]
)
for dir in $include_path ; do
if test -f "$dir/[$1]";
then
foundpath=$dir;
break;
fi;
done
if test x_$foundpath = x_; then
AC_MSG_ERROR("'$1' not found; searched $include_path")
fi
]) # SFAC_ARG_WITH_INCLUDE
## Generic find of a library
# Fed from AC_DEFUN([SFAC_LIB_{module name here}],
#
# $1 - sample lib file
# $2 - variable name (for overridding with --with-$2
# $3 - help text
# $4 - directory name (assumed parallel with this script)
AC_DEFUN([SFAC_ARG_WITH_LIB],
[
SFAC_SRCDIR_EXPAND()
AC_MSG_CHECKING(for [$4] libraries)
AC_ARG_WITH( [$2],
[ [$3] ],
[ lib_path=$withval ],
[ lib_path="$libdir $prefix/lib /usr/lib /usr/local/lib `pwd`/../[$4]/src `pwd`/../[$4]/sipXmediaMediaProcessing/src `pwd`/../[$4]/src/test/sipxunit `pwd`/../[$4]/src/test/sipxportunit"]
)
foundpath=""
for dir in $lib_path ; do
if test -f "$dir/[$1]";
then
foundpath=$dir;
break;
fi;
done
if test x_$foundpath = x_; then
AC_MSG_ERROR("'$1' not found; searched $lib_path")
fi
]) # SFAC_ARG_WITH_LIB
AC_DEFUN([SFAC_SRCDIR_EXPAND],
[
abs_srcdir=`cd $srcdir && pwd`
])
AC_DEFUN([SFAC_FEATURE_SIP_TLS],
[
AC_ARG_ENABLE(sip-tls,
[ --enable-sip-tls enable support for sips: and transport=tls (no)],
[], [enable_sip_tls=no])
AC_MSG_CHECKING([Support for SIP over TLS])
AC_MSG_RESULT(${enable_sip_tls})
if test "${enable_sip_tls}" = "yes"
then
CFLAGS="-DSIP_TLS $CFLAGS"
CXXFLAGS="-DSIP_TLS $CXXFLAGS"
fi
AM_CONDITIONAL(BUILDTLS, test x$enable_sip_tls = xyes)
])
AC_DEFUN([SFAC_FEATURE_SIPX_EZPHONE],
[
AC_REQUIRE([CHECK_WXWIDGETS])
AC_ARG_ENABLE(sipx-ezphone,
[ --enable-sipx-ezphone build the sipXezPhone example application (no)],
[], [enable_sipx_ezphone=no])
AC_MSG_CHECKING([Building sipXezPhone])
# If sipx-ezphone is requested, check for its prerequisites.
if test x$enable_sipx_ezphone = xyes
then
if test x$enable_wxwidgets != xyes
then
AC_MSG_ERROR([wxWidgets is required for sipXezPhone])
enable_sipx_ezphone=no
fi
fi
AM_CONDITIONAL(BUILDEZPHONE, test x$enable_sipx_ezphone = xyes)
AC_MSG_RESULT(${enable_sipx_ezphone})
])
|