diff -Nru fpc-3.0.0+dfsg/debian/changelog fpc-3.0.0+dfsg/debian/changelog
--- fpc-3.0.0+dfsg/debian/changelog	2016-06-02 19:43:38.000000000 +0000
+++ fpc-3.0.0+dfsg/debian/changelog	2016-06-16 17:45:06.000000000 +0000
@@ -1,3 +1,10 @@
+fpc (3.0.0+dfsg-6+rpi1) stretch-staging; urgency=medium
+
+  [changes brought forward from 2.6.4+dfsg-4+rpi1 by Peter Michael Green <plugwash@raspbian.org> at Mon, 20 Oct 2014 23:12:17 +0000]
+  * Set compiler defaults for raspbian.
+
+ -- Raspbian forward porter <root@raspbian.org>  Thu, 16 Jun 2016 17:45:05 +0000
+
 fpc (3.0.0+dfsg-6) unstable; urgency=medium
 
   * Fix FTBFS due to wrong logic for latex files, we only need to ship
diff -Nru fpc-3.0.0+dfsg/debian/patches/raspbian.diff fpc-3.0.0+dfsg/debian/patches/raspbian.diff
--- fpc-3.0.0+dfsg/debian/patches/raspbian.diff	1970-01-01 00:00:00.000000000 +0000
+++ fpc-3.0.0+dfsg/debian/patches/raspbian.diff	2016-06-16 17:45:06.000000000 +0000
@@ -0,0 +1,56 @@
+Description: Change compiler defaults for raspbian
+ We need armv6 and vfpv2 rather than armv7 and vfpv3-d16
+Author: Peter Michael Green <plugwash@debian.org>
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: http://bugs.debian.org/<bugnumber>
+Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+Index: fpc-3.0.0+dfsg/fpcsrc/compiler/options.pas
+===================================================================
+--- fpc-3.0.0+dfsg.orig/fpcsrc/compiler/options.pas
++++ fpc-3.0.0+dfsg/fpcsrc/compiler/options.pas
+@@ -3692,7 +3692,8 @@ begin
+     begin
+       if not(option.FPUSetExplicitly) then
+         begin
+-          init_settings.fputype:=fpu_vfpv3_d16
++          //RPI -- reduce default fpu to vfpv2
++          init_settings.fputype:=fpu_vfpv2
+         end
+       else
+         begin
+@@ -3729,10 +3730,9 @@ begin
+       end;
+   end;
+ 
+-{ set default cpu type to ARMv7a for ARMHF unless specified otherwise }
++{ set default cpu type to ARMv6 for Raspbian unless specified otherwise }
+ if (target_info.abi = abi_eabihf) then
+   begin
+-{$ifdef CPUARMV6}
+     { if the compiler is built for armv6, then
+       inherit this setting, e.g. Raspian is armhf but
+       only armv6, this makes rebuilds of the compiler
+@@ -3741,12 +3741,6 @@ if (target_info.abi = abi_eabihf) then
+       init_settings.cputype:=cpu_armv6;
+     if not option.OptCPUSetExplicitly then
+       init_settings.optimizecputype:=cpu_armv6;
+-{$else CPUARMV6}
+-    if not option.CPUSetExplicitly then
+-      init_settings.cputype:=cpu_armv7a;
+-    if not option.OptCPUSetExplicitly then
+-      init_settings.optimizecputype:=cpu_armv7a;
+-{$endif CPUARMV6}
+   end;
+ 
+   if (init_settings.instructionset=is_thumb) and not(CPUARM_HAS_THUMB2 in cpu_capabilities[init_settings.cputype]) then
diff -Nru fpc-3.0.0+dfsg/debian/patches/series fpc-3.0.0+dfsg/debian/patches/series
--- fpc-3.0.0+dfsg/debian/patches/series	2016-06-01 19:45:01.000000000 +0000
+++ fpc-3.0.0+dfsg/debian/patches/series	2016-06-16 17:45:06.000000000 +0000
@@ -33,3 +33,4 @@
 Fixed-i386-case-jump-table-when-PIC-with-GOT-and-an-.patch
 Fixed-calling-of-external-procs-for-i386-non-darwin-.patch
 arm_UMULL_support_fix.patch
+raspbian.diff