Files
Ryan Schmidt 2a14d236e6 wyrd: Update to 1.4.6
Closes: https://trac.macports.org/ticket/48189

Also turn off safe strings to fix a build failure with ocaml 4.06 which
turns safe strings on by default, use archived homepage because the
server no longer responds, and turn off livecheck.
2018-10-27 17:08:38 -05:00

15 lines
428 B
Diff

wyrd 1.4.4 found term.h by checking for TERMTYPE which worked fine.
wyrd 1.4.5 tries to find term.h by checking for TERMINAL which fails because:
error: variable has incomplete type 'TERMINAL' (aka 'struct term')
--- curses/configure.orig 2013-02-02 21:40:49.000000000 -0600
+++ curses/configure 2018-10-27 16:58:00.000000000 -0500
@@ -3673,7 +3673,7 @@
int
main ()
{
-TERMINAL __dummy
+TERMTYPE __dummy
;
return 0;
}