From 9f7d55ae1c833f52a5d789da869aff89cd5387ff Mon Sep 17 00:00:00 2001 From: Jiri Malak Date: Mon, 7 Oct 2024 21:51:15 +0200 Subject: [PATCH] graphlib: correct source file name to valid module name --- bld/graphlib/c/{8x8font.c => font8x8.c} | 4 ++-- bld/graphlib/c/fontsupp.c | 2 +- bld/graphlib/c/putchar.c | 4 ++-- bld/graphlib/graphics.mif | 2 +- bld/graphlib/h/{8x8font.h => font8x8.h} | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) rename bld/graphlib/c/{8x8font.c => font8x8.c} (99%) rename bld/graphlib/h/{8x8font.h => font8x8.h} (97%) diff --git a/bld/graphlib/c/8x8font.c b/bld/graphlib/c/font8x8.c similarity index 99% rename from bld/graphlib/c/8x8font.c rename to bld/graphlib/c/font8x8.c index db250fca91..7fa08ca7bf 100644 --- a/bld/graphlib/c/8x8font.c +++ b/bld/graphlib/c/font8x8.c @@ -2,7 +2,7 @@ * * Open Watcom Project * -* Copyright (c) 2002-2021 The Open Watcom Contributors. All Rights Reserved. +* Copyright (c) 2002-2024 The Open Watcom Contributors. All Rights Reserved. * Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved. * * ======================================================================== @@ -31,7 +31,7 @@ #include "gdefn.h" -#include "8x8font.h" +#include "font8x8.h" char _WCI86FAR _8x8Font[] = { '\x00', '\x00', '\x00', '\x00', '\x00', '\x00', '\x00', '\x00', diff --git a/bld/graphlib/c/fontsupp.c b/bld/graphlib/c/fontsupp.c index fedb059b87..1ea8d031bc 100644 --- a/bld/graphlib/c/fontsupp.c +++ b/bld/graphlib/c/fontsupp.c @@ -47,7 +47,7 @@ #include "exedos.h" #endif #if !defined( _DEFAULT_WINDOWS ) - #include "8x8font.h" + #include "font8x8.h" #endif diff --git a/bld/graphlib/c/putchar.c b/bld/graphlib/c/putchar.c index 97933c4d6f..0ccf71d066 100644 --- a/bld/graphlib/c/putchar.c +++ b/bld/graphlib/c/putchar.c @@ -2,7 +2,7 @@ * * Open Watcom Project * -* Copyright (c) 2002-2023 The Open Watcom Contributors. All Rights Reserved. +* Copyright (c) 2002-2024 The Open Watcom Contributors. All Rights Reserved. * Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved. * * ======================================================================== @@ -34,7 +34,7 @@ #if !defined( _DEFAULT_WINDOWS ) #include "realmod.h" #include "gbios.h" -#include "8x8font.h" +#include "font8x8.h" #include "hercfont.h" #endif diff --git a/bld/graphlib/graphics.mif b/bld/graphlib/graphics.mif index f08d6782c7..98234ff938 100644 --- a/bld/graphlib/graphics.mif +++ b/bld/graphlib/graphics.mif @@ -177,7 +177,7 @@ common_objs = & $(_subdir_)zrectang.obj eng_nonwin_objs = & - $(_subdir_)8x8font.obj & + $(_subdir_)font8x8.obj & $(_subdir_)bit.obj & $(_subdir_)gstklow.obj & $(_subdir_)hercfont.obj & diff --git a/bld/graphlib/h/8x8font.h b/bld/graphlib/h/font8x8.h similarity index 97% rename from bld/graphlib/h/8x8font.h rename to bld/graphlib/h/font8x8.h index bf7d210882..c940271c89 100644 --- a/bld/graphlib/h/8x8font.h +++ b/bld/graphlib/h/font8x8.h @@ -2,7 +2,7 @@ * * Open Watcom Project * -* Copyright (c) 2002-2021 The Open Watcom Contributors. All Rights Reserved. +* Copyright (c) 2002-2024 The Open Watcom Contributors. All Rights Reserved. * Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved. * * ========================================================================