Changeset 2191


Ignore:
Timestamp:
Jan 12, 2008, 9:15:20 PM (15 years ago)
Author:
Sam Hocevar
Message:
  • Windows build fixes here and there.
Location:
libcaca/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/cucul/figfont.c

    r2144 r2191  
    307307    if(!f)
    308308    {
    309         snprintf(altpath, 2047, "%s.tlf", path);
     309        _snprintf(altpath, 2047, "%s.tlf", path);
    310310        altpath[2047] = '\0';
    311311        f = _cucul_file_open(altpath, "r");
     
    313313    if(!f)
    314314    {
    315         snprintf(altpath, 2047, "%s.flf", path);
     315        _snprintf(altpath, 2047, "%s.flf", path);
    316316        altpath[2047] = '\0';
    317317        f = _cucul_file_open(altpath, "r");
  • libcaca/trunk/cxx/caca++.cpp

    r2074 r2191  
    1818 *  so on.
    1919 */
     20
     21#include "config.h"
    2022
    2123#include <iostream>
  • libcaca/trunk/msvc/config.h

    r2144 r2191  
    5757#endif
    5858#define strcasecmp stricmp
     59#define snprintf _snprintf
Note: See TracChangeset for help on using the changeset viewer.