Skip to content

Commit f6eb913

Browse files
committed
Store away
1 parent efa41fe commit f6eb913

File tree

6 files changed

+16
-3
lines changed

6 files changed

+16
-3
lines changed

NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
News information for the dmake version that is hosted on GitHub (based on
22
the Apache-Extras svn.)
33

4+
Version 4.13.0
5+
==============
6+
7+
Updates to support macOS 10.15 (and above)
8+
49
Version 4.12.3
510
==============
611

README.TXT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This is DMAKE version 4.12.3.
1+
This is DMAKE version 4.13.0.
22

33
For information on how to use DMAKE, see man\dmake.nc.
44

configure

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dnl Set the package version
66
dnl Don't forget to update the PACKAGE, VERSION and BUILDINFO macros in
77
dnl dmake/win95/microsft/config.h to keep the native Microsoft C++
88
dnl compiler build happy.
9-
AC_INIT(dmake, 4.12.3)
9+
AC_INIT(dmake, 4.13.0)
1010
AC_CANONICAL_BUILD
1111
BUILDINFO="$build"
1212

extern.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@
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"

unix/tempnam.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#include <stdio.h>
3030
#include <string.h>
3131
#include <stdlib.h>
32+
#include <unistd.h>
3233

3334
#if defined(max)
3435
# undef max
@@ -38,6 +39,7 @@
3839
extern char *mktemp();
3940
extern int access();
4041
int d_access();
42+
extern pid_t getpid(void);
4143

4244
char *
4345
dtempnam(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 )
9193
char *name;
9294
int flag;
9395
{

0 commit comments

Comments
 (0)