Skip to content

Instantly share code, notes, and snippets.

@michaelb42
Created February 28, 2015 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelb42/ba2696f0e96027f6a214 to your computer and use it in GitHub Desktop.
Save michaelb42/ba2696f0e96027f6a214 to your computer and use it in GitHub Desktop.
e6: watch IO changes requires full featured I/O #387
diff --git a/config.in b/config.in
index 7756fcb..ab1c676 100644
--- a/config.in
+++ b/config.in
@@ -307,9 +307,11 @@ comment "I/O"
Simple PORTIO_SCHEME
if [ x"$PORTIO_SCHEME" = x"PORTIO_SIMPLE" ]; then
- define_bool PORTIO_SIMPLE_SUPPORT y;
+ define_bool PORTIO_SIMPLE_SUPPORT y
+ define_bool PORTIO_SUPPORT n
elif [ x"$PORTIO_SCHEME" = x"PORTIO_FULL_FEATURED" ]; then
- define_bool PORTIO_SUPPORT y;
+ define_bool PORTIO_SIMPLE_SUPPORT n
+ define_bool PORTIO_SUPPORT y
fi
source core/portio/config.in
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment