GNOME Bugzilla – Bug 337234
Obsolete code in proctime.c breaks the build under NetBSD
Last modified: 2006-04-04 20:03:37 UTC
There is a chunk of code in sysdeps/freebsd/proctime.c that breaks the build under NetBSD. This block of code is guarded by a __NetBSD__ check so there is no fear that it can break other systems. However, This piece of code refers to a variable, filename, that does not exist any more in the whole file. Therefore it is safe to remove those lines because they are obsolete. In fact, we have been doing this locally in NetBSD for a very long time with no visible problems. Trivial patch attached.
Created attachment 62752 [details] [review] Sample patch.