Description: Add GNU/kFreeBSD platform description
 It was accidentally deleted upstream
Author: Stefano Rivera <stefanor@debian.org>
Forwarded: https://bitbucket.org/pypy/pypy/commits/5005b65ed35 https://bitbucket.org/pypy/pypy/commits/be55314fd6a9
Last-Update: 2013-05-18

--- a/rpython/translator/platform/freebsd.py
+++ b/rpython/translator/platform/freebsd.py
@@ -12,3 +12,11 @@
 
 class Freebsd_64(Freebsd):
     shared_only = ('-fPIC',)
+
+class GNUkFreebsd(Freebsd):
+    DEFAULT_CC = 'cc'
+    extra_libs = ('-lrt',)
+
+class GNUkFreebsd_64(Freebsd_64):
+    DEFAULT_CC = 'cc'
+    extra_libs = ('-lrt',)
