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/Slit.cc | |
parent | 6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff) | |
download | fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.zip fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2 |
add autoconf check for std c++ headers
Diffstat (limited to 'src/Slit.cc')
-rw-r--r-- | src/Slit.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Slit.cc b/src/Slit.cc index b0313f4..4068bca 100644 --- a/src/Slit.cc +++ b/src/Slit.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: Slit.cc,v 1.97 2004/08/30 11:34:56 akir Exp $ | 25 | // $Id: Slit.cc,v 1.98 2004/08/31 15:26:38 rathnor Exp $ |
26 | 26 | ||
27 | #include "Slit.hh" | 27 | #include "Slit.hh" |
28 | 28 | ||
@@ -61,7 +61,11 @@ | |||
61 | 61 | ||
62 | #include <algorithm> | 62 | #include <algorithm> |
63 | #include <iostream> | 63 | #include <iostream> |
64 | #include <cassert> | 64 | #ifdef HAVE_CASSERT |
65 | #include <cassert> | ||
66 | #else | ||
67 | #include <assert.h> | ||
68 | #endif | ||
65 | 69 | ||
66 | #ifdef HAVE_SYS_STAT_H | 70 | #ifdef HAVE_SYS_STAT_H |
67 | #include <sys/types.h> | 71 | #include <sys/types.h> |