From 66919ad808a07c3e780049fd2076bdfe5f43a198 Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Wed, 12 Aug 1998 14:57:59 +0000 Subject: [PATCH] Added "../" before some includes in edit.h to avoid unnecessary "-I" options for the PC port makefiles. --- edit/edit.h | 32 ++++++++++++++++---------------- src/ChangeLog | 5 +++++ 2 files changed, 21 insertions(+), 16 deletions(-) diff --git a/edit/edit.h b/edit/edit.h index bb39c90d7..4f3767a20 100644 --- a/edit/edit.h +++ b/edit/edit.h @@ -14,7 +14,7 @@ # include # endif # include -# include "src/tty.h" +# include "../src/tty.h" # include # include @@ -75,21 +75,21 @@ #else -# include "src/main.h" /* for char *shell */ -# include "src/mad.h" -# include "src/dlg.h" -# include "src/widget.h" -# include "src/color.h" -# include "src/dialog.h" -# include "src/mouse.h" -# include "src/global.h" -# include "src/help.h" -# include "src/key.h" -# include "src/wtools.h" /* for QuickWidgets */ -# include "src/win.h" -# include "vfs/vfs.h" -# include "src/menu.h" -# include "src/regex.h" +# include "../src/main.h" /* for char *shell */ +# include "../src/mad.h" +# include "../src/dlg.h" +# include "../src/widget.h" +# include "../src/color.h" +# include "../src/dialog.h" +# include "../src/mouse.h" +# include "../src/global.h" +# include "../src/help.h" +# include "../src/key.h" +# include "../src/wtools.h" /* for QuickWidgets */ +# include "../src/win.h" +# include "../vfs/vfs.h" +# include "../src/menu.h" +# include "../src/regex.h" # define WANT_WIDGETS # define WIDGET_COMMAND (WIDGET_USER + 10) diff --git a/src/ChangeLog b/src/ChangeLog index 6dc6acb00..d651938ad 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +Wed Aug 12 15:56:46 1998 Pavel Roskin + + * edit.h: added "../" before some includes to avoid unnecessary + "-I" options for the PC port makefiles. + Sun Aug 9 22:39:12 1998 Janne Kukonlehto * mad.h (calloc): Added parentheses around the arguments as