Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

diffutils: fix bug with 32-bit builds #18890

Merged
merged 1 commit into from
Jun 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 4 additions & 10 deletions sysutils/diffutils/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,14 @@ depends_build-append port:gettext

depends_lib-append port:gettext-runtime

patchfiles patch-src_system.h.diff

# Bypass year 2038 awareness code that causes the universal variant to fail.
pre-configure {
if [variant_isset "universal"] {
configure.args-append --disable-year2038
}
}
patchfiles-append patch-src_system.h.diff

configure.args-append --program-prefix=g \
--infodir=${prefix}/share/info \
--mandir=${prefix}/share/man \
--disable-silent-rules

--disable-silent-rules \
--disable-year2038

platform darwin 8 {
post-patch {
# use older register names in 10.4 SDK https://trac.macports.org/ticket/66482
Expand Down