diff options
author | Pali Rohár <pali.rohar@gmail.com> | 2012-08-11 11:12:58 +0200 |
---|---|---|
committer | Pali Rohár <pali.rohar@gmail.com> | 2012-08-11 11:12:58 +0200 |
commit | 83bcb7358c6475468db639cd47ef6e4f4e9dbee3 (patch) | |
tree | 2d180188cabeebcaaa6f116f4aef688e0041822d /src/console.c | |
parent | 67d3e4de708620d0e129c313ecccecd5893b5df3 (diff) | |
download | 0xFFFF-83bcb7358c6475468db639cd47ef6e4f4e9dbee3.tar.bz2 |
Rewrite Makefile, move WITH_DEVICE, WITH_USB and WITH_SQUEUES to Makefile
Diffstat (limited to 'src/console.c')
-rw-r--r-- | src/console.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/console.c b/src/console.c index 1b1d723..011b371 100644 --- a/src/console.c +++ b/src/console.c @@ -17,7 +17,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#if HAVE_USB +#if WITH_USB #include <stdio.h> #include <string.h> @@ -25,6 +25,8 @@ #include <getopt.h> #include <unistd.h> +#include <global.h> + #include "console.h" #include "nolo.h" #include "dump.h" |