X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=configure.in;h=4cb736b35b07a5f32347689081562f9d6dd698cf;hb=16aaa8127d4fa2e9b897afd6688479f8658f3194;hp=ca9c157fc2d0ce6f21ed7b8ce83e4b0a01ff9c20;hpb=339bf716b650ad0f0e14dc0084167bc99e0bf6e5;p=fw%2Fsdcc diff --git a/configure.in b/configure.in index ca9c157f..4cb736b3 100755 --- a/configure.in +++ b/configure.in @@ -560,7 +560,7 @@ AC_ARG_ENABLE(ds400-port, [Excludes the DS400 port])) echo ds400 >>ports.all if test "$enable_ds400_port" = "no"; then - AC_DEFINE_UNQUOTED(OPT_DISABLE_DS300, 1) + AC_DEFINE_UNQUOTED(OPT_DISABLE_DS400, 1) else echo ds400 >>ports.build AC_DEFINE_UNQUOTED(OPT_DISABLE_DS400, 0) @@ -577,6 +577,17 @@ else AC_DEFINE_UNQUOTED(OPT_DISABLE_PIC, 0) fi +AC_ARG_ENABLE(pic16-port, + AC_HELP_STRING([--disable-pic16-port], + [Excludes the PIC port])) +echo pic16 >>ports.all +if test "$enable_pic16_port" = "no"; then + AC_DEFINE_UNQUOTED(OPT_DISABLE_PIC16, 1) +else + echo pic16 >>ports.build + AC_DEFINE_UNQUOTED(OPT_DISABLE_PIC16, 0) +fi + AC_ARG_ENABLE(xa51-port, AC_HELP_STRING([--disable-xa51-port], [Excludes the XA51 port]))