1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
From: Daniel Pimentel <d4n1@d4n1.org>
Date: Thu, 21 Aug 2025 17:54:36 -0300
Subject: patch: move configure.in to configure.ac.
Forwarded: https://sourceforge.net/p/fuzz/bugs/7/
Last-Update: 2025-08-21
Origin: upstream, https://sourceforge.net/p/fuzz/bugs/7/
---
configure.ac | 31 +++++++++++++++++++++++++++++++
configure.in | 31 -------------------------------
2 files changed, 31 insertions(+), 31 deletions(-)
create mode 100644 configure.ac
delete mode 100644 configure.in
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..53c1d01
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,31 @@
+dnl Process this file with autoconf to produce a configure script.
+AC_INIT(fuzz.c)
+AM_INIT_AUTOMAKE(fuzz,0.6)
+
+dnl Checks for programs.
+AC_PROG_CC
+AC_PROG_AWK
+AC_PROG_INSTALL
+AC_PROG_LN_S
+
+dnl Checks for libraries.
+AC_CHECK_LIB(readline,readline)
+
+dnl Checks for header files.
+AC_HEADER_STDC
+AC_HEADER_SYS_WAIT
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+dnl Checks for typedefs, structures, and compiler characteristics.
+AC_C_CONST
+AC_TYPE_SIZE_T
+AC_STRUCT_TM
+
+dnl Checks for library functions.
+AC_TYPE_SIGNAL
+AC_CHECK_FUNCS(getcwd strdup strerror snprintf)
+AC_CHECK_FUNC(getopt_long,
+ AC_MSG_RESULT(using libc's getopt_long),
+ AC_CHECK_LIB(iberty, getopt_long))
+
+AC_OUTPUT(Makefile)
diff --git a/configure.in b/configure.in
deleted file mode 100644
index 53c1d01..0000000
--- a/configure.in
+++ /dev/null
@@ -1,31 +0,0 @@
-dnl Process this file with autoconf to produce a configure script.
-AC_INIT(fuzz.c)
-AM_INIT_AUTOMAKE(fuzz,0.6)
-
-dnl Checks for programs.
-AC_PROG_CC
-AC_PROG_AWK
-AC_PROG_INSTALL
-AC_PROG_LN_S
-
-dnl Checks for libraries.
-AC_CHECK_LIB(readline,readline)
-
-dnl Checks for header files.
-AC_HEADER_STDC
-AC_HEADER_SYS_WAIT
-AC_CHECK_HEADERS(fcntl.h unistd.h)
-
-dnl Checks for typedefs, structures, and compiler characteristics.
-AC_C_CONST
-AC_TYPE_SIZE_T
-AC_STRUCT_TM
-
-dnl Checks for library functions.
-AC_TYPE_SIGNAL
-AC_CHECK_FUNCS(getcwd strdup strerror snprintf)
-AC_CHECK_FUNC(getopt_long,
- AC_MSG_RESULT(using libc's getopt_long),
- AC_CHECK_LIB(iberty, getopt_long))
-
-AC_OUTPUT(Makefile)
|