~ubuntu-branches/ubuntu/quantal/nspr/quantal-security

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/include/prlog.h

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-10 11:34:26 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810113426-3uv4diflrkcbdimm
Tags: 4.8-0ubuntu1
* New upstream release: 4.8 (LP: #387812)
* adjust patches to changed upstreanm codebase
  - update debian/patches/99_configure.patch
* update shlibs symbols to include new API elements
  - update debian/libnspr4-0d.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
*/
190
190
NSPR_API(void) PR_LogFlush(void);
191
191
 
192
 
/*
193
 
** Windoze 16 can't support a large static string space for all of the
194
 
** various debugging strings so logging is not enabled for it.
195
 
*/
196
 
#if (defined(DEBUG) || defined(FORCE_PR_LOG)) && !defined(WIN16)
 
192
#if defined(DEBUG) || defined(FORCE_PR_LOG)
197
193
#define PR_LOGGING 1
198
194
 
199
195
#define PR_LOG_TEST(_module,_level) \
213
209
      }                     \
214
210
    PR_END_MACRO
215
211
 
216
 
#else /* (defined(DEBUG) || defined(FORCE_PR_LOG)) && !defined(WIN16) */
 
212
#else /* defined(DEBUG) || defined(FORCE_PR_LOG) */
217
213
 
218
214
#undef PR_LOGGING
219
215
#define PR_LOG_TEST(module,level) 0
220
216
#define PR_LOG(module,level,args)
221
217
 
222
 
#endif /* (defined(DEBUG) || defined(FORCE_PR_LOG)) && !defined(WIN16) */
 
218
#endif /* defined(DEBUG) || defined(FORCE_PR_LOG) */
223
219
 
224
220
#ifndef NO_NSPR_10_SUPPORT
225
221