Opened 11 years ago

Closed 11 years ago

Last modified 10 years ago

#3832 closed defect (fixed)

VLC-2.0.5 may need a sed

Reported by: Arthur Radley Owned by: blfs-book@…
Priority: normal Milestone:
Component: BOOK Version: SVN
Severity: normal Keywords: VLC automake macros
Cc:

Description

The current version of automake no longer tolerates references to long-deprecated macros. This caused serious problems for me building VLC-2.0.5 in the current book. Armin K gave me a sed at the blfs-support mailing list to correct the source code for this. I applied it after the patch command and before the bootstrap command like this in my case...

patch -Np1 -i ../vlc-2.0.5-opencv_fixes-1.patch &&
sed "s@AM_CONFIG_HEADER@AC_CONFIG_HEADERS@g" -i configure.ac &&
./bootstrap &&
sed -i "s|LDFLAGS_sid)|& -L/usr/lib/sidplay/builders|" modules/demux/Makefile.in &&
./configure --prefix=/usr --disable-zvbi --enable-faad --enable-aa &&
make

Then the configure step ran longer, did a lot more, and ended with a success message. Maybe there is just something unique about my situation. If not though, adding this sed might improve the book.

Change History (3)

comment:1 by Arthur Radley, 11 years ago

Minor correction to the above... It was the bootstrap command (not configure) that ran longer, did more, and completed with a success message (something it would not do without being preceded Armin K's sed).

comment:2 by Armin K, 11 years ago

Resolution: fixed
Status: newclosed

Fixed in r11124

comment:3 by bdubbs@…, 10 years ago

Milestone: current

Milestone current deleted

Note: See TracTickets for help on using tickets.