Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Now that pledge() is automatically detected, update the comment with the new name of the configuration parameter. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
4f90d591aa09d249057d8d57288425c5 |
User & Date: | andybradford 2018-01-18 03:52:41.252 |
Context
2018-01-19
| ||
18:06 | If running "fossil status" when pledge() is enabled, the "chown" promise needs to be added when running as root, otherwise fossil receive a SIGABRT and crash when attempting to call fchown(...) on creation of the .fossil-journal file. ... (check-in: 396513fa user: mgagnon tags: trunk) | |
2018-01-18
| ||
03:52 | Now that pledge() is automatically detected, update the comment with the new name of the configuration parameter. ... (check-in: 4f90d591 user: andybradford tags: trunk) | |
2018-01-17
| ||
19:29 | Only make the first argument to pledge() available using the fossil_pledge() interface. The second argument is always NULL. ... (check-in: 91ccde50 user: drh tags: trunk) | |
Changes
Changes to src/config.h.
︙ | ︙ | |||
255 256 257 258 259 260 261 | ** Number of elements in an array */ #define count(X) (sizeof(X)/sizeof(X[0])) /* ** The pledge() interface is currently only available on OpenBSD 5.9 ** and later. Make calls to fossil_pledge() no-ops on all platforms | | | 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 | ** Number of elements in an array */ #define count(X) (sizeof(X)/sizeof(X[0])) /* ** The pledge() interface is currently only available on OpenBSD 5.9 ** and later. Make calls to fossil_pledge() no-ops on all platforms ** that omit the HAVE_PLEDGE configuration parameter. */ #if !defined(HAVE_PLEDGE) # define fossil_pledge(A) #endif #endif /* _RC_COMPILE_ */ |