Changeset 190
- Timestamp:
- Nov 16, 2003, 1:13:46 PM (19 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 4 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/Makefile.am
r189 r190 3 3 ############################################################################### 4 4 5 SUBDIRS = libcaca test5 SUBDIRS = src examples 6 6 DIST_SUBDIRS = $(SUBDIRS) autotools debian 7 7 -
libcaca/trunk/configure.ac
r189 r190 4 4 5 5 AC_PREREQ(2.50) 6 AC_CONFIG_SRCDIR(src/ main.c)6 AC_CONFIG_SRCDIR(src/caca.c) 7 7 AC_CONFIG_AUX_DIR(autotools) 8 8 AC_CANONICAL_SYSTEM … … 61 61 AC_OUTPUT([ 62 62 Makefile 63 libcaca/Makefile64 test/Makefile63 src/Makefile 64 examples/Makefile 65 65 autotools/Makefile 66 66 debian/Makefile -
libcaca/trunk/examples/Makefile.am
r185 r190 3 3 ############################################################################### 4 4 5 AM_CPPFLAGS = -I$(top_srcdir)/ libcaca5 AM_CPPFLAGS = -I$(top_srcdir)/src 6 6 7 7 if USE_SLANG … … 15 15 16 16 demo_SOURCES = demo.c 17 demo_LDADD = ../ libcaca/libcaca.a $(LDFLAGS_slang) $(LDFLAGS_ncurses) -lm17 demo_LDADD = ../src/libcaca.a $(LDFLAGS_slang) $(LDFLAGS_ncurses) -lm 18 18 demo_CFLAGS = `pkg-config --cflags gtk+-2.0` 19 19 demo_LDFLAGS = `pkg-config --libs gtk+-2.0` 20 20 21 21 spritedit_SOURCES = spritedit.c 22 spritedit_LDADD = ../ libcaca/libcaca.a $(LDFLAGS_slang) $(LDFLAGS_ncurses) -lm22 spritedit_LDADD = ../src/libcaca.a $(LDFLAGS_slang) $(LDFLAGS_ncurses) -lm 23 23 -
libcaca/trunk/src/line.c
r185 r190 196 196 if(x < 0) 197 197 b |= (1<<0); 198 else if(x >= caca_get_width())198 else if(x >= (int)caca_get_width()) 199 199 b |= (1<<1); 200 200 201 201 if(y < 0) 202 202 b |= (1<<2); 203 else if(y >= caca_get_height())203 else if(y >= (int)caca_get_height()) 204 204 b |= (1<<3); 205 205
Note: See TracChangeset
for help on using the changeset viewer.