From 1f20527f6f62f1e0e67bd5534c72631df3fa4650 Mon Sep 17 00:00:00 2001 From: lindahl Date: Fri, 23 Jan 2004 18:11:01 +0000 Subject: [PATCH] Fixed inclusion of config.h --- src/tools/addconf.c | 5 ++++- src/tools/autocorr.c | 5 ++++- src/tools/average.c | 5 ++++- src/tools/bondlist.c | 5 ++++- src/tools/calcpot.c | 5 ++++- src/tools/g_gyrate.c | 6 +++++- src/tools/g_h2order.c | 6 +++++- src/tools/g_hbond.c | 5 ++++- src/tools/g_helix.c | 6 +++++- src/tools/g_lie.c | 6 +++++- src/tools/g_mdmat.c | 6 +++++- src/tools/g_mindist.c | 6 +++++- src/tools/g_morph.c | 6 ++++-- src/tools/g_msd.c | 7 +++++-- src/tools/g_multipoles.c | 6 +++++- src/tools/g_nmeig.c | 6 +++++- src/tools/g_nmens.c | 6 +++++- src/tools/g_order.c | 6 +++++- src/tools/g_potential.c | 6 +++++- src/tools/g_rama.c | 5 ++++- src/tools/g_rdf.c | 5 ++++- src/tools/g_relax.c | 5 ++++- src/tools/g_rms.c | 6 +++++- src/tools/g_rmsdist.c | 6 +++++- src/tools/g_rmsf.c | 5 ++++- src/tools/g_rotacf.c | 5 ++++- src/tools/g_traj.c | 5 ++++- src/tools/genbox.c | 6 +++++- src/tools/genconf.c | 5 ++++- src/tools/gendr.c | 5 ++++- src/tools/genion.c | 5 ++++- src/tools/genpr.c | 5 ++++- src/tools/gmx-ana.c | 4 ++++ src/tools/hxprops.c | 6 +++++- src/tools/levenmar.c | 6 +++++- src/tools/lsq.c | 5 ++++- src/tools/luck.c | 5 ++++- src/tools/make_ndx.c | 5 ++++- src/tools/mcprop.c | 5 ++++- src/tools/mk_angndx.c | 5 ++++- src/tools/my_rdf.c | 5 ++++- src/tools/nsc.c | 5 ++++- src/tools/orise.c | 6 +++++- src/tools/pinput.c | 5 ++++- src/tools/polynomials.c | 5 ++++- src/tools/pp2shift.c | 5 ++++- src/tools/proptim.c | 5 ++++- src/tools/ql77.c | 5 ++++- src/tools/readev.c | 5 ++++- src/tools/recomb.c | 5 ++++- src/tools/residues.c | 5 ++++- src/tools/sas2mat.c | 6 +++++- src/tools/smooth.c | 5 ++++- src/tools/testacf.c | 5 ++++- src/tools/trjcat.c | 5 ++++- src/tools/trjconv.c | 1 - src/tools/trjorder.c | 5 ++++- src/tools/wheel.c | 5 ++++- src/tools/xpm2ps.c | 5 ++++- 59 files changed, 251 insertions(+), 60 deletions(-) diff --git a/src/tools/addconf.c b/src/tools/addconf.c index e0ebdc0905..2ce3d1cadc 100644 --- a/src/tools/addconf.c +++ b/src/tools/addconf.c @@ -33,9 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" #include "vec.h" #include "assert.h" #include "macros.h" diff --git a/src/tools/autocorr.c b/src/tools/autocorr.c index 852a773b4a..48aa3f7699 100644 --- a/src/tools/autocorr.c +++ b/src/tools/autocorr.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" #include #include "macros.h" #include "typedefs.h" diff --git a/src/tools/average.c b/src/tools/average.c index e8cf2c23ad..7ce9c1cd1e 100644 --- a/src/tools/average.c +++ b/src/tools/average.c @@ -33,9 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" #include "string2.h" #include "smalloc.h" #include "statutil.h" diff --git a/src/tools/bondlist.c b/src/tools/bondlist.c index 48c5938944..a4b4d5e1c5 100644 --- a/src/tools/bondlist.c +++ b/src/tools/bondlist.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include "cdist.h" -#include "config.h" typedef struct list { char *residue; diff --git a/src/tools/calcpot.c b/src/tools/calcpot.c index a2bc7b7c9d..8b1fdb282f 100644 --- a/src/tools/calcpot.c +++ b/src/tools/calcpot.c @@ -33,7 +33,10 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include +#endif + #include "vec.h" #include "calcpot.h" #include "nrnb.h" diff --git a/src/tools/g_gyrate.c b/src/tools/g_gyrate.c index 0614375a3d..05fa4dc758 100644 --- a/src/tools/g_gyrate.c +++ b/src/tools/g_gyrate.c @@ -33,9 +33,13 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" + #include "statutil.h" #include "sysstuff.h" #include "typedefs.h" diff --git a/src/tools/g_h2order.c b/src/tools/g_h2order.c index c2cab60589..8ee9d8b242 100644 --- a/src/tools/g_h2order.c +++ b/src/tools/g_h2order.c @@ -33,8 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" + #include "sysstuff.h" #include "string.h" #include "typedefs.h" diff --git a/src/tools/g_hbond.c b/src/tools/g_hbond.c index 1511669ff2..85bb37822b 100644 --- a/src/tools/g_hbond.c +++ b/src/tools/g_hbond.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif #include -#include "config.h" + #include "statutil.h" #include "copyrite.h" #include "sysstuff.h" diff --git a/src/tools/g_helix.c b/src/tools/g_helix.c index d6f4a6fd1c..e02c9157cb 100644 --- a/src/tools/g_helix.c +++ b/src/tools/g_helix.c @@ -33,8 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" + #include "confio.h" #include "copyrite.h" #include "fatal.h" diff --git a/src/tools/g_lie.c b/src/tools/g_lie.c index a548494a11..bdcab7a215 100644 --- a/src/tools/g_lie.c +++ b/src/tools/g_lie.c @@ -33,11 +33,15 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include #include -#include "config.h" + #include "statutil.h" #include "sysstuff.h" #include "typedefs.h" diff --git a/src/tools/g_mdmat.c b/src/tools/g_mdmat.c index f349145648..2e82bbba9a 100644 --- a/src/tools/g_mdmat.c +++ b/src/tools/g_mdmat.c @@ -33,9 +33,13 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" + #include "macros.h" #include "vec.h" #include "sysstuff.h" diff --git a/src/tools/g_mindist.c b/src/tools/g_mindist.c index 7f2b01970e..6d92ef8df2 100644 --- a/src/tools/g_mindist.c +++ b/src/tools/g_mindist.c @@ -33,9 +33,13 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" + #include "sysstuff.h" #include "string.h" #include "typedefs.h" diff --git a/src/tools/g_morph.c b/src/tools/g_morph.c index 644bcbc21e..357f1b5bb6 100644 --- a/src/tools/g_morph.c +++ b/src/tools/g_morph.c @@ -33,8 +33,10 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ -#include "config.h" -#include "confio.h" +#ifdef HAVE_CONFIG_H +#include +#endif + #include "statutil.h" #include "smalloc.h" #include "macros.h" diff --git a/src/tools/g_msd.c b/src/tools/g_msd.c index 01149633d0..02c1016ae9 100644 --- a/src/tools/g_msd.c +++ b/src/tools/g_msd.c @@ -33,11 +33,14 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ - +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include -#include "config.h" + #include "sysstuff.h" #include "smalloc.h" #include "macros.h" diff --git a/src/tools/g_multipoles.c b/src/tools/g_multipoles.c index bfdd48db49..63138e2bf8 100644 --- a/src/tools/g_multipoles.c +++ b/src/tools/g_multipoles.c @@ -33,8 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" + #include "statutil.h" #include "macros.h" #include "tpxio.h" diff --git a/src/tools/g_nmeig.c b/src/tools/g_nmeig.c index e9592f5e83..b9b5b90a53 100644 --- a/src/tools/g_nmeig.c +++ b/src/tools/g_nmeig.c @@ -33,9 +33,13 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" + #include "statutil.h" #include "sysstuff.h" #include "typedefs.h" diff --git a/src/tools/g_nmens.c b/src/tools/g_nmens.c index e54f8c3251..690a7df833 100644 --- a/src/tools/g_nmens.c +++ b/src/tools/g_nmens.c @@ -33,9 +33,13 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" + #include "statutil.h" #include "sysstuff.h" #include "typedefs.h" diff --git a/src/tools/g_order.c b/src/tools/g_order.c index 43522e261f..1811f667a7 100644 --- a/src/tools/g_order.c +++ b/src/tools/g_order.c @@ -33,9 +33,13 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" + #include "sysstuff.h" #include "string.h" #include "typedefs.h" diff --git a/src/tools/g_potential.c b/src/tools/g_potential.c index 22ee5e090c..a8e664c26a 100644 --- a/src/tools/g_potential.c +++ b/src/tools/g_potential.c @@ -33,9 +33,13 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" + #include "sysstuff.h" #include "string.h" #include "typedefs.h" diff --git a/src/tools/g_rama.c b/src/tools/g_rama.c index 8a6036f390..e5c6b9f81d 100644 --- a/src/tools/g_rama.c +++ b/src/tools/g_rama.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" #include "sysstuff.h" #include "string.h" #include "typedefs.h" diff --git a/src/tools/g_rdf.c b/src/tools/g_rdf.c index ec1d6ddb5a..b41098a607 100644 --- a/src/tools/g_rdf.c +++ b/src/tools/g_rdf.c @@ -33,9 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" #include "string2.h" #include "sysstuff.h" #include "typedefs.h" diff --git a/src/tools/g_relax.c b/src/tools/g_relax.c index 45378e9a06..8fda603827 100644 --- a/src/tools/g_relax.c +++ b/src/tools/g_relax.c @@ -33,9 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" #include "sysstuff.h" #include "string.h" #include "typedefs.h" diff --git a/src/tools/g_rms.c b/src/tools/g_rms.c index 9064cc2748..3bc2e8c22c 100644 --- a/src/tools/g_rms.c +++ b/src/tools/g_rms.c @@ -33,7 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include +#endif + + #include "smalloc.h" #include "math.h" #include "macros.h" diff --git a/src/tools/g_rmsdist.c b/src/tools/g_rmsdist.c index 6deaa8c2ab..fe3cba5d1c 100644 --- a/src/tools/g_rmsdist.c +++ b/src/tools/g_rmsdist.c @@ -33,9 +33,13 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" + #include "macros.h" #include "smalloc.h" #include "typedefs.h" diff --git a/src/tools/g_rmsf.c b/src/tools/g_rmsf.c index e85d5645ec..9b83a97211 100644 --- a/src/tools/g_rmsf.c +++ b/src/tools/g_rmsf.c @@ -33,7 +33,10 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include +#endif + #include "smalloc.h" #include "math.h" #include "macros.h" diff --git a/src/tools/g_rotacf.c b/src/tools/g_rotacf.c index 10d873f5ff..396dbe95c3 100644 --- a/src/tools/g_rotacf.c +++ b/src/tools/g_rotacf.c @@ -33,9 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" #include "sysstuff.h" #include "physics.h" #include "typedefs.h" diff --git a/src/tools/g_traj.c b/src/tools/g_traj.c index eb1a8e1075..9f106fb16b 100644 --- a/src/tools/g_traj.c +++ b/src/tools/g_traj.c @@ -33,9 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" #include "statutil.h" #include "sysstuff.h" #include "typedefs.h" diff --git a/src/tools/genbox.c b/src/tools/genbox.c index 635dcb2581..df4eeb8ff8 100644 --- a/src/tools/genbox.c +++ b/src/tools/genbox.c @@ -33,7 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include +#endif + + #include "sysstuff.h" #include "typedefs.h" #include "smalloc.h" diff --git a/src/tools/genconf.c b/src/tools/genconf.c index 91e0110d0b..cea3dcfe73 100644 --- a/src/tools/genconf.c +++ b/src/tools/genconf.c @@ -33,7 +33,10 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include +#endif + #include "maths.h" #include "macros.h" #include "copyrite.h" diff --git a/src/tools/gendr.c b/src/tools/gendr.c index 7b5ffd0234..b7fdacc167 100644 --- a/src/tools/gendr.c +++ b/src/tools/gendr.c @@ -33,10 +33,13 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include -#include "config.h" #include "string2.h" #include "strdb.h" #include "typedefs.h" diff --git a/src/tools/genion.c b/src/tools/genion.c index bc984ea51e..616b440f95 100644 --- a/src/tools/genion.c +++ b/src/tools/genion.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" #include "copyrite.h" #include "string2.h" #include "smalloc.h" diff --git a/src/tools/genpr.c b/src/tools/genpr.c index abfa2c11eb..870480ba95 100644 --- a/src/tools/genpr.c +++ b/src/tools/genpr.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" #include "sysstuff.h" #include "statutil.h" #include "string.h" diff --git a/src/tools/gmx-ana.c b/src/tools/gmx-ana.c index 258cd195ee..8f3fc3e86d 100644 --- a/src/tools/gmx-ana.c +++ b/src/tools/gmx-ana.c @@ -1,4 +1,8 @@ /* This file was generated by a gmx-ana.pl. Do not modify */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include diff --git a/src/tools/hxprops.c b/src/tools/hxprops.c index 608d9153da..b1f25ad28e 100644 --- a/src/tools/hxprops.c +++ b/src/tools/hxprops.c @@ -33,9 +33,13 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" + #include "macros.h" #include "physics.h" #include "vec.h" diff --git a/src/tools/levenmar.c b/src/tools/levenmar.c index aea3ecfe8f..77e49c3a0b 100644 --- a/src/tools/levenmar.c +++ b/src/tools/levenmar.c @@ -33,10 +33,14 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include -#include "config.h" + #include "types/simple.h" static void nrerror(char error_text[], bool bExit) diff --git a/src/tools/lsq.c b/src/tools/lsq.c index 8745be5961..bb94ebf8fe 100644 --- a/src/tools/lsq.c +++ b/src/tools/lsq.c @@ -33,7 +33,10 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include +#endif + #include "typedefs.h" #include "gstat.h" #include "vec.h" diff --git a/src/tools/luck.c b/src/tools/luck.c index caa1ee3edf..a6ff6b4b15 100644 --- a/src/tools/luck.c +++ b/src/tools/luck.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" #include "copyrite.h" #include "string.h" diff --git a/src/tools/make_ndx.c b/src/tools/make_ndx.c index 634ab657dc..fecbddb470 100644 --- a/src/tools/make_ndx.c +++ b/src/tools/make_ndx.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" #include "sysstuff.h" #include "strdb.h" #include "futil.h" diff --git a/src/tools/mcprop.c b/src/tools/mcprop.c index 148756d3f8..80cb85b8b6 100644 --- a/src/tools/mcprop.c +++ b/src/tools/mcprop.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" #include "typedefs.h" #include "random.h" #include "mcprop.h" diff --git a/src/tools/mk_angndx.c b/src/tools/mk_angndx.c index a892e39f85..5e9a4eee46 100644 --- a/src/tools/mk_angndx.c +++ b/src/tools/mk_angndx.c @@ -33,7 +33,10 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include +#endif + #include "typedefs.h" #include "smalloc.h" #include "copyrite.h" diff --git a/src/tools/my_rdf.c b/src/tools/my_rdf.c index 644240e2f5..8acb9e11ee 100644 --- a/src/tools/my_rdf.c +++ b/src/tools/my_rdf.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" #include "sysstuff.h" #include "string.h" #include "typedefs.h" diff --git a/src/tools/nsc.c b/src/tools/nsc.c index b05701caf8..f9ba519c1b 100644 --- a/src/tools/nsc.c +++ b/src/tools/nsc.c @@ -33,13 +33,16 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include #include #include /* Modified DvdS */ -#include "config.h" #include "pbc.h" #include "macros.h" #include "vec.h" diff --git a/src/tools/orise.c b/src/tools/orise.c index db6afd4357..eda1e99163 100644 --- a/src/tools/orise.c +++ b/src/tools/orise.c @@ -33,7 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include +#endif + + #include "typedefs.h" #include "maths.h" #include "string2.h" diff --git a/src/tools/pinput.c b/src/tools/pinput.c index c4542eac4c..e2f2704a35 100644 --- a/src/tools/pinput.c +++ b/src/tools/pinput.c @@ -33,7 +33,10 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include +#endif + #include "paramio.h" #include "pinput.h" diff --git a/src/tools/polynomials.c b/src/tools/polynomials.c index dcdba90529..365c2ec856 100644 --- a/src/tools/polynomials.c +++ b/src/tools/polynomials.c @@ -33,9 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" #include "typedefs.h" #include "fatal.h" #include "gstat.h" diff --git a/src/tools/pp2shift.c b/src/tools/pp2shift.c index 020c7a215b..b953ac9191 100644 --- a/src/tools/pp2shift.c +++ b/src/tools/pp2shift.c @@ -33,9 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" #include "typedefs.h" #include "futil.h" #include "macros.h" diff --git a/src/tools/proptim.c b/src/tools/proptim.c index effa8b81e0..c0a5565f75 100644 --- a/src/tools/proptim.c +++ b/src/tools/proptim.c @@ -33,7 +33,10 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include +#endif + #include "typedefs.h" #include "maths.h" #include "string2.h" diff --git a/src/tools/ql77.c b/src/tools/ql77.c index 76b6463ad1..27c9d0163d 100644 --- a/src/tools/ql77.c +++ b/src/tools/ql77.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" #include "typedefs.h" #include "vec.h" #include "smalloc.h" diff --git a/src/tools/readev.c b/src/tools/readev.c index 1a6ac760b1..d593f00965 100644 --- a/src/tools/readev.c +++ b/src/tools/readev.c @@ -33,7 +33,10 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include +#endif + #include "readev.h" #include "futil.h" #include "smalloc.h" diff --git a/src/tools/recomb.c b/src/tools/recomb.c index bf1bbd4ffb..abcc0dc1c7 100644 --- a/src/tools/recomb.c +++ b/src/tools/recomb.c @@ -33,7 +33,10 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include +#endif + #include "recomb.h" #include "futil.h" #include "wgms.h" diff --git a/src/tools/residues.c b/src/tools/residues.c index 03dffdb352..0480b29d5b 100644 --- a/src/tools/residues.c +++ b/src/tools/residues.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif #include -#include "config.h" + #include "assert.h" #include "cdist.h" #include "names.h" diff --git a/src/tools/sas2mat.c b/src/tools/sas2mat.c index 70dfe0d237..ff262dc362 100644 --- a/src/tools/sas2mat.c +++ b/src/tools/sas2mat.c @@ -33,8 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" + #include "sysstuff.h" #include "matio.h" #include "copyrite.h" diff --git a/src/tools/smooth.c b/src/tools/smooth.c index 00c1bc05fd..b45267d79f 100644 --- a/src/tools/smooth.c +++ b/src/tools/smooth.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include "cdist.h" -#include "config.h" #define NMRLEN 99.9 #define OVERLAP(a_lb,a_ub,b_lb,b_ub) !((a_ub)<(b_lb)) || ((b_ub)<(a_lb)) diff --git a/src/tools/testacf.c b/src/tools/testacf.c index b13f09a8e8..e15f66b4f6 100644 --- a/src/tools/testacf.c +++ b/src/tools/testacf.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" #include "typedefs.h" #include "xvgr.h" #include "gstat.h" diff --git a/src/tools/trjcat.c b/src/tools/trjcat.c index ce8efe51c5..95bb4db331 100644 --- a/src/tools/trjcat.c +++ b/src/tools/trjcat.c @@ -33,9 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" #include "macros.h" #include "sysstuff.h" #include "smalloc.h" diff --git a/src/tools/trjconv.c b/src/tools/trjconv.c index 2f68b6b8fe..18f6eb3d3c 100644 --- a/src/tools/trjconv.c +++ b/src/tools/trjconv.c @@ -39,7 +39,6 @@ #include #include -#include "config.h" #include "macros.h" #include "sysstuff.h" #include "smalloc.h" diff --git a/src/tools/trjorder.c b/src/tools/trjorder.c index 29cdf755da..ec555eacf8 100644 --- a/src/tools/trjorder.c +++ b/src/tools/trjorder.c @@ -33,9 +33,12 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -#include "config.h" #include "statutil.h" #include "sysstuff.h" #include "typedefs.h" diff --git a/src/tools/wheel.c b/src/tools/wheel.c index 36e446b147..2cbe9cdb0c 100644 --- a/src/tools/wheel.c +++ b/src/tools/wheel.c @@ -33,10 +33,13 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include -#include "config.h" #include "sysstuff.h" #include "physics.h" #include "string2.h" diff --git a/src/tools/xpm2ps.c b/src/tools/xpm2ps.c index 1ac9b59e5f..4e11f47c0d 100644 --- a/src/tools/xpm2ps.c +++ b/src/tools/xpm2ps.c @@ -33,8 +33,11 @@ * And Hey: * Green Red Orange Magenta Azure Cyan Skyblue */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include "config.h" #include "string2.h" #include "copyrite.h" #include "typedefs.h" -- 2.11.4.GIT