- Timestamp:
- Apr 24, 2006, 10:35:59 PM (15 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 48 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/caca/caca.c
r819 r859 19 19 20 20 #include "config.h" 21 #include "common.h" 21 22 22 23 #if !defined(__KERNEL__) -
libcaca/trunk/caca/caca_internals.h
r819 r859 17 17 #if defined(HAVE_INTTYPES_H) && !defined(__KERNEL__) 18 18 # include <inttypes.h> 19 #elif !defined(CUSTOM_INTTYPES) && !defined(_DOXYGEN_SKIP_ME)20 # define CUSTOM_INTTYPES21 typedef unsigned char uint8_t;22 typedef unsigned short uint16_t;23 typedef unsigned long int uint32_t;24 typedef long int intptr_t;25 typedef long unsigned int uintptr_t;26 19 #endif 27 20 -
libcaca/trunk/caca/driver_conio.c
r819 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if defined(USE_CONIO) -
libcaca/trunk/caca/driver_gl.c
r819 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if defined(USE_GL) -
libcaca/trunk/caca/driver_ncurses.c
r822 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if defined(USE_NCURSES) -
libcaca/trunk/caca/driver_raw.c
r826 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if !defined(__KERNEL__) -
libcaca/trunk/caca/driver_slang.c
r819 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if defined(USE_SLANG) -
libcaca/trunk/caca/driver_vga.c
r819 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if defined(USE_VGA) -
libcaca/trunk/caca/driver_win32.c
r819 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if defined(USE_WIN32) -
libcaca/trunk/caca/driver_x11.c
r819 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if defined(USE_X11) -
libcaca/trunk/caca/event.c
r849 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if !defined(__KERNEL__) -
libcaca/trunk/caca/graphics.c
r819 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #include "caca.h" -
libcaca/trunk/caca/time.c
r777 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if !defined(__KERNEL__) -
libcaca/trunk/common.h
r858 r859 22 22 typedef signed short int16_t; 23 23 typedef signed long int int32_t; 24 24 25 typedef unsigned char uint8_t; 25 26 typedef unsigned short uint16_t; 26 27 typedef unsigned long int uint32_t; 28 29 typedef long int intptr_t; 30 typedef unsigned long int uintptr_t; 27 31 #endif 28 32 -
libcaca/trunk/configure.ac
r856 r859 62 62 [ --enable-doc build documentation (needs doxygen and LaTeX)]) 63 63 64 AC_CHECK_HEADERS(stdio.h stdarg.h signal.h sys/ioctl.h sys/time.h inttypes.h endian.h unistd.h )65 AC_CHECK_FUNCS(signal ioctl vsnprintf getenv putenv strcasecmp )64 AC_CHECK_HEADERS(stdio.h stdarg.h signal.h sys/ioctl.h sys/time.h inttypes.h endian.h unistd.h arpa/inet.h) 65 AC_CHECK_FUNCS(signal ioctl vsnprintf getenv putenv strcasecmp htons) 66 66 AC_CHECK_FUNCS(usleep gettimeofday) 67 67 -
libcaca/trunk/cucul/box.c
r811 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if !defined(__KERNEL__) -
libcaca/trunk/cucul/buffer.c
r813 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if !defined(__KERNEL__) -
libcaca/trunk/cucul/canvas.c
r832 r859 18 18 19 19 #include "config.h" 20 #include "common.h" 20 21 21 22 #if !defined(__KERNEL__) -
libcaca/trunk/cucul/charset.c
r811 r859 18 18 19 19 #include "config.h" 20 #include "common.h" 20 21 21 22 #if !defined(__KERNEL__) -
libcaca/trunk/cucul/colour.c
r825 r859 18 18 19 19 #include "config.h" 20 #include "common.h" 20 21 21 22 #include "cucul.h" -
libcaca/trunk/cucul/conic.c
r811 r859 18 18 19 19 #include "config.h" 20 #include "common.h" 20 21 21 22 #if !defined(__KERNEL__) -
libcaca/trunk/cucul/cucul.c
r842 r859 18 18 19 19 #include "config.h" 20 #include "common.h" 20 21 21 22 #if !defined(__KERNEL__) -
libcaca/trunk/cucul/cucul_internals.h
r842 r859 17 17 #if defined(HAVE_INTTYPES_H) && !defined(__KERNEL__) 18 18 # include <inttypes.h> 19 #elif !defined(CUSTOM_INTTYPES) && !defined(_DOXYGEN_SKIP_ME)20 # define CUSTOM_INTTYPES21 typedef unsigned char uint8_t;22 typedef unsigned short uint16_t;23 typedef unsigned long int uint32_t;24 typedef long int intptr_t;25 typedef long unsigned int uintptr_t;26 19 #endif 27 20 -
libcaca/trunk/cucul/dither.c
r825 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if !defined(__KERNEL__) -
libcaca/trunk/cucul/export.c
r857 r859 18 18 19 19 #include "config.h" 20 #include "common.h" 20 21 21 22 #if !defined(__KERNEL__) -
libcaca/trunk/cucul/font.c
r825 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if !defined(USE_WIN32) … … 23 24 # include <endian.h> 24 25 # endif 26 # if defined(HAVE_ARPA_INET_H) 27 # include <arpa/inet.h> 28 # endif 25 29 # include <stdio.h> 26 30 # include <stdlib.h> 27 31 # include <string.h> 28 # include <arpa/inet.h>29 32 #endif 30 33 -
libcaca/trunk/cucul/import.c
r841 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if !defined(__KERNEL__) -
libcaca/trunk/cucul/line.c
r811 r859 18 18 19 19 #include "config.h" 20 #include "common.h" 20 21 21 22 #if !defined(__KERNEL__) -
libcaca/trunk/cucul/sprite.c
r842 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if !defined(__KERNEL__) -
libcaca/trunk/cucul/transform.c
r811 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if !defined(__KERNEL__) -
libcaca/trunk/cucul/triangle.c
r811 r859 17 17 18 18 #include "config.h" 19 #include "common.h" 19 20 20 21 #if !defined(__KERNEL__) -
libcaca/trunk/kernel/kernel.c
r769 r859 19 19 20 20 #include "config.h" 21 #include "common.h" 21 22 22 23 #ifdef __KERNEL__ -
libcaca/trunk/src/aafire.c
r819 r859 25 25 #ifdef LIBCACA 26 26 #include "config.h" 27 #include "common.h" 27 28 #if !defined(__KERNEL__) 28 29 # include <stdio.h> -
libcaca/trunk/src/cacaball.c
r819 r859 13 13 14 14 #include "config.h" 15 #include "common.h" 15 16 16 17 #if !defined(__KERNEL__) -
libcaca/trunk/src/cacamoir.c
r819 r859 13 13 14 14 #include "config.h" 15 #include "common.h" 15 16 16 17 #if !defined(__KERNEL__) -
libcaca/trunk/src/cacaplas.c
r819 r859 14 14 15 15 #include "config.h" 16 #include "common.h" 16 17 17 18 #if !defined(__KERNEL__) -
libcaca/trunk/src/cacaplay.c
r826 r859 13 13 14 14 #include "config.h" 15 #include "common.h" 15 16 16 17 #include <stdio.h> -
libcaca/trunk/src/cacaserver.c
r826 r859 14 14 15 15 #include "config.h" 16 #include "common.h" 16 17 17 18 #include <stdio.h> -
libcaca/trunk/src/cacaview.c
r832 r859 13 13 14 14 #include "config.h" 15 #include "common.h" 15 16 16 17 #include <stdio.h> -
libcaca/trunk/src/common-image.c
r769 r859 13 13 14 14 #include "config.h" 15 #include "common.h" 15 16 16 17 #include <stdio.h> -
libcaca/trunk/src/img2irc.c
r832 r859 13 13 14 14 #include "config.h" 15 #include "common.h" 15 16 16 17 #include <stdio.h> -
libcaca/trunk/test/colors.c
r849 r859 13 13 14 14 #include "config.h" 15 #include "common.h" 15 16 16 17 #if !defined(__KERNEL__) -
libcaca/trunk/test/demo.c
r839 r859 13 13 14 14 #include "config.h" 15 #include "common.h" 15 16 16 17 #include <math.h> -
libcaca/trunk/test/dithering.c
r849 r859 13 13 14 14 #include "config.h" 15 #include "common.h" 15 16 16 17 #include <stdio.h> -
libcaca/trunk/test/event.c
r832 r859 13 13 14 14 #include "config.h" 15 #include "common.h" 15 16 16 17 #include <stdio.h> -
libcaca/trunk/test/spritedit.c
r839 r859 13 13 14 14 #include "config.h" 15 #include "common.h" 15 16 16 17 #include <stdio.h> -
libcaca/trunk/tools/makefont.c
r812 r859 15 15 */ 16 16 17 #include "config.h" 18 #include "common.h" 19 17 20 #include <stdio.h> 18 21 #include <stdlib.h> 19 22 #include <stdint.h> 20 23 21 #include <arpa/inet.h> 24 #if defined(HAVE_ARPA_INET_H) 25 # include <arpa/inet.h> 26 #endif 22 27 23 28 #include <pango/pango.h> -
libcaca/trunk/tools/optipal.c
r820 r859 13 13 14 14 #include "config.h" 15 #include "common.h" 15 16 16 17 #include <stdio.h>
Note: See TracChangeset
for help on using the changeset viewer.