Blame patches/posix_cc-1.4_pre.local.patch

c11fcb
diff -Nru posix_cc-1.4.orig/config.h.in posix_cc-1.4/config.h.in
c11fcb
--- posix_cc-1.4.orig/config.h.in	2001-12-12 13:45:12.000000000 +0100
c11fcb
+++ posix_cc-1.4/config.h.in	2024-04-09 09:22:44.846399546 +0200
c11fcb
@@ -1,46 +1,63 @@
c11fcb
-/* config.h.in.  Generated automatically from configure.in by autoheader.  */
c11fcb
+/* config.h.in.  Generated from configure.ac by autoheader.  */
c11fcb
 
c11fcb
-/* Define if you have the <inttypes.h> header file. */
c11fcb
+/* Define to 1 if you have the <inttypes.h> header file. */
c11fcb
 #undef HAVE_INTTYPES_H
c11fcb
 
c11fcb
-/* Define if your system has a working `malloc' function. */
c11fcb
-#undef HAVE_MALLOC
c11fcb
-
c11fcb
-/* Define if you have the <memory.h> header file. */
c11fcb
-#undef HAVE_MEMORY_H
c11fcb
-
c11fcb
-/* Define if you have the <stdint.h> header file. */
c11fcb
+/* Define to 1 if you have the <stdint.h> header file. */
c11fcb
 #undef HAVE_STDINT_H
c11fcb
 
c11fcb
-/* Define if you have the <stdlib.h> header file. */
c11fcb
+/* Define to 1 if you have the <stdio.h> header file. */
c11fcb
+#undef HAVE_STDIO_H
c11fcb
+
c11fcb
+/* Define to 1 if you have the <stdlib.h> header file. */
c11fcb
 #undef HAVE_STDLIB_H
c11fcb
 
c11fcb
-/* Define if you have the <strings.h> header file. */
c11fcb
+/* Define to 1 if you have the <strings.h> header file. */
c11fcb
 #undef HAVE_STRINGS_H
c11fcb
 
c11fcb
-/* Define if you have the <string.h> header file. */
c11fcb
+/* Define to 1 if you have the <string.h> header file. */
c11fcb
 #undef HAVE_STRING_H
c11fcb
 
c11fcb
-/* Define if you have the <sys/stat.h> header file. */
c11fcb
+/* Define to 1 if you have the <sys/stat.h> header file. */
c11fcb
 #undef HAVE_SYS_STAT_H
c11fcb
 
c11fcb
-/* Define if you have the <sys/types.h> header file. */
c11fcb
+/* Define to 1 if you have the <sys/types.h> header file. */
c11fcb
 #undef HAVE_SYS_TYPES_H
c11fcb
 
c11fcb
-/* Define if you have the <unistd.h> header file. */
c11fcb
+/* Define to 1 if you have the <unistd.h> header file. */
c11fcb
 #undef HAVE_UNISTD_H
c11fcb
 
c11fcb
 /* Name of package */
c11fcb
 #undef PACKAGE
c11fcb
 
c11fcb
-/* Define if you have the ANSI C header files. */
c11fcb
+/* Define to the address where bug reports for this package should be sent. */
c11fcb
+#undef PACKAGE_BUGREPORT
c11fcb
+
c11fcb
+/* Define to the full name of this package. */
c11fcb
+#undef PACKAGE_NAME
c11fcb
+
c11fcb
+/* Define to the full name and version of this package. */
c11fcb
+#undef PACKAGE_STRING
c11fcb
+
c11fcb
+/* Define to the one symbol short name of this package. */
c11fcb
+#undef PACKAGE_TARNAME
c11fcb
+
c11fcb
+/* Define to the home page for this package. */
c11fcb
+#undef PACKAGE_URL
c11fcb
+
c11fcb
+/* Define to the version of this package. */
c11fcb
+#undef PACKAGE_VERSION
c11fcb
+
c11fcb
+/* Define to 1 if all of the C89 standard headers exist (not just the ones
c11fcb
+   required in a freestanding environment). This macro is provided for
c11fcb
+   backward compatibility; new code need not use it. */
c11fcb
 #undef STDC_HEADERS
c11fcb
 
c11fcb
 /* Version number of package */
c11fcb
 #undef VERSION
c11fcb
 
c11fcb
-/* Define to empty if `const' does not conform to ANSI C. */
c11fcb
+/* Define to empty if 'const' does not conform to ANSI C. */
c11fcb
 #undef const
c11fcb
 
c11fcb
-/* Define to `unsigned' if <sys/types.h> does not define. */
c11fcb
+/* Define as 'unsigned int' if <stddef.h> doesn't define. */
c11fcb
 #undef size_t
c11fcb
diff -Nru posix_cc-1.4.orig/configure.ac posix_cc-1.4/configure.ac
c11fcb
--- posix_cc-1.4.orig/configure.ac	1970-01-01 01:00:00.000000000 +0100
c11fcb
+++ posix_cc-1.4/configure.ac	2024-04-09 09:20:54.446401106 +0200
c11fcb
@@ -0,0 +1,15 @@
c11fcb
+# Process this file with autoconf to produce a configure script.
c11fcb
+AC_INIT(posix_cc, 1.4)
c11fcb
+AC_CONFIG_SRCDIR([c89.c])
c11fcb
+AC_CONFIG_HEADERS([config.h])
c11fcb
+AM_INIT_AUTOMAKE
c11fcb
+
c11fcb
+# Checks for programs.
c11fcb
+AC_PROG_CC
c11fcb
+
c11fcb
+# Checks for typedefs, structures, and compiler characteristics.
c11fcb
+AC_C_CONST
c11fcb
+AC_TYPE_SIZE_T
c11fcb
+
c11fcb
+AC_CONFIG_FILES([Makefile])
c11fcb
+AC_OUTPUT
c11fcb
diff -Nru posix_cc-1.4.orig/configure.in posix_cc-1.4/configure.in
c11fcb
--- posix_cc-1.4.orig/configure.in	2001-12-12 15:53:13.000000000 +0100
c11fcb
+++ posix_cc-1.4/configure.in	1970-01-01 01:00:00.000000000 +0100
c11fcb
@@ -1,24 +0,0 @@
c11fcb
-# Process this file with autoconf to produce a configure script.
c11fcb
-AC_INIT(posix_cc, 1.4)
c11fcb
-AM_INIT_AUTOMAKE(posix_c, 1.4)
c11fcb
-AC_CONFIG_SRCDIR([c89.c])
c11fcb
-AM_CONFIG_HEADER([config.h])
c11fcb
-
c11fcb
-# Checks for programs.
c11fcb
-AC_PROG_CC
c11fcb
-
c11fcb
-# Checks for libraries.
c11fcb
-
c11fcb
-# Checks for header files.
c11fcb
-AC_HEADER_STDC
c11fcb
-AC_CHECK_HEADERS([stdlib.h string.h unistd.h])
c11fcb
-
c11fcb
-# Checks for typedefs, structures, and compiler characteristics.
c11fcb
-AC_C_CONST
c11fcb
-AC_TYPE_SIZE_T
c11fcb
-
c11fcb
-# Checks for library functions.
c11fcb
-AC_FUNC_MALLOC
c11fcb
-
c11fcb
-AC_CONFIG_FILES([Makefile])
c11fcb
-AC_OUTPUT