Opened 18 years ago

Closed 18 years ago

Last modified 10 years ago

#1606 closed defect (fixed)

XFS-2.7.11

Reported by: LFS-User@… Owned by: dnicholson@…
Priority: normal Milestone:
Component: BOOK Version: SVN
Severity: normal Keywords:
Cc:

Description

Version increment to 2.6.36

Change History (7)

comment:1 by ttrepl@…, 18 years ago

(In reply to comment #0)

Version increment to 2.6.36

It's working well (for me) with following commands:

sed -i 's/autoconf' Makefile make DEBUG=-DNDEBUG make DEBUG=-DNDEBUG install

comment:2 by LFS-User@…, 18 years ago

Summary: XFS-2.6.36XFS-2.7.3

Version increment to 2.7.3

comment:3 by Randy McMurchy, 18 years ago

blocked: 1590

comment:4 by chris@…, 18 years ago

Summary: XFS-2.7.3XFS-2.7.11

2.7.3 is no longer available at the download location. The current version is 2.7.11.

comment:5 by dnicholson@…, 18 years ago

Owner: changed from blfs-book@… to dnicholson@…
Status: newassigned

I started working on XFS-2.7.11. A couple notes here:

  • No apparent gcc-4 issues anymore.
  • -DDEBUG causes xfs_bmap.c to bomb. For some reason, it references a non-existant function called 'xfs_bmap_check_leaf_extents'. This is easily solved by passing -DNDEBUG to make.
  • Passing OPTIMIZER="" suppresses -g debugging in compilation.

The library installation is not right. libhandle.so.1 and libhandle.so.1.0.3 are installed to /lib. But:

  • There's no libhandle.so symlink.
  • The static libhandle.a and libhandle.la libtool archive aren't installed.
  • libhandle.so.1.0.3 has 644 permissions. (Not broken, but inconsisent with BLFS)

All three is those are handled in a broken manner with make install-dev. Instead, I used these commands in my local build.

chmod -v 755 /lib/libhandle.so*
install -v -m755 -D libhandle/libhandle.la /usr/lib/libhandle.la
install -v -m644 libhandle/.libs/libhandle.a /usr/lib
ln -sv ../../lib/libhandle.so.1 /usr/lib/libhandle.so

Oh, and I changed the sed to sed -i '/autoconf/d' Makefile since it seemed more accurate as it guards against any arguments in the autoconf command by deleting the whole line.

Comments?

comment:6 by dnicholson@…, 18 years ago

Resolution: fixed
Status: assignedclosed

Although it's only been a day, since there's no comments, I'm committing the changes and marking the bug fixed. The commit is in r5692.

comment:7 by bdubbs@…, 10 years ago

Milestone: old

Milestone old deleted

Note: See TracTickets for help on using tickets.