- Timestamp:
- Apr 20, 2008, 12:51:20 AM (15 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/csharp/Makefile.am
r2088 r2308 4 4 cacadir = $(libdir)/caca-sharp 5 5 6 cucul_sources = AssemblyInfo.csCucul.cs7 caca_sources = AssemblyInfo.csCaca.cs6 cucul_sources = $(srcdir)/AssemblyInfo.cs $(srcdir)/Cucul.cs 7 caca_sources = $(srcdir)/AssemblyInfo.cs $(srcdir)/Caca.cs 8 8 9 9 if USE_CSHARP … … 15 15 EXTRA_DIST = $(cucul_sources) cucul-sharp.dll.config.in \ 16 16 $(caca_sources) caca-sharp.dll.config.in \ 17 test.cs17 $(srcdir)/test.cs 18 18 19 19 cucul-sharp.dll: $(cucul_sources) … … 25 25 -r:System.Drawing.dll -r:./cucul-sharp.dll 26 26 27 test.exe: test.cs caca-sharp.dll cucul-sharp.dll28 gmcs test.cs -out:$@ -lib:./ \27 test.exe: $(srcdir)/test.cs caca-sharp.dll cucul-sharp.dll 28 gmcs $(srcdir)/test.cs -out:$@ -lib:./ \ 29 29 -r:System.Drawing.dll -r:./cucul-sharp.dll -r:./caca-sharp.dll 30 30 -
libcaca/trunk/cucul/cucul_types.h.in
r2304 r2308 24 24 #endif 25 25 26 /* mode 1: standard < inttypes.h> header is present, just include it */26 /* mode 1: standard <stdint.h> header is present, just include it */ 27 27 #if CUCUL_TYPES == 1 28 # include <stdint.h> 29 # include <unistd.h> 30 31 /* mode 2: standard <inttypes.h> header is present, just include it */ 32 #elif CUCUL_TYPES == 2 28 33 # include <inttypes.h> 29 30 /* mode 2: standard <stdint.h> header is present, just include it */ 31 #elif CUCUL_TYPES == 2 32 # include <stdint.h> 34 # include <unistd.h> 33 35 34 36 /* fallback: nothing is available, we assume the platform is 32-bit and … … 48 50 typedef unsigned long int uintptr_t; 49 51 52 typedef int ssize_t; 53 typedef unsigned int size_t; 54 50 55 #endif 51 56
Note: See TracChangeset
for help on using the changeset viewer.