PaulTaykalo / iphone-exif

Automatically exported from code.google.com/p/iphone-exif
0 stars 0 forks source link

Source 0.9 requires gLogging variable declared in order to link correctly #8

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. svn checkout of the source
2. copy all *.h and *.m into your personal project

_gLogging can't be found.

just managed the definition in EXFLogging.h
from:
#define Debug(FMT,...)  if(!gLogging) ; else  NSLog(@"DEBUG: " FMT, 
##__VA_ARGS__)

to:
#define Debug(FMT,...)  if(1 == 2) ; else  NSLog(@"DEBUG: " FMT, ##__VA_ARGS__)

not so elegant as solution, but it works for tests.

Original issue reported on code.google.com by brond...@gmail.com on 30 Dec 2009 at 8:16

GoogleCodeExporter commented 9 years ago
This "feature" described in documentation, read it first.

Original comment by ReznikSA on 19 Mar 2010 at 4:45