Skip to content

Commit

Permalink
[cage] Fixup BSD encodings with UTF8, build-system integration
Browse files Browse the repository at this point in the history
ChangeLog, MANIFEST, Makefile, Copyright dates.
Closes pull request #1092
  • Loading branch information
Reini Urban committed Oct 4, 2014
1 parent 84cd190 commit dca33d8
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 5 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
@@ -1,5 +1,7 @@
2014-10-21 release 6.9.0
- Core
+ Add platform encoding functions for FreeBSD, OpenBSD and NetBSD, fixing
rakudo problems with UTF-8 locales. [GH #1092]
- Build
- Documentation
- Tests
Expand Down
3 changes: 3 additions & 0 deletions MANIFEST
Expand Up @@ -1327,6 +1327,7 @@ src/platform/ansi/time.c []
src/platform/cygwin/math.c []
src/platform/darwin/hires_timer.c []
src/platform/darwin/sysmem.c []
src/platform/freebsd/encoding.c []
src/platform/generic/cpu_type.c []
src/platform/generic/dl.c []
src/platform/generic/encoding.c []
Expand All @@ -1347,7 +1348,9 @@ src/platform/generic/time.c []
src/platform/generic/uid.c []
src/platform/ia64/asm.s []
src/platform/linux/encoding.c []
src/platform/netbsd/encoding.c []
src/platform/netbsd/misc.c []
src/platform/openbsd/encoding.c []
src/platform/openbsd/math.c []
src/platform/solaris/math.c []
src/platform/solaris/time.c []
Expand Down
6 changes: 6 additions & 0 deletions config/gen/makefiles/root.in
Expand Up @@ -1842,6 +1842,8 @@ src/platform/darwin/hires_timer$(O) : src/platform/darwin/hires_timer.c $(PARROT

src/platform/darwin/sysmem$(O) : src/platform/darwin/sysmem.c $(PARROT_H_HEADERS)

src/platform/freebsd/encoding$(O) : src/platform/freebsd/encoding.c $(PARROT_H_HEADERS)

src/platform/generic/cpu_type$(O) : src/platform/generic/cpu_type.c $(PARROT_H_HEADERS)

src/platform/generic/dl$(O) : src/platform/generic/dl.c $(PARROT_H_HEADERS)
Expand Down Expand Up @@ -1884,8 +1886,12 @@ src/platform/win32/entropy$(O) : src/platform/win32/entropy.c $(PARROT_H_HEADERS

src/platform/linux/encoding$(O) : src/platform/linux/encoding.c $(PARROT_H_HEADERS)

src/platform/netbsd/encoding$(O) : src/platform/netbsd/encoding.c $(PARROT_H_HEADERS)

src/platform/netbsd/misc$(O) : src/platform/netbsd/misc.c $(PARROT_H_HEADERS)

src/platform/openbsd/encoding$(O) : src/platform/openbsd/encoding.c $(PARROT_H_HEADERS)

src/platform/openbsd/math$(O) : src/platform/openbsd/math.c $(PARROT_H_HEADERS)

src/platform/solaris/math$(O) : src/platform/solaris/math.c $(PARROT_H_HEADERS)
Expand Down
2 changes: 1 addition & 1 deletion src/platform/freebsd/encoding.c
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012, Parrot Foundation.
* Copyright (C) 2014 Parrot Foundation.
*/

/*
Expand Down
4 changes: 2 additions & 2 deletions src/platform/linux/encoding.c
@@ -1,12 +1,12 @@
/*
* Copyright (C) 2011-2012, Parrot Foundation.
* Copyright (C) 2011-2014, Parrot Foundation.
*/

/*
=head1 NAME
config/gen/platform/generic/encoding.c
config/gen/platform/linux/encoding.c
=head1 DESCRIPTION
Expand Down
2 changes: 1 addition & 1 deletion src/platform/netbsd/encoding.c
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012, Parrot Foundation.
* Copyright (C) 2014, Parrot Foundation.
*/

/*
Expand Down
2 changes: 1 addition & 1 deletion src/platform/openbsd/encoding.c
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012, Parrot Foundation.
* Copyright (C) 2014, Parrot Foundation.
*/

/*
Expand Down

0 comments on commit dca33d8

Please sign in to comment.