Changeset 511 for WizardsToolkit/trunk

Show
Ignore:
Timestamp:
11/01/09 09:10:12 (3 weeks ago)
Author:
cristy
Message:
 
Location:
WizardsToolkit/trunk
Files:
8 modified

Legend:

Unmodified
Added
Removed
  • WizardsToolkit/trunk/config/config.h.in

    r239 r511  
    143143/* Define to 1 if you have the <machine/param.h> header file. */ 
    144144#undef HAVE_MACHINE_PARAM_H 
     145 
     146/* Define to 1 if you have the <mach-o/dyld.h> header file. */ 
     147#undef HAVE_MACH_O_DYLD_H 
    145148 
    146149/* Define to 1 if you have the `madvise' function. */ 
  • WizardsToolkit/trunk/config/configure.xml

    r411 r511  
    1818  <configure name="LIB_VERSION" value="0x107" /> 
    1919  <configure name="LIB_VERSION_NUMBER" value="1,0,7,0" /> 
    20   <configure name="RELEASE_DATE" value="2009-10-18" /> 
     20  <configure name="RELEASE_DATE" value="2009-11-01" /> 
    2121  <configure name="COPYRIGHT" value="Copyright (C) 1999-2009 ImageMagick Studio LLC" /> 
    2222  <configure name="WEBSITE" value="http://www.wizards-toolkit.org" /> 
  • WizardsToolkit/trunk/configure

    r386 r511  
    1890318903 
    1890418904 
    18905 for ac_header in argz.h arm/limits.h fcntl.h limits.h linux/unistd.h locale.h machine/param.h malloc.h stdarg.h sys/syslimits.h sys/resource.h sys/time.h sys/timeb.h sys/times.h sys/types.h sys/utime.h termios.h unistd.h utime.h 
     18905 
     18906for ac_header in argz.h arm/limits.h fcntl.h limits.h linux/unistd.h locale.h mach-o/dyld.h machine/param.h malloc.h stdarg.h sys/syslimits.h sys/resource.h sys/time.h sys/timeb.h sys/times.h sys/types.h sys/utime.h termios.h unistd.h utime.h 
    1890618907do 
    1890718908as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 
  • WizardsToolkit/trunk/configure.ac

    r386 r511  
    616616 
    617617# Check additional headers 
    618 AC_CHECK_HEADERS(argz.h arm/limits.h fcntl.h limits.h linux/unistd.h locale.h machine/param.h malloc.h stdarg.h sys/syslimits.h sys/resource.h sys/time.h sys/timeb.h sys/times.h sys/types.h sys/utime.h termios.h unistd.h utime.h) 
     618AC_CHECK_HEADERS(argz.h arm/limits.h fcntl.h limits.h linux/unistd.h locale.h mach-o/dyld.h machine/param.h malloc.h stdarg.h sys/syslimits.h sys/resource.h sys/time.h sys/timeb.h sys/times.h sys/types.h sys/utime.h termios.h unistd.h utime.h) 
    619619 
    620620######## 
  • WizardsToolkit/trunk/utilities/content.c

    r1 r511  
    123123  WizardAssert(CipherDomain,content_info != (ContentInfo *) NULL); 
    124124  WizardAssert(CipherDomain,content_info->signature == WizardSignature); 
    125   (void) LogWizardEvent(TraceEvent,GetWizardModule(),content_info->content); 
     125  (void) LogWizardEvent(TraceEvent,GetWizardModule(),"%s", 
     126    content_info->content); 
    126127  if (content_info->random_info != (RandomInfo *) NULL) 
    127128    content_info->random_info=DestroyRandomInfo(content_info->random_info); 
     
    227228  WizardAssert(CipherDomain,cipher_blob != (BlobInfo *) NULL); 
    228229  WizardAssert(CipherDomain,exception != (ExceptionInfo *) NULL); 
    229   (void) LogWizardEvent(TraceEvent,GetWizardModule(), 
     230  (void) LogWizardEvent(TraceEvent,GetWizardModule(),"%s", 
    230231    GetBlobFilename(cipher_blob)); 
    231232  (void) ResetWizardMemory(key,0,sizeof(key)); 
  • WizardsToolkit/trunk/wizard/string.c

    r319 r511  
    877877 
    878878  WizardAssert(StringDomain,filename != (const char *) NULL); 
    879   (void) LogWizardEvent(TraceEvent,GetWizardModule(),filename); 
     879  (void) LogWizardEvent(TraceEvent,GetWizardModule(),"%s",filename); 
    880880  WizardAssert(StringDomain,exception != (ExceptionInfo *) NULL); 
    881881  return((char *) FileToBlob(filename,extent,&length,exception)); 
     
    916916 
    917917  WizardAssert(StringDomain,filename != (const char *) NULL); 
    918   (void) LogWizardEvent(TraceEvent,GetWizardModule(),filename); 
     918  (void) LogWizardEvent(TraceEvent,GetWizardModule(),"%s",filename); 
    919919  WizardAssert(StringDomain,exception != (ExceptionInfo *) NULL); 
    920920  string_info=AcquireStringInfo(0); 
  • WizardsToolkit/trunk/wizard/utility.c

    r378 r511  
    4646#include "wizard/resource_.h" 
    4747#include "wizard/utility.h" 
     48#if defined(WIZARDSTOOLKIT_HAVE_MACH_O_DYLD_H) 
     49#include <mach-o/dyld.h> 
     50#endif 
    4851 
    4952/* 
  • WizardsToolkit/trunk/wizard/version.h

    r411 r511  
    3232#define WizardLibVersionNumber  1,0,1 
    3333#define WizardLibSubversion  "-0" 
    34 #define WizardReleaseDate  "2009-10-18" 
     34#define WizardReleaseDate  "2009-11-01" 
    3535#define WizardChangeDate   "20090428" 
    3636#define WizardAuthoritativeURL  "http://www.wizards-toolkit.org"