From 4321ebdd142b534d8b7b6c31e01790f77ac46319 Mon Sep 17 00:00:00 2001 From: Martin Baute Date: Mon, 14 Mar 2016 07:57:15 +0100 Subject: [PATCH] Moved the C locale implementation into main code base. None of these are really optional, eventually we have to flesh them out into full implementations anyway. --- {opt/c_locale => functions/_PDCLIB}/_PDCLIB_initclocale.c | 0 {opt/c_locale => internals}/_PDCLIB_clocale.h | 0 opt/c_locale/README.txt | 2 -- platform/example/Config.jam | 1 - platform/gandr/Config.jam | 1 - platform/posix/Config.jam | 2 +- platform/win32/Config.jam | 1 - 7 files changed, 1 insertion(+), 6 deletions(-) rename {opt/c_locale => functions/_PDCLIB}/_PDCLIB_initclocale.c (100%) rename {opt/c_locale => internals}/_PDCLIB_clocale.h (100%) delete mode 100644 opt/c_locale/README.txt diff --git a/opt/c_locale/_PDCLIB_initclocale.c b/functions/_PDCLIB/_PDCLIB_initclocale.c similarity index 100% rename from opt/c_locale/_PDCLIB_initclocale.c rename to functions/_PDCLIB/_PDCLIB_initclocale.c diff --git a/opt/c_locale/_PDCLIB_clocale.h b/internals/_PDCLIB_clocale.h similarity index 100% rename from opt/c_locale/_PDCLIB_clocale.h rename to internals/_PDCLIB_clocale.h diff --git a/opt/c_locale/README.txt b/opt/c_locale/README.txt deleted file mode 100644 index d9b5dbf..0000000 --- a/opt/c_locale/README.txt +++ /dev/null @@ -1,2 +0,0 @@ -Basic C Locale Support - - i.e. support for the basic (PDCLib-packaged) C locale only \ No newline at end of file diff --git a/platform/example/Config.jam b/platform/example/Config.jam index 06ee0c4..f8dab51 100644 --- a/platform/example/Config.jam +++ b/platform/example/Config.jam @@ -13,5 +13,4 @@ PDCLIB_OPTIONS = nothread tss_errno basecodecs - c_locale ; diff --git a/platform/gandr/Config.jam b/platform/gandr/Config.jam index 329dbfc..976b283 100644 --- a/platform/gandr/Config.jam +++ b/platform/gandr/Config.jam @@ -7,5 +7,4 @@ PDCLIB_OPTIONS = nothread tss_errno basecodecs - c_locale ; diff --git a/platform/posix/Config.jam b/platform/posix/Config.jam index d25448c..0a37f47 100644 --- a/platform/posix/Config.jam +++ b/platform/posix/Config.jam @@ -14,4 +14,4 @@ if $(OS) = "MACOSX" { PDCLIB_OPTIONS = pthreads basecodecs - c_locale ; + ; diff --git a/platform/win32/Config.jam b/platform/win32/Config.jam index 15834e1..b5fc3b0 100644 --- a/platform/win32/Config.jam +++ b/platform/win32/Config.jam @@ -26,7 +26,6 @@ if $(PDCLIB_TOOLCHAIN) = "gcc" { PDCLIB_OPTIONS = tss_errno basecodecs - c_locale ; CRT0 = [ FDirName platform win32 crt0$(SUFOBJ) ] ; -- 2.40.0