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/Screen.hh | |
parent | 6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff) | |
download | fluxbox_pavel-d17bf39a43a7581773c67d496e4022499d59cd26.zip fluxbox_pavel-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2 |
add autoconf check for std c++ headers
Diffstat (limited to 'src/Screen.hh')
-rw-r--r-- | src/Screen.hh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index 26938df..b81110f 100644 --- a/src/Screen.hh +++ b/src/Screen.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: Screen.hh,v 1.142 2004/06/21 15:23:42 rathnor Exp $ | 25 | // $Id: Screen.hh,v 1.143 2004/08/31 15:26:38 rathnor Exp $ |
26 | 26 | ||
27 | #ifndef SCREEN_HH | 27 | #ifndef SCREEN_HH |
28 | #define SCREEN_HH | 28 | #define SCREEN_HH |
@@ -40,7 +40,11 @@ | |||
40 | #include <X11/Xlib.h> | 40 | #include <X11/Xlib.h> |
41 | #include <X11/Xresource.h> | 41 | #include <X11/Xresource.h> |
42 | 42 | ||
43 | #include <cstdio> | 43 | #ifdef HAVE_CSTDIO |
44 | #include <cstdio> | ||
45 | #else | ||
46 | #include <stdio.h> | ||
47 | #endif | ||
44 | #include <string> | 48 | #include <string> |
45 | #include <list> | 49 | #include <list> |
46 | #include <vector> | 50 | #include <vector> |