build-sys: include config.h to all files using automake
Do not try to be too smart which compilations need config.h, as most of them will simply because of the config.h has information about system capabilities.
This commit is contained in:
parent
f5bfd27f52
commit
73b7958770
41 changed files with 7 additions and 149 deletions
|
@ -37,10 +37,6 @@
|
|||
#include "FbTk/I18n.hh"
|
||||
#include "FbTk/FbTime.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#ifdef HAVE_CTIME
|
||||
#include <ctime>
|
||||
#else
|
||||
|
|
|
@ -39,10 +39,6 @@
|
|||
#include "FbTk/Util.hh"
|
||||
#include "FbTk/RelCalcHelper.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#ifdef HAVE_CSTDLIB
|
||||
#include <cstdlib>
|
||||
#else
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef DEBUG_HH
|
||||
#define DEBUG_HH
|
||||
|
||||
#include "config.h"
|
||||
#include <iostream>
|
||||
|
||||
#ifdef DEBUG
|
||||
|
|
|
@ -54,11 +54,6 @@
|
|||
#include <string.h>
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#if defined(__EMX__) && defined(HAVE_PROCESS_H)
|
||||
#include <process.h> // for P_NOWAIT
|
||||
#endif // __EMX__
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
#include "config.h"
|
||||
#ifdef HAVE_ICONV
|
||||
#include <iconv.h>
|
||||
#endif // HAVE_ICONV
|
||||
|
|
|
@ -22,12 +22,6 @@
|
|||
#ifndef FBTK_FBTIME_HH
|
||||
#define FBTK_FBTIME_HH
|
||||
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
|
||||
#ifdef HAVE_INTTYPES_H
|
||||
#include <inttypes.h>
|
||||
#endif // HAVE_INTTYPES_H
|
||||
|
|
|
@ -28,10 +28,6 @@
|
|||
#include "App.hh"
|
||||
#include "Transparent.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#include <X11/Xutil.h>
|
||||
#include <X11/Xatom.h>
|
||||
|
||||
|
|
|
@ -22,9 +22,6 @@
|
|||
#ifndef FBTK_FILEUTIL_HH
|
||||
#define FBTK_FILEUTIL_HH
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
#ifdef HAVE_CTIME
|
||||
#include <ctime>
|
||||
#else
|
||||
|
|
|
@ -25,10 +25,6 @@
|
|||
#include "FontImp.hh"
|
||||
#include "App.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
// for antialias
|
||||
#ifdef USE_XFT
|
||||
#include "XftFontImp.hh"
|
||||
|
|
|
@ -24,10 +24,6 @@
|
|||
|
||||
#include <X11/Xlib.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#include "FbString.hh"
|
||||
#include "Color.hh"
|
||||
#include "Orientation.hh"
|
||||
|
|
|
@ -30,11 +30,6 @@
|
|||
|
||||
#include "FbString.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
|
||||
#ifdef HAVE_LOCALE_H
|
||||
#include <locale.h>
|
||||
#endif // HAVE_LOCALE_H
|
||||
|
|
|
@ -23,10 +23,6 @@
|
|||
#include "StringUtil.hh"
|
||||
#include "FileUtil.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#ifdef HAVE_XPM
|
||||
#include "ImageXPM.hh"
|
||||
#endif // HAVE_XPM
|
||||
|
|
|
@ -35,11 +35,6 @@
|
|||
#define _GNU_SOURCE
|
||||
#endif // _GNU_SOURCE
|
||||
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#ifdef HAVE_SYS_TYPES_H
|
||||
#include <sys/types.h>
|
||||
#endif // HAVE_SYS_TYPES_H
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
noinst_LIBRARIES = libFbTk.a
|
||||
|
||||
AM_CPPFLAGS=@CPPFLAGS@
|
||||
AM_CPPFLAGS=-include $(top_builddir)/config.h
|
||||
|
||||
if XFT
|
||||
xft_SOURCE= XftFontImp.hh XftFontImp.cc
|
||||
|
|
|
@ -29,10 +29,6 @@
|
|||
|
||||
#include "Menu.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif //HAVE_CONFIG_H
|
||||
|
||||
#include "MenuItem.hh"
|
||||
#include "MenuSeparator.hh"
|
||||
#include "ImageControl.hh"
|
||||
|
|
|
@ -26,10 +26,6 @@
|
|||
|
||||
#include "NotCopyable.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#include <string>
|
||||
|
||||
/*
|
||||
|
|
|
@ -26,10 +26,6 @@
|
|||
#include "GContext.hh"
|
||||
#include "FbPixmap.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#ifdef HAVE_CSTRING
|
||||
#include <cstring>
|
||||
#else
|
||||
|
|
|
@ -24,10 +24,6 @@
|
|||
#ifndef THEMEITEMS_HH
|
||||
#define THEMEITEMS_HH
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#include "Theme.hh"
|
||||
#include "Color.hh"
|
||||
#include "Texture.hh"
|
||||
|
|
|
@ -29,10 +29,6 @@
|
|||
#include "Command.hh"
|
||||
#include "FbTime.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif //HAVE_CONFIG_H
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace FbTk {
|
||||
|
|
|
@ -23,10 +23,6 @@
|
|||
#include "App.hh"
|
||||
#include "I18n.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#ifdef HAVE_XRENDER
|
||||
#include <X11/extensions/Xrender.h>
|
||||
#endif // HAVE_XRENDER
|
||||
|
|
|
@ -25,10 +25,6 @@
|
|||
|
||||
#include <math.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif //HAVE_CONFIG_H
|
||||
|
||||
namespace FbTk {
|
||||
|
||||
XftFontImp::XftFontImp(const char *name, bool utf8):
|
||||
|
|
|
@ -27,10 +27,6 @@
|
|||
#include "FbPixmap.hh"
|
||||
#include "GContext.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif //HAVE_CONFIG_H
|
||||
|
||||
#ifdef HAVE_SETLOCALE
|
||||
#include <locale.h>
|
||||
#endif // HAVE_SETLOCALE
|
||||
|
|
|
@ -22,10 +22,6 @@
|
|||
#ifndef FBTK_STRINGSTREAM_HH
|
||||
#define FBTK_STRINGSTREAM_HH
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#ifdef HAVE_SSTREAM
|
||||
#include <sstream>
|
||||
#define FbTk_istringstream std::istringstream
|
||||
|
|
|
@ -32,10 +32,6 @@
|
|||
#include "FbTk/ImageControl.hh"
|
||||
#include "FbTk/TextUtils.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#include <X11/Xutil.h>
|
||||
#ifdef SHAPE
|
||||
#include <X11/extensions/shape.h>
|
||||
|
|
|
@ -40,11 +40,6 @@
|
|||
#include "FbTk/AutoReloadHelper.hh"
|
||||
#include "FbTk/STLUtil.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
|
||||
#ifdef HAVE_CCTYPE
|
||||
#include <cctype>
|
||||
#else
|
||||
|
|
|
@ -38,7 +38,7 @@ DEFAULT_WINDOWMENU=@DEFAULT_WINDOWMENU@
|
|||
PROGRAM_PREFIX=@program_prefix@
|
||||
PROGRAM_SUFFIX=@program_suffix@
|
||||
|
||||
AM_CPPFLAGS=
|
||||
AM_CPPFLAGS=-include $(top_builddir)/config.h
|
||||
|
||||
bin_PROGRAMS= fluxbox
|
||||
BUILT_SOURCES = defaults.hh defaults.cc
|
||||
|
|
|
@ -82,10 +82,6 @@
|
|||
#define _GNU_SOURCE
|
||||
#endif // _GNU_SOURCE
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#ifdef USE_SLIT
|
||||
#include "Slit.hh"
|
||||
#include "SlitClient.hh"
|
||||
|
|
|
@ -29,10 +29,6 @@
|
|||
#define _GNU_SOURCE
|
||||
#endif // _GNU_SOURCE
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#include "Screen.hh"
|
||||
#include "ScreenPlacement.hh"
|
||||
#include "FbTk/ImageControl.hh"
|
||||
|
|
|
@ -60,10 +60,6 @@
|
|||
#define _GNU_SOURCE
|
||||
#endif // _GNU_SOURCE
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#include <X11/Xutil.h>
|
||||
#include <X11/keysym.h>
|
||||
|
||||
|
|
|
@ -55,9 +55,6 @@
|
|||
#include "FbTk/Select2nd.hh"
|
||||
#include "FbTk/MemFun.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
#ifdef SHAPE
|
||||
#include <X11/extensions/shape.h>
|
||||
#endif // SHAPE
|
||||
|
|
|
@ -23,10 +23,6 @@
|
|||
|
||||
#include "FbTk/StringUtil.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#ifdef HAVE_CSTDLIB
|
||||
#include <cstdlib>
|
||||
#else
|
||||
|
|
|
@ -41,10 +41,6 @@
|
|||
#define _GNU_SOURCE
|
||||
#endif // _GNU_SOURCE
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#include <X11/Xlib.h>
|
||||
#include <X11/Xatom.h>
|
||||
|
||||
|
|
|
@ -62,10 +62,6 @@
|
|||
#define _GNU_SOURCE
|
||||
#endif // _GNU_SOURCE
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#ifdef USE_EWMH
|
||||
#include "Ewmh.hh"
|
||||
#endif // USE_EWMH
|
||||
|
|
|
@ -41,10 +41,6 @@
|
|||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#ifdef TIME_WITH_SYS_TIME
|
||||
#include <sys/time.h>
|
||||
#include <time.h>
|
||||
|
|
|
@ -20,10 +20,6 @@
|
|||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#include "fluxbox.hh"
|
||||
#include "version.h"
|
||||
#include "defaults.hh"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
AM_CPPFLAGS= -I$(top_srcdir)/src
|
||||
AM_CPPFLAGS= -I$(top_srcdir)/src -include $(top_builddir)/config.h
|
||||
|
||||
noinst_PROGRAMS= \
|
||||
testTexture \
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# util/Makefile.am for Fluxbox
|
||||
SUBDIRS= fbrun
|
||||
AM_CPPFLAGS= -I$(top_srcdir)/src -I$(top_srcdir)/src/FbTk
|
||||
AM_CPPFLAGS= -I$(top_srcdir)/src -I$(top_srcdir)/src/FbTk -include $(top_builddir)/config.h
|
||||
bin_SCRIPTS= fbsetbg fluxbox-generate_menu startfluxbox
|
||||
bin_PROGRAMS= fbsetroot fluxbox-update_configs fluxbox-remote
|
||||
fbsetroot_SOURCES= fbsetroot.cc fbsetroot.hh
|
||||
|
@ -23,10 +23,10 @@ all-local: startfluxbox
|
|||
clean-local:
|
||||
rm -f startfluxbox fluxbox-generate_menu
|
||||
|
||||
fbsetroot.o: fbsetroot.cc ../config.h $(srcdir)/fbsetroot.hh \
|
||||
fbsetroot.o: fbsetroot.cc $(srcdir)/fbsetroot.hh \
|
||||
$(top_srcdir)/src/FbRootWindow.hh $(top_srcdir)/src/FbAtoms.hh
|
||||
|
||||
fluxbox-update_configs.o: fluxbox-update_configs.cc ../config.h \
|
||||
fluxbox-update_configs.o: fluxbox-update_configs.cc \
|
||||
$(top_builddir)/src/defaults.hh
|
||||
|
||||
fluxbox-remote.o: fluxbox-remote.cc
|
||||
|
|
|
@ -27,10 +27,6 @@
|
|||
#include "FbTk/KeyUtil.hh"
|
||||
#include "FbTk/FileUtil.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#ifdef HAVE_XPM
|
||||
#include <X11/xpm.h>
|
||||
#include "fbrun.xpm"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
FLUXBOX_SRC_DIR= ../../src/
|
||||
AM_CPPFLAGS= -I$(top_srcdir)/src -I$(top_srcdir)/src/FbTk
|
||||
AM_CPPFLAGS= -I$(top_srcdir)/src -I$(top_srcdir)/src/FbTk -include $(top_builddir)/config.h
|
||||
bin_PROGRAMS= fbrun
|
||||
fbrun_SOURCES= FbRun.hh FbRun.cc main.cc fbrun.xpm
|
||||
fbrun_LDADD= ${FLUXBOX_SRC_DIR}FbTk/libFbTk.a
|
||||
|
|
|
@ -26,10 +26,6 @@
|
|||
#include "../src/FbTk/GContext.hh"
|
||||
#include "../src/FbRootWindow.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#include <X11/Xatom.h>
|
||||
|
||||
#ifdef HAVE_CSTRING
|
||||
|
|
|
@ -26,10 +26,6 @@
|
|||
|
||||
#include "../src/defaults.hh"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#ifdef HAVE_SIGNAL_H
|
||||
#include <signal.h>
|
||||
#endif // HAVE_SIGNAL_H
|
||||
|
|
Loading…
Reference in a new issue