* support/Util/SDCCerr.c: added warning "integer overflow in expression"
[fw/sdcc] / configure.in
index ca9c157fc2d0ce6f21ed7b8ce83e4b0a01ff9c20..4cb736b35b07a5f32347689081562f9d6dd698cf 100755 (executable)
@@ -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]))