[haiku-commits] haiku: hrev43636 - src/bin/coreutils/lib

  • From: mmlr@xxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 7 Jan 2012 03:16:07 +0100 (CET)

hrev43636 adds 1 changeset to branch 'master'
old head: ecea46bcfdf52fb734227f2aa162eeeb303d4285
new head: d26f88068bd4d5757935ac27893fb572b19e0568

----------------------------------------------------------------------------

d26f880: Add xfreopen.c to the library build, fixes DEBUG build.
  
  The actual xfreopen function is only relevant if O_BINARY != 0 and all
  places invoking it are surrounded by if statements that are always
  false if O_BINARY == 0. The compiler therefore stripped all the calls
  out at the default -O2, but this obviously breaks down with DEBUG on.

                                            [ Michael Lotz <mmlr@xxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev43636
Commit:      d26f88068bd4d5757935ac27893fb572b19e0568
URL:         http://cgit.haiku-os.org/haiku/commit/?id=d26f880
Author:      Michael Lotz <mmlr@xxxxxxxx>
Date:        Sat Jan  7 02:13:01 2012 UTC

----------------------------------------------------------------------------

1 files changed, 1 insertions(+), 0 deletions(-)
src/bin/coreutils/lib/Jamfile |    1 +

----------------------------------------------------------------------------

diff --git a/src/bin/coreutils/lib/Jamfile b/src/bin/coreutils/lib/Jamfile
index e121489..0c8785c 100644
--- a/src/bin/coreutils/lib/Jamfile
+++ b/src/bin/coreutils/lib/Jamfile
@@ -223,6 +223,7 @@ StaticLibrary libfetish.a :
        version-etc-fsf.c
        write-any-file.c
        xalloc-die.c
+       xfreopen.c
        xfts.c
        xgetcwd.c
        xgethostname.c


Other related posts:

  • » [haiku-commits] haiku: hrev43636 - src/bin/coreutils/lib - mmlr