Files
macports-ports/mail/mpack/files/configure.in.patch
Frank DeanandChristopher Nielsen 2c33b38629 mpack: fix configure and build failures
Configure was failing as its tests appear to be pre C99 requiring implicit
int.

Makefile.am failed to build due to a local variable being null.  Fixed by
patching the autotools m4 macro that sets the variable.

Closes: https://trac.macports.org/ticket/71604
2025-05-18 09:32:22 -04:00

11 lines
209 B
Diff

--- configure.in~ 2003-07-22 00:49:18
+++ configure.in 2025-03-09 12:09:56
@@ -2,6 +2,7 @@
AM_INIT_AUTOMAKE(mpack,1.6)
AC_PROG_CC
+AC_CONFIG_MACRO_DIRS([cmulocal])
CMU_SOCKETS
AC_CHECK_FUNCS([strchr])