Rev 3403 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3403 | Rev 3448 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | /* Various things that are used in many files |
1 | /* Various things that are used in many places including a few |
2 | * Various temporary port work-arounds are addressed in __HELENOS__ , this |
- | |
3 | * serves as a convenience and later as a guide to make "phony.h" for future |
2 | * tidbits left over from autoconf prior to the HelenOS port */ |
4 | * ports */ |
- | |
5 | 3 | ||
6 | /* Specific port work-arounds : */ |
4 | /* Specific port work-arounds : */ |
- | 5 | #ifndef PATH_MAX |
|
7 | #define PATH_MAX 255 |
6 | #define PATH_MAX 255 |
- | 7 | #endif |
|
- | 8 | ||
- | 9 | #ifndef EXIT_SUCCESS |
|
8 | #define EXIT_SUCCESS 0 |
10 | #define EXIT_SUCCESS 0 |
9 | #define EXIT_FAILURE 0 |
11 | #define EXIT_FAILURE 1 |
- | 12 | #endif |
|
10 | 13 | ||
11 | /* Work around for getenv() */ |
14 | /* Work around for getenv() */ |
12 | #define PATH "/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin" |
15 | #define PATH "/srv:/app" |
13 | #define PATH_DELIM ":" |
16 | #define PATH_DELIM ":" |
14 | 17 | ||
15 | /* Used in many places */ |
18 | /* Used in many places */ |
16 | #define SMALL_BUFLEN 256 |
19 | #define SMALL_BUFLEN 256 |
17 | #define LARGE_BUFLEN 1024 |
20 | #define LARGE_BUFLEN 1024 |
Line 24... | Line 27... | ||
24 | /* Leftovers from Autoconf */ |
27 | /* Leftovers from Autoconf */ |
25 | #define PACKAGE_MAINTAINER "Tim Post" |
28 | #define PACKAGE_MAINTAINER "Tim Post" |
26 | #define PACKAGE_BUGREPORT "echo@echoreply.us" |
29 | #define PACKAGE_BUGREPORT "echo@echoreply.us" |
27 | #define PACKAGE_NAME "bdsh" |
30 | #define PACKAGE_NAME "bdsh" |
28 | #define PACKAGE_STRING "The brain dead shell" |
31 | #define PACKAGE_STRING "The brain dead shell" |
29 | #define PACKAGE_TARNAME "scli" |
32 | #define PACKAGE_TARNAME "bdsh" |
30 | #define PACKAGE_VERSION "0.0.1" |
33 | #define PACKAGE_VERSION "0.0.1" |
31 | 34 | ||
32 | 35 | ||
33 | 36 |