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/fluxbox.cc | |
parent | 6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff) | |
download | fluxbox_pavel-d17bf39a43a7581773c67d496e4022499d59cd26.zip fluxbox_pavel-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2 |
add autoconf check for std c++ headers
Diffstat (limited to 'src/fluxbox.cc')
-rw-r--r-- | src/fluxbox.cc | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc index 07c86fd..a484434 100644 --- a/src/fluxbox.cc +++ b/src/fluxbox.cc | |||
@@ -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.cc,v 1.250 2004/08/27 17:24:49 rathnor Exp $ | 25 | // $Id: fluxbox.cc,v 1.251 2004/08/31 15:26:39 rathnor Exp $ |
26 | 26 | ||
27 | #include "fluxbox.hh" | 27 | #include "fluxbox.hh" |
28 | 28 | ||
@@ -94,9 +94,21 @@ class Toolbar { }; | |||
94 | 94 | ||
95 | // system headers | 95 | // system headers |
96 | 96 | ||
97 | #include <cstdio> | 97 | #ifdef HAVE_CSTDIO |
98 | #include <cstdlib> | 98 | #include <cstdio> |
99 | #include <cstring> | 99 | #else |
100 | #include <stdio.h> | ||
101 | #endif | ||
102 | #ifdef HAVE_CSTDLIB | ||
103 | #include <cstdlib> | ||
104 | #else | ||
105 | #include <stdlib.h> | ||
106 | #endif | ||
107 | #ifdef HAVE_CSTRING | ||
108 | #include <cstring> | ||
109 | #else | ||
110 | #include <string.h> | ||
111 | #endif | ||
100 | 112 | ||
101 | #ifdef HAVE_UNISTD_H | 113 | #ifdef HAVE_UNISTD_H |
102 | #include <sys/types.h> | 114 | #include <sys/types.h> |