-
Notifications
You must be signed in to change notification settings - Fork 12
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
Fix build issue due to the outdated 'time' module #86
base: master
Are you sure you want to change the base?
Conversation
This change is certainly wrong, it should be
|
Why |
Verismith builds just fine on my Arch Linux and Ubuntu with time < 1.10. |
It fails on FreeBSD with this error: #85 |
It was just a counter argument to time < 1.10 not building. The change proposed by @arrowd is easy to apply, does it prevent Verismith from building using your setup? |
With the patch proposed by arrowd the build fails. The FreeBSD framework uses I also don't understand the desire to keep the version range for 'time' low. If some versions below a certain threshold are known to fail on some systems - doesn't it make sense to make the lower limit higher? |
Our Ports do not use any specific Haskell packages. The framework only calls So, the correct solution is to only extend version bounds, not shrink them. |
Reference: haskell/time#145