mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
Fix implicit declaration of library function exit in configure script which led to build failure with Xcode 12. Modify configure script to write a minimal config.log so that future configure test failures are easier to notice and diagnose. Closes: https://trac.macports.org/ticket/61558 Use MacPorts CFLAGS, CPPFLAGS, and LDFLAGS when running configure tests. Also use MacPorts CPPFLAGS when building. Rename some patchfiles.
23 lines
592 B
Diff
23 lines
592 B
Diff
--- configure.orig Sat Oct 23 06:24:51 2004
|
|
+++ configure Sat Oct 23 06:37:44 2004
|
|
@@ -474,17 +474,12 @@
|
|
troff="troff -mandoc"
|
|
echo "Warning: could not find groff"
|
|
else
|
|
- if test $Fnroff = "missing"
|
|
- then
|
|
- nroff="$Fgroff -Tlatin1 -mandoc"
|
|
- else
|
|
- nroff="$Fnroff -Tlatin1 -mandoc"
|
|
- fi
|
|
+ nroff="$Fgroff -P-c -Wall -mtty-char -Tascii -mandoc"
|
|
troff="$Fgroff -Tps -mandoc"
|
|
jnroff="$Fgroff -Tnippon -mandocj"
|
|
fi
|
|
eqn="$Fgeqn -Tps"
|
|
- neqn="$Fgeqn -Tlatin1"
|
|
+ neqn="$Fgeqn -Tascii"
|
|
jneqn="$Fgeqn -Tnippon"
|
|
tbl="$Fgtbl"
|
|
col="$Fcol"
|