diff options
author | ryoon <ryoon@pkgsrc.org> | 2015-03-06 23:56:47 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2015-03-06 23:56:47 +0000 |
commit | db5686d91b17c0e62bc7d192455d14ff11f9c711 (patch) | |
tree | 1184b5617e34c5690dc272f0b86eb4203f232364 /lang/gforth/patches | |
parent | 79a9a6fcb238a60ac823e694dfe9676d08c3e328 (diff) | |
download | pkgsrc-db5686d91b17c0e62bc7d192455d14ff11f9c711.tar.gz |
Update to 0.7.3
Changelog:
User-visible changes between 0.7.2 and 0.7.3:
Bug fixes
Backported protection against glibc math functions clobbering TOS
User-visible changes between 0.7.1 and 0.7.2:
Bug fixes
Makefile fixes for installing
User-visible changes between 0.7.0 and 0.7.1:
Bug fixes
amd64 gdb disassembler works with syntax change (autodetected) workaround for gcc 4.6 and 4.7 problems (newline and superinstructions)
Miscellaneous
changed repository from CVS to git
Diffstat (limited to 'lang/gforth/patches')
-rw-r--r-- | lang/gforth/patches/patch-configure | 18 | ||||
-rw-r--r-- | lang/gforth/patches/patch-engine_Makefile.in | 6 |
2 files changed, 12 insertions, 12 deletions
diff --git a/lang/gforth/patches/patch-configure b/lang/gforth/patches/patch-configure index bcfa7a13815..8a890d00f72 100644 --- a/lang/gforth/patches/patch-configure +++ b/lang/gforth/patches/patch-configure @@ -1,18 +1,18 @@ -$NetBSD: patch-configure,v 1.1 2013/06/13 21:43:26 joerg Exp $ +$NetBSD: patch-configure,v 1.2 2015/03/06 23:56:47 ryoon Exp $ ---- configure.orig 2013-06-13 17:12:24.000000000 +0000 +--- configure.orig 2014-06-13 22:52:28.000000000 +0000 +++ configure -@@ -3984,10 +3984,10 @@ test "$make_type" = "GNU Make" && GNUMAK - echo "${ECHO_T}$make_type" >&6; } +@@ -4721,10 +4721,10 @@ test "$make_type" = "GNU Make" && GNUMAK + $as_echo "$make_type" >&6; } --{ echo "$as_me:$LINENO: checking whether the linker accepts -export-dynamic" >&5 --echo $ECHO_N "checking whether the linker accepts -export-dynamic... $ECHO_C" >&6; } -+{ echo "$as_me:$LINENO: checking whether the linker accepts -Wl,-export-dynamic" >&5 -+echo $ECHO_N "checking whether the linker accepts -Wl,-export-dynamic... $ECHO_C" >&6; } +-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -export-dynamic" >&5 +-$as_echo_n "checking whether the linker accepts -export-dynamic... " >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,-export-dynamic" >&5 ++$as_echo_n "checking whether the linker accepts -Wl,-export-dynamic... " >&6; } OLDLDFLAGS=$LDFLAGS -LDFLAGS="$LDFLAGS -export-dynamic" +LDFLAGS="$LDFLAGS -Wl,-export-dynamic" - if test "$cross_compiling" = yes; then + if test "$cross_compiling" = yes; then : ac_export_dynamic=no else diff --git a/lang/gforth/patches/patch-engine_Makefile.in b/lang/gforth/patches/patch-engine_Makefile.in index c5717f80018..b29e5655c66 100644 --- a/lang/gforth/patches/patch-engine_Makefile.in +++ b/lang/gforth/patches/patch-engine_Makefile.in @@ -1,12 +1,12 @@ -$NetBSD: patch-engine_Makefile.in,v 1.1 2013/10/28 23:48:30 joerg Exp $ +$NetBSD: patch-engine_Makefile.in,v 1.2 2015/03/06 23:56:47 ryoon Exp $ ---- engine/Makefile.in.orig 2013-10-18 15:51:52.000000000 +0000 +--- engine/Makefile.in.orig 2013-10-11 21:31:28.000000000 +0000 +++ engine/Makefile.in @@ -89,7 +89,7 @@ XCFLAGS = @CFLAGS@ XDEFINES = @DEFS@ SWITCHES = $(XCFLAGS) $(XDEFINES) $(OPTDEFINES) #use -fno-inline to avoid register problems with asinh, atanh on gcc-3.3 on 386 --ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves -fno-inline +-ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves -fno-inline -fno-reorder-blocks +ENGINE_FLAGS = @ENGINE_FLAGS@ DEBUGFLAG = @DEBUGFLAG@ CFLAGS = $(DEBUGFLAG) -I$(srcdir)/../arch/$(machine) -I. -Wall $(SWITCHES) -DDEFAULTPATH='"$(FORTHPATH)"' $(LTDLINCL) |