Changeset 211
- Timestamp:
- 07/16/06 19:11:33 (6 years ago)
- Files:
-
- trunk/freewrt/tools/paxmirabilis/Makefile (modified) (2 diffs)
- trunk/freewrt/tools/paxmirabilis/src/gen_subs.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/tools/paxmirabilis/Makefile
r209 r211 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 $@ $^ trunk/freewrt/tools/paxmirabilis/src/gen_subs.c
r204 r211 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


