From: maier Date: Fri, 28 Sep 2012 15:52:39 +0000 (+0000) Subject: Bugfix: Use #ifdef instead of #if X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84e1b56336c131d5feee359f145e9b7c87dc1d79;p=dealii-svn.git Bugfix: Use #ifdef instead of #if git-svn-id: https://svn.dealii.org/branches/branch_cmake@26851 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/base/job_identifier.cc b/deal.II/source/base/job_identifier.cc index c09bdcc01b..1c00eaf2c2 100644 --- a/deal.II/source/base/job_identifier.cc +++ b/deal.II/source/base/job_identifier.cc @@ -15,7 +15,7 @@ #include #include -#if HAVE_GETHOSTNAME +#ifdef HAVE_GETHOSTNAME # include #endif