#ifndef MYLOCALENV
#define MYLOCALENV デフォルト値
#endif
をヘッダファイルに入れておくか、

#ifdef MYLOCALENV
#if MYLOCALENV == 0
/* MYLOCALENVが空または0と定義 */
#elif MYLOCALENV == 1
/* MYLOCALENVが1と定義 */
#endif
#else
/* MYLOCALENVが未定義 */
#endif

ならおk?