Bug 241193 - graphics/ImageMagick6-nox11 pulls in gcc9 but checks for gcc8
Summary: graphics/ImageMagick6-nox11 pulls in gcc9 but checks for gcc8
Status: Closed Works As Intended
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: amd64 Any
: --- Affects Some People
Assignee: Koop Mast
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-10-11 10:39 UTC by Leon Dietrich
Modified: 2019-10-11 11:04 UTC (History)
0 users

See Also:
bugzilla: maintainer-feedback? (kwm)


Attachments
The build log (40.94 KB, text/plain)
2019-10-11 10:39 UTC, Leon Dietrich
no flags Details
The options configure log (1.76 KB, text/plain)
2019-10-11 10:42 UTC, Leon Dietrich
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Leon Dietrich 2019-10-11 10:39:57 UTC
Created attachment 208241 [details]
The build log

ImageMagick6 depends on gcc9 but seams to check for gcc8. This causes the configure script to fail. Additionally configuring the options of this port also cause such issues. Please review the attached logs for further information.
Comment 1 Leon Dietrich 2019-10-11 10:42:37 UTC
Created attachment 208242 [details]
The options configure log
Comment 2 Tobias Kortkamp freebsd_committer freebsd_triage 2019-10-11 10:56:08 UTC
Comment on attachment 208241 [details]
The build log

.if ${.CURDIR:M*graphics/ImageMagick6-nox11*}
  CC=gcc8
  CXX=g++8
  CPP=cpp8
  CFLAGS= -O2 -pipe -march=barcelona -mtune=barcelona
  COPTFLAGS= -O2 -pipe  -march=barcelona -mtune=barcelona
.endif

Removing this snippet from your make.conf will probably make it work as intended.
Comment 3 Leon Dietrich 2019-10-11 11:04:06 UTC
(In reply to Tobias Kortkamp from comment #2)

Oh. Sorry. Looks like I need new glasses.