- Timestamp:
- Jul 16, 2006, 7:11:33 PM (19 years ago)
- Branches:
- freewrt_1_0, freewrt_2_0
- Children:
- 882ed8cc
- Parents:
- c7b6787
- Location:
- tools/paxmirabilis
- Files:
-
- 2 edited
-
Makefile (modified) (2 diffs)
-
src/gen_subs.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tools/paxmirabilis/Makefile
rc7b6787 r909c4ae 2 2 3 3 WRKBUILD= $(TOOLS_BUILD_DIR)/paxmirabilis 4 5 OUR_FLAGS= -I${TOPDIR}/scripts \ 6 -include ${TOPDIR}/scripts/param.h 4 7 5 8 SRCS= src/ar_io.c \ … … 38 41 39 42 ${WRKBUILD}/pax: ${SRCS} 40 ${HOSTCC} ${HOSTCFLAGS} -Isrc -I${TOPDIR}/scripts-o $@ $^43 ${HOSTCC} ${HOSTCFLAGS} -Isrc ${OUR_FLAGS} -o $@ $^ -
tools/paxmirabilis/src/gen_subs.c
rc7b6787 r909c4ae 50 50 #include <stdlib.h> 51 51 #include <string.h> 52 #ifdef BSD 52 53 #include <vis.h> 54 #endif 53 55 #include "pax.h" 54 56 #include "extern.h" … … 197 199 safe_print(const char *str, FILE *fp) 198 200 { 201 #ifdef BSD 199 202 char visbuf[5]; 200 203 const char *cp; … … 208 211 (void)fputs(visbuf, fp); 209 212 } 210 } else { 213 } else 214 #endif 211 215 (void)fputs(str, fp); 212 }213 216 } 214 217
Note:
See TracChangeset
for help on using the changeset viewer.
