Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Mar 1996 11:52:41 -0800 (PST)
From:      Jeffrey Hsu <hsu>
To:        ports
Subject:   Re: xperfmon doesn't compile on FreeBSD-current (incl. PATCH)
Message-ID:  <199603221952.LAA24979@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
CTL_VFS was a Lite2 change.  This was a simple renaming of CTL_FS to
CTL_VFS, so you can allow for the mismatch between -current and -stable by
doing something simple like

  #ifndef CTL_FS
  #define CTL_FS CTL_VFS		/* compatibility w/ Lite1 */
  #endif

or, if you want to do something complicated, the BSD date in <sys/param.h>
has been updated to 199506.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199603221952.LAA24979>