This is an automated notification sent by Gna!.
It relates to:
                bugs #1803, project Wormux



==============================================================================
LATEST MODIFICATIONS of bugs #1803:
==============================================================================

Posted by:              Victor STINNER <haypo>
Posted on:              Thu 11/11/2004 at 12:24 (GMT)

            What     | Removed                   | Added
---------------------------------------------------------------------------
         Open/Closed | Open                      | Closed




==============================================================================
OVERVIEW of bugs #1803:
==============================================================================

URL:
  <http://gna.org/bugs/?func=detailitem&item_id=1803>

Project:                Wormux
Submitted by:           GnunuX
Submitted on:           Fri 10/29/2004 at 10:23

Category:               compilation
Severity:               7 - Major
Priority:               5 - Normal
Status:         Fixed
Privacy:                Public
Assigned to:            haypo
Originator Email:               
Open/Closed:            Closed


Summary:                problem with wormux 0.5-beta2 compilation
_______________________________________________________

Original Submission:
then mv -f ".deps/weapon.Tpo" ".deps/weapon.Po"; else rm -f ".deps/weapon.Tpo"; 
exit 1; fi

weapon/weapon.cpp: Dans member function « bool Arme::LoadXml(xmlpp::Element*)

   »:

weapon/weapon.cpp:392: error: `COUT_DBG' undeclared (first use this function)

weapon/weapon.cpp:392: error: (Each undeclared identifier is reported only once

   for each function it appears in.)

make[2]: *** [weapon.o] Erreur 1

make[2]: Leaving directory `/tmp/build-wormux/wormux/src'

make[1]: *** [all-recursive] Erreur 1

make[1]: Leaving directory `/tmp/build-wormux/wormux/src'

make: *** [all-recursive] Erreur 1





I've resolve this problem with changing in src/weapon/weapon.cpp line 390 :



---------------------------------

  if (elem == NULL)

  {

    COUT_DBG << Format(_("No element <%s> found in the xml config file !"),

                        m_id.c_str())

              << std::endl;

    return false;

  }

---------------------------------



to



---------------------------------

#ifdef DEBUG_MSG_COLLISION

  if (elem == NULL)

  {

    COUT_DBG << Format(_("No element <%s> found in the xml config file !"),

                        m_id.c_str())

              << std::endl;

    return false;

  }

#endif

---------------------------------



But i've an unsolve problem :



---------------------------------

make[2]: Entering directory `/tmp/build-wormux/wormux/po'

make[2]: *** Pas de règle pour fabriquer la cible « ../src/graphic/clipping.cpp 
», nécessaire pour « wormux.pot-update ». Arrêt.

make[2]: Leaving directory `/tmp/build-wormux/wormux/po'

make[1]: *** [wormux.pot] Erreur 2

make[1]: Leaving directory `/tmp/build-wormux/wormux/po'

make: *** [all-recursive] Erreur 1

---------------------------------




_______________________________________________________

Follow-up Comments:


-------------------------------------------------------
Date: Thu 11/11/2004 at 12:17       By: Victor STINNER <haypo>
Bugs fixed in version 0.5beta3.



Haypo

-------------------------------------------------------
Date: Fri 10/29/2004 at 11:20       By: GnunuX <gnunux>
Maybe this is better :



if (elem == NULL)

{

#ifdef DEBUG_MSG_COLLISION

COUT_DBG << Format(_("No element <%s> found in the xml config file !"),

m_id.c_str())

<< std::endl;

#endif

return false;

}

--------------

For the second problem, i've solve myself the problem. To build the package 
i've to do :



./autogen.sh

./configure

cd src

make



But i cannot install it or use it :/












==============================================================================

This item URL is:
  <http://gna.org/bugs/?func=detailitem&item_id=1803>

_______________________________________________
  Message sent via/by Gna!
  http://gna.org/


Reply via email to