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/ImageControl.cc | |
parent | 6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff) | |
download | fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.zip fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2 |
add autoconf check for std c++ headers
Diffstat (limited to 'src/FbTk/ImageControl.cc')
-rw-r--r-- | src/FbTk/ImageControl.cc | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/src/FbTk/ImageControl.cc b/src/FbTk/ImageControl.cc index 9e4f2df..b06b623 100644 --- a/src/FbTk/ImageControl.cc +++ b/src/FbTk/ImageControl.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: ImageControl.cc,v 1.13 2004/06/07 11:46:05 rathnor Exp $ | 25 | // $Id: ImageControl.cc,v 1.14 2004/08/31 15:26:39 rathnor Exp $ |
26 | 26 | ||
27 | #include "ImageControl.hh" | 27 | #include "ImageControl.hh" |
28 | 28 | ||
@@ -45,9 +45,21 @@ | |||
45 | #include <sys/types.h> | 45 | #include <sys/types.h> |
46 | #endif // HAVE_SYS_TYPES_H | 46 | #endif // HAVE_SYS_TYPES_H |
47 | 47 | ||
48 | #include <cstdlib> | 48 | #ifdef HAVE_CSTDLIB |
49 | #include <cstring> | 49 | #include <cstdlib> |
50 | #include <cstdio> | 50 | #else |
51 | #include <stdlib.h> | ||
52 | #endif | ||
53 | #ifdef HAVE_CSTRING | ||
54 | #include <cstring> | ||
55 | #else | ||
56 | #include <string.h> | ||
57 | #endif | ||
58 | #ifdef HAVE_CSTDIO | ||
59 | #include <cstdio> | ||
60 | #else | ||
61 | #include <stdio.h> | ||
62 | #endif | ||
51 | 63 | ||
52 | #ifdef HAVE_CTYPE_H | 64 | #ifdef HAVE_CTYPE_H |
53 | #include <ctype.h> | 65 | #include <ctype.h> |