mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Modify h323 to build against PTLib as well as the older PWLib
Several changes in PTLib have occurred requiring build time detection. Changes accounted for include the library name change, config option change, install location change, and a boolean type change which is handled by ast_ptlib.h. Also, the sed check has been modified to properly work with autoconf >= 2.62. (closes issue #14224) Reported by: bergolth Patches: asterisk-autoconf-sed.patch uploaded by bergolth (license 661) asterisk-pwlib-v3.patch uploaded by bergolth (license 661) Tested by: jpeeler git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@177162 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1426,7 +1426,7 @@ if test "${USE_PWLIB}" != "no"; then
|
||||
PWLIBDIR="${PWLIB_DIR}"
|
||||
fi
|
||||
AST_CHECK_PWLIB()
|
||||
AST_CHECK_PWLIB_VERSION([PWLib], [PWLIB], [ptbuildopts.h], [1], [9], [2])
|
||||
AST_CHECK_PWLIB_VERSION([PWLib], [PWLIB], [ptbuildopts.h], [1], [9], [2], [P[[WT]]LIB_VERSION])
|
||||
|
||||
if test "${HAS_PWLIB:-unset}" != "unset"; then
|
||||
AST_CHECK_PWLIB_PLATFORM()
|
||||
@@ -1436,7 +1436,7 @@ if test "${USE_PWLIB}" != "no"; then
|
||||
AST_CHECK_PWLIB_BUILD([PWLib], [PWLIB],
|
||||
[Define if your system has the PWLib libraries.],
|
||||
[#include "ptlib.h"],
|
||||
[BOOL q = PTime::IsDaylightSavings();])
|
||||
[int q = (int) PTime::IsDaylightSavings();])
|
||||
fi
|
||||
fi
|
||||
|
||||
|
Reference in New Issue
Block a user