33 lines
843 B
Diff
33 lines
843 B
Diff
From 59a3f1925ecec6481118e0d407a34fae15c54215 Mon Sep 17 00:00:00 2001
|
|
From: Rose <83477269+AtariDreams@users.noreply.github.com>
|
|
Date: Sat, 6 May 2023 19:18:26 -0400
|
|
Subject: [PATCH] Update autotools
|
|
|
|
AC_PROG_CC_STDC is obsolete. Instead, AC_PROG_CC is recommended.
|
|
---
|
|
configure.ac | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index f5a0261..94d01dc 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -1,4 +1,4 @@
|
|
-AC_PREREQ(2.63)
|
|
+AC_PREREQ([2.63])
|
|
|
|
AC_INIT([protobuf-c],
|
|
[1.4.1],
|
|
@@ -11,7 +11,7 @@ AC_SUBST(PACKAGE_DESCRIPTION)
|
|
AC_CONFIG_SRCDIR([protobuf-c/protobuf-c.c])
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
|
AM_INIT_AUTOMAKE([foreign 1.11 -Wall -Wno-portability silent-rules subdir-objects])
|
|
-AC_PROG_CC_STDC
|
|
+AC_PROG_CC
|
|
AC_PROG_CXX
|
|
AC_PROG_LN_S
|
|
AC_PROG_MKDIR_P
|
|
--
|
|
2.33.0
|
|
|