Changeset 511 for WizardsToolkit/trunk
- Timestamp:
- 11/01/09 09:10:12 (3 weeks ago)
- Location:
- WizardsToolkit/trunk
- Files:
-
- 8 modified
-
config/config.h.in (modified) (1 diff)
-
config/configure.xml (modified) (1 diff)
-
configure (modified) (1 diff)
-
configure.ac (modified) (1 diff)
-
utilities/content.c (modified) (2 diffs)
-
wizard/string.c (modified) (2 diffs)
-
wizard/utility.c (modified) (1 diff)
-
wizard/version.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
WizardsToolkit/trunk/config/config.h.in
r239 r511 143 143 /* Define to 1 if you have the <machine/param.h> header file. */ 144 144 #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 145 148 146 149 /* Define to 1 if you have the `madvise' function. */ -
WizardsToolkit/trunk/config/configure.xml
r411 r511 18 18 <configure name="LIB_VERSION" value="0x107" /> 19 19 <configure name="LIB_VERSION_NUMBER" value="1,0,7,0" /> 20 <configure name="RELEASE_DATE" value="2009-1 0-18" />20 <configure name="RELEASE_DATE" value="2009-11-01" /> 21 21 <configure name="COPYRIGHT" value="Copyright (C) 1999-2009 ImageMagick Studio LLC" /> 22 22 <configure name="WEBSITE" value="http://www.wizards-toolkit.org" /> -
WizardsToolkit/trunk/configure
r386 r511 18903 18903 18904 18904 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 18906 for 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 18906 18907 do 18907 18908 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -
WizardsToolkit/trunk/configure.ac
r386 r511 616 616 617 617 # Check additional headers 618 AC_CHECK_HEADERS(argz.h arm/limits.h fcntl.h limits.h linux/unistd.h locale.h mach ine/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)618 AC_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) 619 619 620 620 ######## -
WizardsToolkit/trunk/utilities/content.c
r1 r511 123 123 WizardAssert(CipherDomain,content_info != (ContentInfo *) NULL); 124 124 WizardAssert(CipherDomain,content_info->signature == WizardSignature); 125 (void) LogWizardEvent(TraceEvent,GetWizardModule(),content_info->content); 125 (void) LogWizardEvent(TraceEvent,GetWizardModule(),"%s", 126 content_info->content); 126 127 if (content_info->random_info != (RandomInfo *) NULL) 127 128 content_info->random_info=DestroyRandomInfo(content_info->random_info); … … 227 228 WizardAssert(CipherDomain,cipher_blob != (BlobInfo *) NULL); 228 229 WizardAssert(CipherDomain,exception != (ExceptionInfo *) NULL); 229 (void) LogWizardEvent(TraceEvent,GetWizardModule(), 230 (void) LogWizardEvent(TraceEvent,GetWizardModule(),"%s", 230 231 GetBlobFilename(cipher_blob)); 231 232 (void) ResetWizardMemory(key,0,sizeof(key)); -
WizardsToolkit/trunk/wizard/string.c
r319 r511 877 877 878 878 WizardAssert(StringDomain,filename != (const char *) NULL); 879 (void) LogWizardEvent(TraceEvent,GetWizardModule(), filename);879 (void) LogWizardEvent(TraceEvent,GetWizardModule(),"%s",filename); 880 880 WizardAssert(StringDomain,exception != (ExceptionInfo *) NULL); 881 881 return((char *) FileToBlob(filename,extent,&length,exception)); … … 916 916 917 917 WizardAssert(StringDomain,filename != (const char *) NULL); 918 (void) LogWizardEvent(TraceEvent,GetWizardModule(), filename);918 (void) LogWizardEvent(TraceEvent,GetWizardModule(),"%s",filename); 919 919 WizardAssert(StringDomain,exception != (ExceptionInfo *) NULL); 920 920 string_info=AcquireStringInfo(0); -
WizardsToolkit/trunk/wizard/utility.c
r378 r511 46 46 #include "wizard/resource_.h" 47 47 #include "wizard/utility.h" 48 #if defined(WIZARDSTOOLKIT_HAVE_MACH_O_DYLD_H) 49 #include <mach-o/dyld.h> 50 #endif 48 51 49 52 /* -
WizardsToolkit/trunk/wizard/version.h
r411 r511 32 32 #define WizardLibVersionNumber 1,0,1 33 33 #define WizardLibSubversion "-0" 34 #define WizardReleaseDate "2009-1 0-18"34 #define WizardReleaseDate "2009-11-01" 35 35 #define WizardChangeDate "20090428" 36 36 #define WizardAuthoritativeURL "http://www.wizards-toolkit.org"
