Changeset be22768 in rtems
- Timestamp:
- 10/28/99 14:50:43 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b8d9f41
- Parents:
- bb43e079
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/libnetworking/rtems_webserver/Makefile.in
rbb43e079 rbe22768 36 36 # 37 37 38 DEFINES += -DWEBS -DUEMF -DOS=" LINUX" -DLINUX38 DEFINES += -DWEBS -DUEMF -DOS="RTEMS" 39 39 CPPFLAGS += 40 40 CFLAGS += -
c/src/libnetworking/rtems_webserver/misc.c
rbb43e079 rbe22768 60 60 /* 61 61 * "basename" returns a pointer to the last component of a pathname 62 * LINUX and LynxOS have their own basename function63 */ 64 65 #if ! LINUX & ! LYNX62 * LINUX, RTEMS, and LynxOS have their own basename function 63 */ 64 65 #if ! LINUX & ! __rtems__ & ! LYNX 66 66 char_t *basename(char_t* name) 67 67 { … … 84 84 } 85 85 } 86 #endif /* ! LINUX & ! LYNX */86 #endif /* ! LINUX && ! __rtems__ && ! LYNX */ 87 87 88 88 /******************************************************************************/ -
c/src/libnetworking/rtems_webserver/uemf.h
rbb43e079 rbe22768 48 48 #endif 49 49 50 #if LINUX 50 #if LINUX || __rtems__ 51 51 #include <sys/types.h> 52 52 #include <sys/stat.h> … … 514 514 /******************************* Per O/S Defines ******************************/ 515 515 516 #if VXW486 || LINUX || LYNX516 #if VXW486 || LINUX || __rtems__ || LYNX 517 517 #ifndef O_BINARY 518 518 #define O_BINARY 0 … … 570 570 #endif /* BALLOC */ 571 571 572 #if !LINUX 572 #if !LINUX && !__rtems__ 573 573 extern char_t* basename(char_t* name); 574 574 #endif -
cpukit/httpd/Makefile.in
rbb43e079 rbe22768 36 36 # 37 37 38 DEFINES += -DWEBS -DUEMF -DOS=" LINUX" -DLINUX38 DEFINES += -DWEBS -DUEMF -DOS="RTEMS" 39 39 CPPFLAGS += 40 40 CFLAGS += -
cpukit/httpd/misc.c
rbb43e079 rbe22768 60 60 /* 61 61 * "basename" returns a pointer to the last component of a pathname 62 * LINUX and LynxOS have their own basename function63 */ 64 65 #if ! LINUX & ! LYNX62 * LINUX, RTEMS, and LynxOS have their own basename function 63 */ 64 65 #if ! LINUX & ! __rtems__ & ! LYNX 66 66 char_t *basename(char_t* name) 67 67 { … … 84 84 } 85 85 } 86 #endif /* ! LINUX & ! LYNX */86 #endif /* ! LINUX && ! __rtems__ && ! LYNX */ 87 87 88 88 /******************************************************************************/ -
cpukit/httpd/uemf.h
rbb43e079 rbe22768 48 48 #endif 49 49 50 #if LINUX 50 #if LINUX || __rtems__ 51 51 #include <sys/types.h> 52 52 #include <sys/stat.h> … … 514 514 /******************************* Per O/S Defines ******************************/ 515 515 516 #if VXW486 || LINUX || LYNX516 #if VXW486 || LINUX || __rtems__ || LYNX 517 517 #ifndef O_BINARY 518 518 #define O_BINARY 0 … … 570 570 #endif /* BALLOC */ 571 571 572 #if !LINUX 572 #if !LINUX && !__rtems__ 573 573 extern char_t* basename(char_t* name); 574 574 #endif
Note: See TracChangeset
for help on using the changeset viewer.