Re: [Tack-devel] ACK compiles on NetBSD-macppc, sort of...
Moved to https://github.com/davidgiven/ack
Brought to you by:
dtrg
From: Gregory T. (t. K. <gt...@di...> - 2006-07-18 16:11:02
|
At 11:42 AM -0400 7/18/06, Gregory T. (tim) Kelly wrote: >Ok. I think the make depend for util/int is failing on rm_deps: > >make: don't know how to make ./trap_msg. Stop > >make: stopped in ./obj/util/int >> make depend >./util/int/M.trap_msg ./etc/traps >./util/int/M.warn_msg ./doc/int/appA >rm_deps Makefile >Makefile.new >rm_deps: not found >*** Error code 127 I am not sure any of the make depends are working. I was able to fix this problem by adding a path to rm_deps: depend: ./warn.h trap_msg warn_msg $(UTIL_HOME)/bin/rm_deps Makefile >Makefile.new This executes but yields lots of error messages. I ran make depend on util/ack and it initially gives the same error (rm_deps not found) but about the same kind of errors after I add the path: SUF: not found SUF: not found SUF: not found SUF: not found SUF: not found "/usr/include/sys/cdefs.h", line 245: error: unknown control The line in cdefs.h that is failing is #error "No function renaming possible" within #if !defined(_STANDALONE) && !defined(_KERNEL) #ifdef __GNUC__ #define __RENAME(x) ___RENAME(x) #else #ifdef __lint__ #define __RENAME(x) __symbolrename(x) #else #error "No function renaming possible" #endif /* __lint__ */ #endif /* __GNUC__ */ #else /* _STANDALONE || _KERNEL */ #define __RENAME(x) no renaming in kernel or standalone environment #endif It might be possible I'm hitting the limits of what brute force can accomplish. tim Gregory T. (tim) Kelly Owner Dialectronics.com P.O. Box 606 Newberry, SC 29108 "Anything war can do, peace can do better." -- Bishop Desmond Tutu |