diff options
author | Rafael Avila de Espindola <espindola@google.com> | 2009-04-30 08:05:31 +0000 |
---|---|---|
committer | Rafael Espindola <espindola@gcc.gnu.org> | 2009-04-30 08:05:31 +0000 |
commit | 0acbbdb04f5169e93eb7f5d56a039e976e1823eb (patch) | |
tree | a184dbe7a23cbb07b1e15bc9247abd591e4078ec /gcc/plugin.c | |
parent | 82f5c05de6fdbff6ce599419a24d63b400ea900a (diff) | |
download | gcc-0acbbdb04f5169e93eb7f5d56a039e976e1823eb.tar.gz |
plugin.c: Include plugin-version.h only if ENABLE_PLUGIN is defined.
2009-04-30 Rafael Avila de Espindola <espindola@google.com>
* plugin.c: Include plugin-version.h only if ENABLE_PLUGIN is defined.
From-SVN: r146998
Diffstat (limited to 'gcc/plugin.c')
-rw-r--r-- | gcc/plugin.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/plugin.c b/gcc/plugin.c index 3b7cc78a193..a8c2eeaffb2 100644 --- a/gcc/plugin.c +++ b/gcc/plugin.c @@ -38,7 +38,9 @@ along with GCC; see the file COPYING3. If not see #include "intl.h" #include "plugin.h" #include "timevar.h" +#ifdef ENABLE_PLUGIN #include "plugin-version.h" +#endif /* Event names as strings. Keep in sync with enum plugin_event. */ const char *plugin_event_name[] = |