mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
Fix configure step so that it doesn't dump core on FreeBSD/amd64 due to a
missing prototype. Submitted by: ru
This commit is contained in:
parent
549415894e
commit
98b2775b27
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=163962
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= screen
|
||||
PORTVERSION= 4.0.2
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= ftp://ftp.uni-erlangen.de/pub/utilities/screen/ \
|
||||
${MASTER_SITE_GNU}
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- configure.orig Mon Jan 26 15:55:18 2004
|
||||
+++ configure Mon Jan 26 15:58:50 2004
|
||||
--- configure.orig Fri Dec 5 15:46:53 2003
|
||||
+++ configure Sat Mar 4 10:18:24 2006
|
||||
@@ -4746,48 +4746,6 @@
|
||||
sed 's/^/| /' conftest.$ac_ext >&5
|
||||
|
||||
@ -58,16 +58,17 @@
|
||||
|
||||
if test "$cross_compiling" = yes; then
|
||||
{ { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
|
||||
@@ -4927,7 +4883,7 @@
|
||||
@@ -4927,7 +4883,8 @@
|
||||
|
||||
main()
|
||||
{
|
||||
- exit(strcmp(tgoto("%p1%d", 0, 1), "1") ? 0 : 1);
|
||||
+ char *tgoto(const char *, int, int);
|
||||
+ exit(strcmp(tgoto("%d%d", 0, 1), "1") ? 0 : 1);
|
||||
}
|
||||
_ACEOF
|
||||
rm -f conftest$ac_exeext
|
||||
@@ -5314,18 +5270,15 @@
|
||||
@@ -5314,18 +5271,15 @@
|
||||
fi
|
||||
rm -f conftest*
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user