From: Joel Rosdahl Date: Sun, 29 Aug 2010 09:54:08 +0000 (+0200) Subject: Introduce system.h X-Git-Tag: v3.1~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d8880584ec1c184edca4676e4f1a51eac75526d6;p=thirdparty%2Fccache.git Introduce system.h --- diff --git a/ccache.h b/ccache.h index 0272a52ad..1b0cde05a 100644 --- a/ccache.h +++ b/ccache.h @@ -1,18 +1,10 @@ #ifndef CCACHE_H #define CCACHE_H -#include "config.h" +#include "system.h" #include "mdfour.h" #include "counters.h" -#include -#include -#include -#include -#include -#include -#include - #ifdef __GNUC__ #define ATTR_FORMAT(x, y, z) __attribute__((format (x, y, z))) #else diff --git a/dev.mk.in b/dev.mk.in index 4f0af54d4..5e31a8fc7 100644 --- a/dev.mk.in +++ b/dev.mk.in @@ -23,7 +23,7 @@ built_dist_files = $(generated_docs) headers = \ ccache.h hashtable.h hashtable_itr.h hashtable_private.h hashutil.h \ manifest.h mdfour.h counters.h murmurhashneutral2.h getopt_long.h \ - language.h \ + language.h system.h \ test/framework.h test/suites.h test/util.h files_to_clean += *.tar.bz2 *.tar.gz *.xml .deps/* diff --git a/system.h b/system.h new file mode 100644 index 000000000..cc50b1d09 --- /dev/null +++ b/system.h @@ -0,0 +1,34 @@ +/* + * Copyright (C) 2010 Joel Rosdahl + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation; either version 3 of the License, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program; if not, write to the Free Software Foundation, Inc., 51 + * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef CCACHE_SYSTEM_H +#define CCACHE_SYSTEM_H + +#include "config.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#endif /* CCACHE_SYSTEM_H */