mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-08 23:06:56 +00:00
40239124bb
Fix two longstanding bugs in Return-Path patch: 1) possible uninitialized "rpath" variable usage 2) wrong message size, return_path not counted
47 lines
936 B
Plaintext
47 lines
936 B
Plaintext
*** configure.orig Fri Jul 25 21:42:06 1997
|
|
--- configure Tue Oct 7 22:37:01 1997
|
|
***************
|
|
*** 828,834 ****
|
|
fi
|
|
|
|
fi
|
|
! if test "$GCC" = yes
|
|
then
|
|
CFLAGS="$CFLAGS -fstrength-reduce -fpcc-struct-return"
|
|
fi
|
|
--- 828,834 ----
|
|
fi
|
|
|
|
fi
|
|
! if test "$GCC" = DISABLE_yes
|
|
then
|
|
CFLAGS="$CFLAGS -fstrength-reduce -fpcc-struct-return"
|
|
fi
|
|
***************
|
|
*** 1354,1360 ****
|
|
netinet/in.h \
|
|
maillock.h \
|
|
ndbm.h \
|
|
- gdbm.h \
|
|
|
|
do
|
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
|
--- 1354,1359 ----
|
|
***************
|
|
*** 1697,1703 ****
|
|
char gdbm_open();
|
|
|
|
int main() {
|
|
! gdbm_open()
|
|
; return 0; }
|
|
EOF
|
|
if { (eval echo configure:1704: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
|
|
--- 1696,1702 ----
|
|
char gdbm_open();
|
|
|
|
int main() {
|
|
! DISABLE_gdbm_open()
|
|
; return 0; }
|
|
EOF
|
|
if { (eval echo configure:1704: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
|