From 261086b873397b437ad024d44e9467f0fb2586ba Mon Sep 17 00:00:00 2001 From: Martin Baute Date: Mon, 14 Mar 2016 08:43:23 +0100 Subject: [PATCH] Moved errno to main codebase. --- {opt/tss_errno => functions/errno}/errno.c | 0 {opt/tss_errno => includes}/errno.h | 0 platform/example/Config.jam | 7 +++---- platform/gandr/Config.jam | 5 ++--- platform/win32/Config.jam | 9 ++++----- 5 files changed, 9 insertions(+), 12 deletions(-) rename {opt/tss_errno => functions/errno}/errno.c (100%) rename {opt/tss_errno => includes}/errno.h (100%) diff --git a/opt/tss_errno/errno.c b/functions/errno/errno.c similarity index 100% rename from opt/tss_errno/errno.c rename to functions/errno/errno.c diff --git a/opt/tss_errno/errno.h b/includes/errno.h similarity index 100% rename from opt/tss_errno/errno.h rename to includes/errno.h diff --git a/platform/example/Config.jam b/platform/example/Config.jam index f8dab51..61411dc 100644 --- a/platform/example/Config.jam +++ b/platform/example/Config.jam @@ -9,8 +9,7 @@ if $(PDCLIB_TOOLCHAIN) = "gcc" { PDCLIB_TEST_LINKLIBS += -lgcc ; } -PDCLIB_OPTIONS = - nothread - tss_errno - basecodecs +PDCLIB_OPTIONS = + nothread + basecodecs ; diff --git a/platform/gandr/Config.jam b/platform/gandr/Config.jam index 976b283..5f67437 100644 --- a/platform/gandr/Config.jam +++ b/platform/gandr/Config.jam @@ -3,8 +3,7 @@ rule PDCLibTargetHeaders { SubDirHdrs $(PDCLIB_TOP) platform gandr includes ; } -PDCLIB_OPTIONS = +PDCLIB_OPTIONS = nothread - tss_errno - basecodecs + basecodecs ; diff --git a/platform/win32/Config.jam b/platform/win32/Config.jam index b5fc3b0..021237d 100644 --- a/platform/win32/Config.jam +++ b/platform/win32/Config.jam @@ -13,8 +13,8 @@ if $(PDCLIB_TOOLCHAIN) = "gcc" { PDCLIB_TEST_LINKLIBS += -lgcc -lkernel32 -lshell32 ; } else if $(PDCLIB_TOOLCHAIN) = "WATCOM" { PDCLIB_TEST_LINKFLAGS = "-\"option start=_mainCRTStartup\"" ; - PDCLIB_TEST_LINKLIBS = - $(WATCOM)\\lib386\\nt\\kernel32.lib + PDCLIB_TEST_LINKLIBS = + $(WATCOM)\\lib386\\nt\\kernel32.lib $(WATCOM)\\lib386\\nt\\shell32.lib $(WATCOM)\\lib386\\nt\\clib3r.lib ; PDCLIB_REGTEST_CCHDRS = [ FIncludes $(WATCOM)\\h ] ; @@ -23,9 +23,8 @@ if $(PDCLIB_TOOLCHAIN) = "gcc" { EXIT ; } -PDCLIB_OPTIONS = - tss_errno - basecodecs +PDCLIB_OPTIONS = + basecodecs ; CRT0 = [ FDirName platform win32 crt0$(SUFOBJ) ] ; -- 2.40.0