FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-src/Zend/zend_build.h at master · php/php-src · GitHub
php
/
php-src
Public
Notifications
You must be signed in to change notification settings
Fork
8.2k
Star
40.4k
Code
Issues
973
Pull requests
1.1k
Actions
Security and quality
52
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
php-src
/
Zend
/
zend_build.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
45 lines (38 loc) · 1.51 KB
Breadcrumbs
php-src
/
Zend
/
zend_build.h
Copy path
File metadata and controls
45 lines (38 loc) · 1.51 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
| Copyright © Zend Technologies Ltd., a subsidiary company of |
| Perforce Software, Inc., and Contributors. |
+----------------------------------------------------------------------+
| This source file is subject to the Modified BSD License that is |
| bundled with this package in the file LICENSE, and is available |
| through the World Wide Web at <https://www.php.net/license/>. |
| |
| SPDX-License-Identifier: BSD-3-Clause |
+----------------------------------------------------------------------+
| Authors: Stanislav Malyshev <stas@zend.com> |
+----------------------------------------------------------------------+
*/
#ifndef
ZEND_BUILD_H
#define
ZEND_BUILD_H
#define
ZEND_TOSTR_
(
x
) #x
#define
ZEND_TOSTR
(
x
) ZEND_TOSTR_(x)
#ifdef
ZTS
#define
ZEND_BUILD_TS
",TS"
#else
#define
ZEND_BUILD_TS
",NTS"
#endif
#if
ZEND_DEBUG
#define
ZEND_BUILD_DEBUG
",debug"
#else
#define
ZEND_BUILD_DEBUG
#endif
#if
defined(
ZEND_WIN32
)
&&
defined(
PHP_COMPILER_ID
)
#define
ZEND_BUILD_SYSTEM
"," PHP_COMPILER_ID
#else
#define
ZEND_BUILD_SYSTEM
#endif
/* for private applications */
#define
ZEND_BUILD_EXTRA
#endif
Back
|
FazBrowse Home
|
New Git URL