Subversion Repositories HelenOS

Rev

Rev 3410 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3410 Rev 3417
Line 2... Line 2...
2
 * Various temporary port work-arounds are addressed in __HELENOS__ , this
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
3
 * serves as a convenience and later as a guide to make "phony.h" for future
4
 * ports */
4
 * ports */
5
 
5
 
6
/* Specific port work-arounds : */
6
/* Specific port work-arounds : */
-
 
7
#ifndef PATH_MAX
7
#define PATH_MAX 255
8
#define PATH_MAX 255
-
 
9
#endif
-
 
10
 
-
 
11
#ifndef EXIT_SUCCESS
8
#define EXIT_SUCCESS 0
12
#define EXIT_SUCCESS 0
9
#define EXIT_FAILURE 0
13
#define EXIT_FAILURE 1
-
 
14
#endif
10
 
15
 
11
/* Work around for getenv() */
16
/* Work around for getenv() */
12
#define PATH "/srv:/app"
17
#define PATH "/srv:/app"
13
#define PATH_DELIM ":"
18
#define PATH_DELIM ":"
14
 
19
 
Line 24... Line 29...
24
/* Leftovers from Autoconf */
29
/* Leftovers from Autoconf */
25
#define PACKAGE_MAINTAINER "Tim Post"
30
#define PACKAGE_MAINTAINER "Tim Post"
26
#define PACKAGE_BUGREPORT "echo@echoreply.us"
31
#define PACKAGE_BUGREPORT "echo@echoreply.us"
27
#define PACKAGE_NAME "bdsh"
32
#define PACKAGE_NAME "bdsh"
28
#define PACKAGE_STRING "The brain dead shell"
33
#define PACKAGE_STRING "The brain dead shell"
29
#define PACKAGE_TARNAME "scli"
34
#define PACKAGE_TARNAME "bdsh"
30
#define PACKAGE_VERSION "0.0.1"
35
#define PACKAGE_VERSION "0.0.1"
31
 
36
 
32
 
37
 
33
 
38