-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
asterisk-chan-dongle: bump to latest git
Closes: #837 The extra patch was submitted upstream for inclusion, see [1]. [1] wdoekes/asterisk-chan-dongle#173 Signed-off-by: Sebastian Kemper <[email protected]>
- Loading branch information
Showing
3 changed files
with
21 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- a/configure.ac | ||
+++ b/configure.ac | ||
@@ -165,11 +165,13 @@ dnl AC_CHECK_TYPE(uint64_t, unsigned lon | ||
|
||
AC_CHECK_SIZEOF(int) | ||
AC_CHECK_SIZEOF(long int) | ||
+AC_CHECK_SIZEOF(long long int) | ||
AC_CHECK_SIZEOF(time_t) | ||
case "$ac_cv_sizeof_time_t" in | ||
''|0) AC_MSG_ERROR([Could not find time_t type]);; | ||
$ac_cv_sizeof_int) AC_DEFINE([PRI_time_t], ["d"], [printf format for time_t]);; | ||
$ac_cv_sizeof_long_int) AC_DEFINE([PRI_time_t], ["ld"], [printf format for time_t]);; | ||
+$ac_cv_sizeof_long_long_int) AC_DEFINE([PRI_time_t], ["lld"], [printf format for time_t]);; | ||
*) AC_MSG_ERROR([Could not find match size of time_t to printf format]) | ||
esac | ||
|