Changeset 6f3d6b4 for configure.ac


Ignore:
Timestamp:
Jun 20, 2013, 6:29:18 AM (12 years ago)
Author:
Alex Dehnert <adehnert@mit.edu>
Parents:
80d7b44 (diff), 41be145 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:
Merge 41be1452560325a95bf9c887f2343e493eacfc05 into 80d7b445c48a5c63361e0ae972d0b0264d54ed65
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r0625919 r80d7b44  
    1010AC_PROG_CC
    1111AC_PROG_CC_C99
     12
     13AC_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'])
     24AC_DEFINE_UNQUOTED(
     25    [ZEPHYR_DEFAULT_FORMAT], ["$zephyr_default_format"],
     26    [Value for the default format zephyrgram field]
     27)
    1228
    1329AC_ARG_WITH([stack-protector],
Note: See TracChangeset for help on using the changeset viewer.