Libdc1394: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
|||
| Line 18: | Line 18: | ||
Compile the package: | Compile the package: | ||
sed -i "1i\#include <bits/time.h>" examples/grab_partial_image.c && | |||
./configure --prefix=/usr && | ./configure --prefix=/usr && | ||
make | make | ||
| Line 31: | Line 32: | ||
Compile the package: | Compile the package: | ||
sed -i "1i\#include <bits/time.h>" examples/grab_partial_image.c && | |||
CC="gcc ${BUILD32}" USE_ARCH=32 \ | CC="gcc ${BUILD32}" USE_ARCH=32 \ | ||
./configure --prefix=/usr && | ./configure --prefix=/usr && | ||
| Line 44: | Line 46: | ||
Compile the package: | Compile the package: | ||
sed -i "1i\#include <bits/time.h>" examples/grab_partial_image.c && | |||
CC="gcc ${BUILDN32}" USE_ARCH=n32 \ | CC="gcc ${BUILDN32}" USE_ARCH=n32 \ | ||
./configure --prefix=/usr --libdir=/usr/lib32 && | ./configure --prefix=/usr --libdir=/usr/lib32 && | ||
| Line 57: | Line 60: | ||
Compile the package: | Compile the package: | ||
sed -i "1i\#include <bits/time.h>" examples/grab_partial_image.c && | |||
CC="gcc ${BUILD64}" USE_ARCH=64 \ | CC="gcc ${BUILD64}" USE_ARCH=64 \ | ||
./configure --prefix=/usr --libdir=/usr/lib64 && | ./configure --prefix=/usr --libdir=/usr/lib64 && | ||
Revision as of 10:58, 12 November 2006
| Download Source: | http://prdownloads.sourceforge.net/libdc1394/libdc1394-1.2.1.tar.gz |
|---|
Dependencies
Required
Optional
Non-Multilib
Compile the package:
sed -i "1i\#include <bits/time.h>" examples/grab_partial_image.c && ./configure --prefix=/usr && make
Install the package
make install
Multilib
32Bit
Compile the package:
sed -i "1i\#include <bits/time.h>" examples/grab_partial_image.c &&
CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=/usr &&
sed -i "s/lib64/lib/g" libtool &&
make
Install the package
make install
N32
Compile the package:
sed -i "1i\#include <bits/time.h>" examples/grab_partial_image.c &&
CC="gcc ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=/usr --libdir=/usr/lib32 &&
sed -i "s/lib64/lib32/g" libtool &&
make
Install the package
make install
64Bit
Compile the package:
sed -i "1i\#include <bits/time.h>" examples/grab_partial_image.c &&
CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make
Install the package
make install