From: Martin Baute Date: Mon, 14 Mar 2016 07:43:23 +0000 (+0100) Subject: Moved errno to main codebase. X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=261086b873397b437ad024d44e9467f0fb2586ba Moved errno to main codebase. --- 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) ] ;