mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
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
11 lines
209 B
Diff
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])
|