mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-25 14:01:33 -08:00
Dongle configuration
Copied from Perforce Change: 21323 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
67368ac7c7
commit
6ec3ef7e79
1 changed files with 22 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
/* impl.h.config: MPS CONFIGURATION
|
||||
*
|
||||
* $HopeName: MMsrc!config.h(trunk.38) $
|
||||
* $HopeName: MMsrc!config.h(trunk.39) $
|
||||
* Copyright (C) 2000 Harlequin Limited. All rights reserved.
|
||||
*
|
||||
* PURPOSE
|
||||
|
|
@ -253,6 +253,7 @@
|
|||
/* .nosync.why: ScriptWorks is single-threaded when using the MM. */
|
||||
#define THREAD_SINGLE
|
||||
#define PROTECTION_NONE
|
||||
#define DONGLE_NONE
|
||||
|
||||
#elif defined(CONFIG_PROD_DYLAN)
|
||||
#define MPS_PROD_STRING "dylan"
|
||||
|
|
@ -265,6 +266,7 @@
|
|||
#define ARENA_INIT_SPARE_COMMIT_LIMIT ((Size)10uL*1024uL*1024uL)
|
||||
#define THREAD_MULTI
|
||||
#define PROTECTION
|
||||
#define DONGLE_NONE
|
||||
|
||||
#elif defined(CONFIG_PROD_CONFIGURA)
|
||||
#define MPS_PROD_STRING "configura"
|
||||
|
|
@ -272,6 +274,9 @@
|
|||
#define ARENA_INIT_SPARE_COMMIT_LIMIT ((Size)10uL*1024uL*1024uL)
|
||||
#define THREAD_SINGLE
|
||||
#define PROTECTION
|
||||
#define DONGLE
|
||||
/* global dongles have customerID 0 */
|
||||
#define DONGLE_CUSTOMER_ID ((int)1)
|
||||
|
||||
#elif defined(CONFIG_PROD_MPS)
|
||||
#define MPS_PROD_STRING "mps"
|
||||
|
|
@ -279,10 +284,26 @@
|
|||
#define ARENA_INIT_SPARE_COMMIT_LIMIT ((Size)10uL*1024uL*1024uL)
|
||||
#define THREAD_MULTI
|
||||
#define PROTECTION
|
||||
#define DONGLE_NONE
|
||||
|
||||
#else
|
||||
#error "No target product configured."
|
||||
#endif
|
||||
|
||||
|
||||
/* Dongle configuration */
|
||||
|
||||
#if defined(DONGLE)
|
||||
|
||||
#define DONGLE_TEST_FREQUENCY ((unsigned int)4000)
|
||||
|
||||
#elif defined(DONGLE_NONE)
|
||||
|
||||
/* nothing to do */
|
||||
|
||||
#else
|
||||
#error "No dongle configured."
|
||||
#endif
|
||||
|
||||
|
||||
#endif /* config_h */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue