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/i386/linux/linux_socket.c | |
| parent | 4adbaec36614afdfb05f2772cd5b35fa0be845a1 (diff) | |
Notes
Diffstat (limited to 'sys/i386/linux/linux_socket.c')
| -rw-r--r-- | sys/i386/linux/linux_socket.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/i386/linux/linux_socket.c b/sys/i386/linux/linux_socket.c index 0d6c18cdd389..dc893193088c 100644 --- a/sys/i386/linux/linux_socket.c +++ b/sys/i386/linux/linux_socket.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_socket.c,v 1.9 1997/11/06 19:29:03 phk Exp $ + * $Id: linux_socket.c,v 1.10 1997/12/14 03:17:54 msmith 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/proc.h> |
