mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-01 10:59:55 +00:00
- There seems to be a race condition in the extract that causes a file to be rebuilt or not.
You can trigger the failure by doing 'make extract; touch work/rstat.x; make all' The failure is because rpcgen rstat.x calls cpp -E which replaces an "#ifdef __STDC__" with "#ifdef 1" in the output, which is a gcc 3 syntax error. Submitted by: Samy Al Bahra (maintainer) Analyzed by: kris
This commit is contained in:
parent
80d9825715
commit
b88044f7c0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=103112
11
sysutils/xcpustate/files/patch-rstat.x
Normal file
11
sysutils/xcpustate/files/patch-rstat.x
Normal file
@ -0,0 +1,11 @@
|
||||
--- rstat.x Sat Mar 6 17:26:17 2004
|
||||
+++ /tmp/rstat.x.patch Sat Mar 6 17:26:11 2004
|
||||
@@ -52,7 +52,7 @@
|
||||
% */
|
||||
%
|
||||
%bool_t
|
||||
-%#ifdef __STDC__
|
||||
+%#if __STDC__
|
||||
%xdr_timeval(XDR *xdrs, struct timeval *tvp)
|
||||
%#else /* K&R C */
|
||||
%xdr_timeval(xdrs, tvp)
|
Loading…
Reference in New Issue
Block a user