File tree Expand file tree Collapse file tree 6 files changed +16
-3
lines changed Expand file tree Collapse file tree 6 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 11News information for the dmake version that is hosted on GitHub (based on
22the Apache-Extras svn.)
33
4+ Version 4.13.0
5+ ==============
6+
7+ Updates to support macOS 10.15 (and above)
8+
49Version 4.12.3
510==============
611
Original file line number Diff line number Diff line change 1- This is DMAKE version 4.12.3 .
1+ This is DMAKE version 4.13.0 .
22
33For information on how to use DMAKE, see man\dmake.nc.
44
Original file line number Diff line number Diff line change @@ -4387,6 +4387,10 @@ case "$_os" in
43874387 OS_VERSION=macosx
43884388# MacOSX is not garuanteed to be case insensitive, assume it's case
43894389# sensitive, see issue 73661 for details.
4390+ #
4391+ # By default, macOS uses HFS+ and/or APFS which are both case-aware but not
4392+ # case sensitive. Basically, this means README.txt and readme.txt cannot
4393+ # both exist at the same time in the same place
43904394 ;;
43914395 " AIX" )
43924396 OS_VERSION=sysvr4
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ dnl Set the package version
66dnl Don't forget to update the PACKAGE, VERSION and BUILDINFO macros in
77dnl dmake/win95/microsft/config.h to keep the native Microsoft C++
88dnl compiler build happy.
9- AC_INIT ( dmake , 4.12.3 )
9+ AC_INIT ( dmake , 4.13.0 )
1010AC_CANONICAL_BUILD
1111BUILDINFO="$build"
1212
Original file line number Diff line number Diff line change 8282
8383#define DMPVOID void *
8484
85+ extern const int in_quit ( void ); /* for unix/runargv.c */
86+
8587#include <signal.h>
8688#include "itypes.h"
8789#include "stdmacs.h"
Original file line number Diff line number Diff line change 2929#include <stdio.h>
3030#include <string.h>
3131#include <stdlib.h>
32+ #include <unistd.h>
3233
3334#if defined(max )
3435# undef max
3839extern char * mktemp ();
3940extern int access ();
4041int d_access ();
42+ extern pid_t getpid (void );
4143
4244char *
4345dtempnam (dir , prefix )
@@ -87,7 +89,7 @@ char *prefix; /* use this (if non-NULL) as filename prefix */
8789
8890
8991
90- d_access ( name , flag )
92+ int d_access ( name , flag )
9193char * name ;
9294int flag ;
9395{
You can’t perform that action at this time.
0 commit comments