From 912fafa035b9d270b434e91282e1f0c197a24f7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Mon, 25 Aug 2003 22:26:42 +0000 Subject: [PATCH] missing defines on non-Linux systems git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1522 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- fodtrack/fodtrack.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/fodtrack/fodtrack.c b/fodtrack/fodtrack.c index 5a26edf4c..994fc6482 100644 --- a/fodtrack/fodtrack.c +++ b/fodtrack/fodtrack.c @@ -2,7 +2,7 @@ * Hamlib Rotator backend - Fodtrack parallel port * Copyright (c) 2001-2003 by Stephane Fillod * - * $Id: fodtrack.c,v 1.4 2003-06-22 19:52:40 fillods Exp $ + * $Id: fodtrack.c,v 1.5 2003-08-25 22:26:42 fillods Exp $ * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as @@ -42,6 +42,12 @@ #include "fodtrack.h" +#ifndef PARPORT_CONTROL_AUTOFD +#define PARPORT_CONTROL_AUTOFD 0x2 +#endif +#ifndef PARPORT_CONTROL_STROBE +#define PARPORT_CONTROL_STROBE 0x1 +#endif /* ************************************************************************* */