diff options
author | rathnor <rathnor> | 2004-08-31 15:26:40 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2004-08-31 15:26:40 (GMT) |
commit | d17bf39a43a7581773c67d496e4022499d59cd26 (patch) | |
tree | 89e964e0e9a207d726e4ffefb88b19c51c591817 /src/FbTk/Theme.cc | |
parent | 6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff) | |
download | fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.zip fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2 |
add autoconf check for std c++ headers
Diffstat (limited to 'src/FbTk/Theme.cc')
-rw-r--r-- | src/FbTk/Theme.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/FbTk/Theme.cc b/src/FbTk/Theme.cc index e557d29..f3b4530 100644 --- a/src/FbTk/Theme.cc +++ b/src/FbTk/Theme.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: Theme.cc,v 1.28 2004/08/26 18:26:39 akir Exp $ | 22 | // $Id: Theme.cc,v 1.29 2004/08/31 15:26:39 rathnor Exp $ |
23 | 23 | ||
24 | #include "Theme.hh" | 24 | #include "Theme.hh" |
25 | 25 | ||
@@ -30,7 +30,11 @@ | |||
30 | #include "Directory.hh" | 30 | #include "Directory.hh" |
31 | #include "I18n.hh" | 31 | #include "I18n.hh" |
32 | 32 | ||
33 | #include <cstdio> | 33 | #ifdef HAVE_CSTDIO |
34 | #include <cstdio> | ||
35 | #else | ||
36 | #include <stdio.h> | ||
37 | #endif | ||
34 | #include <memory> | 38 | #include <memory> |
35 | #include <iostream> | 39 | #include <iostream> |
36 | 40 | ||