pax: -DLONG_OFF_T added (Makefile does it, too)
This commit is contained in:
parent
c11408e629
commit
9993a11cae
|
@ -7,12 +7,15 @@ SUMMARY="Portable Archive Interchange"
|
||||||
|
|
||||||
LICENCES="( BSD-3 MIT )"
|
LICENCES="( BSD-3 MIT )"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
PLATFORMS="~amd64"
|
PLATFORMS="~amd64 ~x86"
|
||||||
|
|
||||||
DEPENDENCIES=""
|
DEPENDENCIES=""
|
||||||
|
|
||||||
src_compile() {
|
src_compile() {
|
||||||
edo gcc ${CFLAGS} ${LDFLAGS} -o pax *.c
|
# Makefile says:
|
||||||
|
# # -DLONG_OFF_T The base type of off_t is a long, not a long long.
|
||||||
|
# # This is often defined in: /usr/include/sys/types.h
|
||||||
|
edo gcc -DLONG_OFF_T ${CFLAGS} ${LDFLAGS} -o pax *.c
|
||||||
}
|
}
|
||||||
|
|
||||||
src_install() {
|
src_install() {
|
||||||
|
|
Loading…
Reference in a new issue