diff options
| author | Eivind Eklund <eivind@FreeBSD.org> | 1997-12-16 17:40:42 +0000 |
|---|---|---|
| committer | Eivind Eklund <eivind@FreeBSD.org> | 1997-12-16 17:40:42 +0000 |
| commit | 5591b823d12e70560f330e67efacff791275a9f7 (patch) | |
| tree | bd3bda52d821bf2f9cd002936a811011a9757b06 /sys/alpha | |
| parent | 4adbaec36614afdfb05f2772cd5b35fa0be845a1 (diff) | |
Notes
Diffstat (limited to 'sys/alpha')
| -rw-r--r-- | sys/alpha/linux/linux_sysvec.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/alpha/linux/linux_sysvec.c b/sys/alpha/linux/linux_sysvec.c index 45f805d231f3..cba303ae3e65 100644 --- a/sys/alpha/linux/linux_sysvec.c +++ b/sys/alpha/linux/linux_sysvec.c @@ -25,11 +25,15 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_sysvec.c,v 1.19 1997/09/01 02:12:39 bde Exp $ + * $Id: linux_sysvec.c,v 1.20 1997/11/06 19:29:04 phk Exp $ */ /* XXX we use functions that might not exist. */ -#define COMPAT_43 1 +#include "opt_compat.h" + +#ifndef COMPAT_43 +#error "Unable to compile Linux-emulator due to missing COMPAT_43 option!" +#endif #include <sys/param.h> #include <sys/buf.h> |
