-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update: Fix clib-update with the new way of fetching packages, fix a …
…bug with downloading packages from gitlab, move common definitinos to clib-settings
- Loading branch information
Showing
13 changed files
with
179 additions
and
203 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
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,13 @@ | ||
#ifndef CLIB_SRC_CLIB_SETTINGS_H | ||
#define CLIB_SRC_CLIB_SETTINGS_H | ||
|
||
// Shared settings | ||
#define CLIB_PACKAGE_CACHE_TIME 30 * 24 * 60 * 60 | ||
|
||
#ifdef HAVE_PTHREADS | ||
#define MAX_THREADS 12 | ||
#endif | ||
|
||
const char *manifest_names[] = {"clib.json", "package.json", 0}; | ||
|
||
#endif//CLIB_SRC_CLIB_SETTINGS_H |
Oops, something went wrong.