From d9b2c0f38fa06d7063e57bea9a510af7f4a0110f Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Mon, 14 Jul 2025 13:31:14 +0200 Subject: [PATCH] Added the header file dependency for the long path handling which makes it build on demand --- library/GNUmakefile.68k | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/library/GNUmakefile.68k b/library/GNUmakefile.68k index f517789..6a932f6 100644 --- a/library/GNUmakefile.68k +++ b/library/GNUmakefile.68k @@ -261,6 +261,7 @@ C_LIB = \ stdio_iobhookentry.o \ stdio_lock.o \ stdio_locksemaphorename.o \ + stdio_long_path.o \ stdio_nostdio.o \ stdio_openiob.o \ stdio_parent_of_fh.o \ @@ -517,6 +518,7 @@ UNIX_LIB = \ stdio_fopen.o \ stdio_init_exit.o \ stdio_locksemaphorename.o \ + stdio_long_path.o \ stdio_openiob.o \ stdio_popen.o \ stdio_record_locking.o \ @@ -605,6 +607,8 @@ UNIX_LIB = \ unistd_wildcard_expand.o \ utime_utime.o +stdio_long_path.o : stdio_long_path.c stdio_long_path.h + MATH_LIB = \ complex_carg.o \ complex_cargf.o \