Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 275205 - sci-physics/root-5.20.00-r3 - cint/cint/src/Type.cxx:128:15: error: missing binary operator before token "("
Summary: sci-physics/root-5.20.00-r3 - cint/cint/src/Type.cxx:128:15: error: missing b...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Science Physics related packages
URL:
Whiteboard:
Keywords: InVCS
Depends on:
Blocks: 245875
  Show dependency tree
 
Reported: 2009-06-23 16:32 UTC by Jeroen Roovers (RETIRED)
Modified: 2009-06-24 07:03 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jeroen Roovers (RETIRED) gentoo-dev 2009-06-23 16:32:56 UTC
hppa2.0-unknown-linux-gnu-g++  -pipe -Wall -W -Woverloaded-virtual -fPIC -Iinclude -DR__HAVE_CONFIG -O0 -pipe -mschedule=8000 -march=2.0 -g -ggdb -Wall -DG__REGEXP -DG__UNIX -DG__SHAREDLIB -DG__OSFDLL -DG__ROOT -DG__REDIRECTIO -DG__STD_EXCEPTION  -DG__HAVE_CONFIG -DG__NOMAKEINFO -DG__CINTBODY -Icint/cint/inc -Icint/cint/src -Icint/cint/src/dict -pthread -I. -o cint/cint/src/Type.o -c cint/cint/src/Type.cxx
[...]
cint/cint/src/Type.cxx:128:15: error: missing binary operator before token "("
cint/cint/src/Type.cxx:141:15: error: missing binary operator before token "("

The obvious patch:

--- root/cint/cint/src/Type.cxx.orig    2008-06-25 08:24:00.000000000 +0200
+++ root/cint/cint/src/Type.cxx 2009-06-23 17:59:36.000000000 +0200
@@ -125,7 +125,7 @@
   strcpy(G__buf,
         G__type2string((int)type,(int)tagnum,-1,(int)reftype,(int)isconst));
   return(G__buf);
-#elif  !defind(G__OLDIMPLEMENTATION401)
+#elif  !defined(G__OLDIMPLEMENTATION401)
   return(G__type2string((int)type,(int)tagnum,-1,(int)reftype,(int)isconst));
 #else
   return(G__type2string((int)type,(int)tagnum,-1,(int)reftype));
@@ -138,7 +138,7 @@
   strcpy(G__buf,G__type2string((int)type,(int)tagnum,(int)typenum,(int)reftype
                               ,(int)isconst));
   return(G__buf);
-#elif  !defind(G__OLDIMPLEMENTATION401)
+#elif  !defined(G__OLDIMPLEMENTATION401)
   return(G__type2string((int)type,(int)tagnum,(int)typenum,(int)reftype
        ,(int)isconst));
 #else
Comment 1 Jeroen Roovers (RETIRED) gentoo-dev 2009-06-23 16:36:09 UTC
[ebuild     UD] sci-physics/root-5.20.00-r3 [5.22.00-r1] USE="cern clarens emacs examples fftw geant4 kerberos ldap math mysql postgres pythia6 pythia8 python qt4 reflex ruby ssl xml (-afs) -debug -doc -odbc (-oracle) -xinetd -xrootd (-cint7%) (-openmp%*)" 0 kB

Fixed in CVS. Please confirm.
Comment 2 Sébastien Fabbro (RETIRED) gentoo-dev 2009-06-24 07:03:41 UTC
confirmed. Thanks.