Changeset 4cb12f80
- Timestamp:
- Jun 3, 2013, 3:46:08 AM (11 years ago)
- Children:
- 2b4122c
- Parents:
- 6383920
- git-author:
- Alex Dehnert <adehnert@mit.edu> (05/29/13 01:42:24)
- git-committer:
- Alex Dehnert <adehnert@mit.edu> (06/03/13 03:46:08)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r0625919 r4cb12f80 10 10 AC_PROG_CC 11 11 AC_PROG_CC_C99 12 13 AC_ARG_WITH([zephyr-default-format], 14 [AS_HELP_STRING([--with-zephyr-default-format], 15 [value for the default format zephyrgram field])], 16 [ 17 case $withval in 18 yes) withval='Config error: see http://mit.edu/df';; 19 no) withval='';; 20 esac 21 zephyr_default_format=$withval 22 ], 23 [zephyr_default_format='Config error: see http://mit.edu/df']) 24 AC_DEFINE_UNQUOTED( 25 [ZEPHYR_DEFAULT_FORMAT], ["$zephyr_default_format"], 26 [Value for the default format zephyrgram field] 27 ) 12 28 13 29 AC_ARG_WITH([stack-protector], -
zephyr.c
r60ae736 r4cb12f80 731 731 if (!owl_zwrite_recip_is_personal(recipient) && *owl_global_get_zsender(&g)) 732 732 notice.z_sender = zsender = long_zuser(owl_global_get_zsender(&g)); 733 notice.z_default_format=zstr( "http://zephyr.1ts.org/wiki/df");733 notice.z_default_format=zstr(ZEPHYR_DEFAULT_FORMAT); 734 734 if (opcode) notice.z_opcode=zstr(opcode); 735 735
Note: See TracChangeset
for help on using the changeset viewer.