Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
F
FreeBSD ports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
4
Snippets
Groups
Projects
Show more breadcrumbs
FreeBSD
FreeBSD ports
Commits
982a0d90
Verified
Commit
982a0d90
authored
4 months ago
by
Dima Panov
Browse files
Options
Downloads
Patches
Plain Diff
graphics/hugin: unbreak build with boost-1.85
With hat: office Sponsored by: Future Crew, LLC
parent
5a58ab08
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
graphics/hugin/Makefile
+1
-1
1 addition, 1 deletion
graphics/hugin/Makefile
graphics/hugin/files/patch-src_hugin__base_hugin__utils_filesystem.h
+16
-0
16 additions, 0 deletions
...gin/files/patch-src_hugin__base_hugin__utils_filesystem.h
with
17 additions
and
1 deletion
graphics/hugin/Makefile
+
1
−
1
View file @
982a0d90
PORTNAME
=
hugin
DISTVERSION
=
2023.0.0
PORTREVISION
=
4
PORTREVISION
=
5
CATEGORIES
=
graphics
MASTER_SITES
=
SF/
${
PORTNAME
}
/
${
PORTNAME
}
/
${
PORTNAME
}
-
${
PORTVERSION:R
}
...
...
This diff is collapsed.
Click to expand it.
graphics/hugin/files/patch-src_hugin__base_hugin__utils_filesystem.h
0 → 100644
+
16
−
0
View file @
982a0d90
---
src
/
hugin_base
/
hugin_utils
/
filesystem
.
h
.
orig
2023
-
05
-
08
18
:
19
:
14
UTC
+++
src
/
hugin_base
/
hugin_utils
/
filesystem
.
h
@@
-
64
,
6
+
64
,
12
@@
#endif
#include
<boost/filesystem.hpp>
namespace
fs
=
boost
::
filesystem
;
-
#
define
OVERWRITE_EXISTING
boost
::
filesystem
::
copy_option
::
overwrite_if_exists
+
#
if
BOOST_VERSION
>=
107400
+
// in Boost 1.74 and later filesystem::copy_option is deprecated
+
// use filesystem::copy_options instead
+
#
define
OVERWRITE_EXISTING
boost
::
filesystem
::
copy_options
::
overwrite_existing
+
#
else
+
#
define
OVERWRITE_EXISTING
boost
::
filesystem
::
copy_option
::
overwrite_if_exists
+
#
endif
#endif
#endif // _HUGIN_UTILS_FILESYSTEM_H
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment