X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=configure.in;h=4cb736b35b07a5f32347689081562f9d6dd698cf;hb=324c546ec931717cb4a2aa705ae1c943b4b89604;hp=b66262621374bdd6727c1900ec22cc9a78962441;hpb=9dce29780589f6f9bf101a3306ec39d6ae8a0e45;p=fw%2Fsdcc diff --git a/configure.in b/configure.in index b6626262..4cb736b3 100755 --- a/configure.in +++ b/configure.in @@ -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]))