Added "../" before some includes in edit.h to avoid unnecessary "-I"

options for the PC port makefiles.
This commit is contained in:
Pavel Roskin 1998-08-12 14:57:59 +00:00
parent 5c716cf328
commit 66919ad808
2 changed files with 21 additions and 16 deletions

View File

@ -14,7 +14,7 @@
# include <unistd.h> # include <unistd.h>
# endif # endif
# include <string.h> # include <string.h>
# include "src/tty.h" # include "../src/tty.h"
# include <sys/stat.h> # include <sys/stat.h>
# include <errno.h> # include <errno.h>
@ -75,21 +75,21 @@
#else #else
# include "src/main.h" /* for char *shell */ # include "../src/main.h" /* for char *shell */
# include "src/mad.h" # include "../src/mad.h"
# include "src/dlg.h" # include "../src/dlg.h"
# include "src/widget.h" # include "../src/widget.h"
# include "src/color.h" # include "../src/color.h"
# include "src/dialog.h" # include "../src/dialog.h"
# include "src/mouse.h" # include "../src/mouse.h"
# include "src/global.h" # include "../src/global.h"
# include "src/help.h" # include "../src/help.h"
# include "src/key.h" # include "../src/key.h"
# include "src/wtools.h" /* for QuickWidgets */ # include "../src/wtools.h" /* for QuickWidgets */
# include "src/win.h" # include "../src/win.h"
# include "vfs/vfs.h" # include "../vfs/vfs.h"
# include "src/menu.h" # include "../src/menu.h"
# include "src/regex.h" # include "../src/regex.h"
# define WANT_WIDGETS # define WANT_WIDGETS
# define WIDGET_COMMAND (WIDGET_USER + 10) # define WIDGET_COMMAND (WIDGET_USER + 10)

View File

@ -1,3 +1,8 @@
Wed Aug 12 15:56:46 1998 Pavel Roskin <pavel.roskin@escoft.co.uk>
* 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 <jtklehto@paju.oulu.fi> Sun Aug 9 22:39:12 1998 Janne Kukonlehto <jtklehto@paju.oulu.fi>
* mad.h (calloc): Added parentheses around the arguments as * mad.h (calloc): Added parentheses around the arguments as