Changeset 2317
- Timestamp:
- Apr 26, 2008, 10:41:35 AM (15 years ago)
- Location:
- pwntcha/trunk
- Files:
-
- 28 added
- 3 edited
- 14 moved
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/.gitignore
r2315 r2317 14 14 .libs 15 15 *.la 16 *.a 16 17 *.lo 17 18 *.o -
pwntcha/trunk/configure.ac
r2315 r2317 8 8 9 9 AC_PREREQ(2.50) 10 dnl AC_CANONICAL_SYSTEM10 dnl AC_CANONICAL_SYSTEM 11 11 12 12 AC_PROG_CC 13 13 AM_PROG_CC_C_O 14 14 AC_PROG_CXX 15 AC_PROG_RANLIB 15 16 AC_STDC_HEADERS 16 17 … … 81 82 Makefile 82 83 src/Makefile 84 src/authimage/Makefile 85 src/clubic/Makefile 86 src/java/Makefile 87 src/linuxfr/Makefile 88 src/livejournal/Makefile 89 src/lmt/Makefile 90 src/paypal/Makefile 91 src/phpbb/Makefile 92 src/scode/Makefile 93 src/slashdot/Makefile 94 src/ticketmaster/Makefile 95 src/tickets/Makefile 96 src/vbulletin/Makefile 97 src/xanga/Makefile 83 98 extras/Makefile 84 99 share/Makefile -
pwntcha/trunk/src/Makefile.am
r1003 r2317 1 NULL = 1 2 SUBDIRS = authimage clubic java linuxfr livejournal lmt paypal phpbb scode \ 3 slashdot ticketmaster tickets vbulletin xanga 2 4 3 5 bin_PROGRAMS = pwntcha … … 8 10 image.c \ 9 11 common.h \ 10 authimage.c \11 clubic.c \12 java.c \13 linuxfr.c \14 livejournal.c \15 lmt.c \16 paypal.c \17 phpbb.c \18 scode.c \19 slashdot.c \20 tickets.c \21 ticketmaster.c \22 vbulletin.c \23 xanga.c \24 12 easter-eggs.c \ 25 test.c 26 pwntcha_CFLAGS = $(ADDITIONAL_CFLAGS) -Wall -O6 27 pwntcha_LDFLAGS = $(ADDITIONAL_LDFLAGS) 28 pwntcha_LDADD = $(ADDITIONAL_LDADD) 13 test.c \ 14 $(NULL) 15 pwntcha_CFLAGS = $(imaging_cflags) -Wall -O6 16 pwntcha_LDFLAGS = $(imaging_ldflags) 17 pwntcha_LDADD = $(SUBDIRS:%=%/libdecoder.a) 29 18 30 19 if USE_SDL 31 ADDITIONAL_CFLAGS = `sdl-config --cflags` 32 ADDITIONAL_LDFLAGS = `sdl-config --libs` -lSDL_image 33 ADDITIONAL_LDADD = 20 imaging_cflags = `sdl-config --cflags` 21 imaging_ldflags = `sdl-config --libs` -lSDL_image 34 22 else 35 23 if USE_IMLIB2 36 ADDITIONAL_CFLAGS = `imlib2-config --cflags` -DX_DISPLAY_MISSING=1 37 ADDITIONAL_LDFLAGS = `imlib2-config --libs` 38 ADDITIONAL_LDADD = 24 imaging_cflags = `imlib2-config --cflags` -DX_DISPLAY_MISSING=1 25 imaging_ldflags = `imlib2-config --libs` 39 26 else 40 27 if USE_OPENCV 41 ADDITIONAL_CFLAGS = `opencv-config --cflags` 42 ADDITIONAL_LDFLAGS = `opencv-config --libs opencv highgui` 43 ADDITIONAL_LDADD = 28 imaging_cflags = `opencv-config --cflags` 29 imaging_ldflags = `opencv-config --libs opencv highgui` 44 30 else 45 ADDITIONAL_CFLAGS = 46 ADDITIONAL_LDFLAGS = 47 ADDITIONAL_LDADD = 31 imaging_cflags = 32 imaging_ldflags = 48 33 endif 49 34 endif
Note: See TracChangeset
for help on using the changeset viewer.