Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 406895 | Differences between
and this patch

Collapse All | Expand All

(-)a/Makefile.am (-2 / +7 lines)
Lines 15-29 Link Here
15
#    along with this program; if not, write to the Free Software
15
#    along with this program; if not, write to the Free Software
16
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
18
bin_PROGRAMS = psdparse
18
bin_PROGRAMS = psdparse psd2xcf
19
19
20
psdparse_SOURCES = main.c writepng.c writeraw.c unpackbits.c packbits.c write.c \
20
psdparse_SOURCES = main.c writepng.c writeraw.c unpackbits.c packbits.c write.c \
21
                   resources.c icc.c extra.c constants.c util.c pdf.c \
21
                   resources.c icc.c extra.c constants.c util.c pdf.c \
22
                   descriptor.c channel.c psd.c scavenge.c mmap.c \
22
                   descriptor.c channel.c psd.c scavenge.c mmap.c \
23
                   psd_zip.c duotone.c rebuild.c \
23
                   psd_zip.c duotone.c rebuild.c \
24
                   psdparse.h version.h
24
                   psdparse.h version.h
25
psd2xcf_SOURCES = psd2xcf.c xcf.c psd.c util.c extra.c descriptor.c constants.c \
26
           	  pdf.c resources.c icc.c channel.c psd_zip.c unpackbits.c \
27
	          duotone.c
28
psdparse_LDFLAGS = $(LIBPNG_LIBS)
29
psd2xcf_LDFLAGS = -lz
30
25
AM_CFLAGS   = -W -Wall -O2
31
AM_CFLAGS   = -W -Wall -O2
26
AM_CPPFLAGS = -DDIRSEP="'/'" -DDEFAULT_VERBOSE=0 -D_GNU_SOURCE \
32
AM_CPPFLAGS = -DDIRSEP="'/'" -DDEFAULT_VERBOSE=0 -D_GNU_SOURCE \
27
              -DPSBSUPPORT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
33
              -DPSBSUPPORT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
28
              $(LIBPNG_CPPFLAGS)
34
              $(LIBPNG_CPPFLAGS)
29
LDADD = $(LIBPNG_LIBS)

Return to bug 406895