Diff for /embedaddon/pcre/sljit/sljitConfig.h between versions 1.1.1.1 and 1.1.1.3

version 1.1.1.1, 2012/02/21 23:05:52 version 1.1.1.3, 2012/10/09 09:19:18
Line 1 Line 1
 /*  /*
  *    Stack-less Just-In-Time compiler   *    Stack-less Just-In-Time compiler
  *   *
 *    Copyright 2009-2010 Zoltan Herczeg (hzmester@freemail.hu). All rights reserved. *    Copyright 2009-2012 Zoltan Herczeg (hzmester@freemail.hu). All rights reserved.
  *   *
  * Redistribution and use in source and binary forms, with or without modification, are   * Redistribution and use in source and binary forms, with or without modification, are
  * permitted provided that the following conditions are met:   * permitted provided that the following conditions are met:
Line 28 Line 28
 #define _SLJIT_CONFIG_H_  #define _SLJIT_CONFIG_H_
   
 /* --------------------------------------------------------------------- */  /* --------------------------------------------------------------------- */
   /*  Custom defines                                                       */
   /* --------------------------------------------------------------------- */
   
   /* Put your custom defines here. This empty section will never change
      which helps maintaining patches (with diff / patch utilities). */
   
   /* --------------------------------------------------------------------- */
 /*  Architecture                                                         */  /*  Architecture                                                         */
 /* --------------------------------------------------------------------- */  /* --------------------------------------------------------------------- */
   
/* Architecture selection *//* Architecture selection. */
 /* #define SLJIT_CONFIG_X86_32 1 */  /* #define SLJIT_CONFIG_X86_32 1 */
 /* #define SLJIT_CONFIG_X86_64 1 */  /* #define SLJIT_CONFIG_X86_64 1 */
 /* #define SLJIT_CONFIG_ARM_V5 1 */  /* #define SLJIT_CONFIG_ARM_V5 1 */
Line 58 Line 65
 #ifndef SLJIT_UTIL_STACK  #ifndef SLJIT_UTIL_STACK
 /* Enabled by default */  /* Enabled by default */
 #define SLJIT_UTIL_STACK 1  #define SLJIT_UTIL_STACK 1
   #endif
   
   /* Single threaded application. Does not require any locks. */
   #ifndef SLJIT_SINGLE_THREADED
   /* Disabled by default. */
   #define SLJIT_SINGLE_THREADED 0
 #endif  #endif
   
 /* --------------------------------------------------------------------- */  /* --------------------------------------------------------------------- */

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>