Continue to support autotools... for now

alt_setting-error
Benjamin Dobell 2014-11-17 16:05:25 +11:00
parent 1ddfdc1a88
commit ee53613ec1
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
AM_CPPFLAGS = $(DEPS_CFLAGS) -std=c++0x -I../libpit/Source
AM_CPPFLAGS = $(DEPS_CFLAGS) -std=c++0x -I../libpit/Source -DAUTOCONF
STATIC_LIBS = ../libpit/libpit-1.4.a
bin_PROGRAMS = heimdall
heimdall_SOURCES = source/Arguments.cpp \

View File

@ -38,6 +38,10 @@
#else // POSIX Standard Library
#ifdef AUTOCONF
#include "../config.h"
#endif
#include <unistd.h>
#define Sleep(t) usleep(1000*t)