chromium compile fails on FreeBSD 9.3

I noticed there is a new port of chromium posted, and downloaded the code for my 10.2 and 9.3 machines. The 10.2 seems to be compiling fine (it's not done yet) but the 9.3 bombs with an include
Code:
#include <type_traits>
Is there something I can add to correct the problem, or do I have to wait for an updated port?

Thank you.

Alan
 
Try to build www/chromium on FreeBSD 9.3 after adding the following flag
Code:
CXXFLAGS+=      -D_GLIBCXX_USE_C99
in www/chromium/Makefile
 
I tried to add the suggested
Code:
CXXFLAGS+=      -D_GLIBCXX_USE_C99

and got the same response. I Also tried to use portmaster instead of the port install, with no change.

Alan
 
I just tried to compile the port with a portinstall, and got the following error:
Code:
Updating projects from gyp files...
[27763 refs]
gyp: Call to 'python ../build/util/version.py -f ../chrome/VERSION -t "@BUILD@.@PATCH_HI@.@PATCH_LO@" -e "PATCH_HI=int(PATCH)/256" -e "PATCH_LO=int(PATCH)%256"' returned exit status 0 while in chrome/chrome.gyp.
[69570 refs]
*** [do-configure] Error code 1
Alan
 
Please, provide us the following outputs from your machine:

uname -a

cat /etc/make.conf

date -r `cut -f 2 -d '|' /var/db/portsnap/tag`
 
Back
Top