aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2004-08-31 15:26:40 (GMT)
committerrathnor <rathnor>2004-08-31 15:26:40 (GMT)
commitd17bf39a43a7581773c67d496e4022499d59cd26 (patch)
tree89e964e0e9a207d726e4ffefb88b19c51c591817 /src/fluxbox.hh
parent6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff)
downloadfluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.zip
fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2
add autoconf check for std c++ headers
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r--src/fluxbox.hh8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh
index d61452a..96b883d 100644
--- a/src/fluxbox.hh
+++ b/src/fluxbox.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: fluxbox.hh,v 1.89 2004/07/15 09:52:14 fluxgen Exp $ 25// $Id: fluxbox.hh,v 1.90 2004/08/31 15:26:39 rathnor Exp $
26 26
27#ifndef FLUXBOX_HH 27#ifndef FLUXBOX_HH
28#define FLUXBOX_HH 28#define FLUXBOX_HH
@@ -36,7 +36,11 @@
36#include <X11/Xlib.h> 36#include <X11/Xlib.h>
37#include <X11/Xresource.h> 37#include <X11/Xresource.h>
38 38
39#include <cstdio> 39#ifdef HAVE_CSTDIO
40 #include <cstdio>
41#else
42 #include <stdio.h>
43#endif
40 44
41#ifdef HAVE_CONFIG_H 45#ifdef HAVE_CONFIG_H
42#include "config.h" 46#include "config.h"