mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-21 01:01:02 +00:00
Merge "define PATH_MAX for HURD" into 13
This commit is contained in:
@@ -36,6 +36,15 @@
|
|||||||
#define AST_FILE_MODE 0666
|
#define AST_FILE_MODE 0666
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Make sure PATH_MAX is defined on platforms (HURD) that don't define it.
|
||||||
|
* Also be sure to handle the case of a path larger than PATH_MAX
|
||||||
|
* (err safely) in the code.
|
||||||
|
*/
|
||||||
|
#ifndef PATH_MAX
|
||||||
|
#define PATH_MAX 4096
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#define DEFAULT_LANGUAGE "en"
|
#define DEFAULT_LANGUAGE "en"
|
||||||
|
|
||||||
#define DEFAULT_SAMPLE_RATE 8000
|
#define DEFAULT_SAMPLE_RATE 8000
|
||||||
|
|||||||
Reference in New Issue
Block a user