diff options
author | Michael Forney <mforney@mforney.org> | 2021-04-07 02:37:15 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-04-07 16:01:05 +0200 |
commit | 812fce9dcfaf26f62b8bfb83ee51b43f83c5291f (patch) | |
tree | ca99d375f0f164b099c460095d50f727a41529ce /lib/Makefile.netware | |
parent | 694eab18bcaa83b5e70f7e2e6b5b7418d953ca3b (diff) | |
download | curl-812fce9dcfaf26f62b8bfb83ee51b43f83c5291f.tar.gz |
configure: remove use of RETSIGTYPE
This was previously defined by the obsolete AC_TYPE_SIGNAL macro,
which was removed in 2682e5f5. The deprecation text says
> Your code may safely assume C89 semantics that RETSIGTYPE is void.
So, remove it and just use void instead.
Closes #6861
Diffstat (limited to 'lib/Makefile.netware')
-rw-r--r-- | lib/Makefile.netware | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Makefile.netware b/lib/Makefile.netware index 10b77f8ff..863bde022 100644 --- a/lib/Makefile.netware +++ b/lib/Makefile.netware @@ -5,8 +5,8 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 2004 - 2015, Guenter Knauf -# Copyright (C) 2001 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 2004 - 2015, 2021, Guenter Knauf +# Copyright (C) 2001 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -599,7 +599,6 @@ endif @echo $(DL)#define HAVE_UTIME 1$(DL) >> $@ @echo $(DL)#define HAVE_UTIME_H 1$(DL) >> $@ @echo $(DL)#define HAVE_WRITEV 1$(DL) >> $@ - @echo $(DL)#define RETSIGTYPE void$(DL) >> $@ @echo $(DL)#define SIZEOF_INT 4$(DL) >> $@ @echo $(DL)#define SIZEOF_SHORT 2$(DL) >> $@ @echo $(DL)#define SIZEOF_STRUCT_IN_ADDR 4$(DL) >> $@ |