Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6609 in orxonox.OLD


Ignore:
Timestamp:
Jan 18, 2006, 11:50:25 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: compile again on Windows

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r6532 r6609  
    550550     fi
    551551  AC_CHECK_LIB([avutil], [main], [FOUND_avutil=yes; LIBS="$LIBS -lavutil"])
     552
     553  AC_CHECK_LIB([gcj], [main], [FOUND_gcj=yes; LIBS="$LIBS -lgcj"])
    552554
    553555  AC_CHECK_LIB([theora], [main], [FOUND_theora=yes; LIBS="$LIBS -ltheora"])
  • trunk/src/lib/graphics/text_engine/font.cc

    r6349 r6609  
    247247 * @param fileName the File to write the image into.
    248248 */
    249 void Font::createAsciiImage(const char* fileName, uint size) const
     249void Font::createAsciiImage(const char* fileName, unsigned int size) const
    250250{
    251251  if (this->fontTTF == NULL)
  • trunk/src/lib/graphics/text_engine/font.h

    r6349 r6609  
    7878    inline static Font* getDefaultFont() { if (Font::defaultFont == NULL) initDefaultFont(); return Font::defaultFont; };
    7979
    80     void createAsciiImage(const char* fileName, uint size) const;
     80    void createAsciiImage(const char* fileName, unsigned int size) const;
    8181    static void initDefaultFont();
    8282    static void removeDefaultFont();
Note: See TracChangeset for help on using the changeset viewer.