Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 779001
Collapse All | Expand All

(-)a/Makefile.am (-5 / +6 lines)
Lines 11-29 lib_LTLIBRARIES = libflam3.la Link Here
11
include_HEADERS = flam3.h isaac.h isaacs.h rect.c
11
include_HEADERS = flam3.h isaac.h isaacs.h rect.c
12
12
13
libflam3_la_SOURCES = flam3.c filters.c parser.c variations.c interpolation.c palettes.c jpeg.c png.c isaac.c
13
libflam3_la_SOURCES = flam3.c filters.c parser.c variations.c interpolation.c palettes.c jpeg.c png.c isaac.c
14
libflam3_la_LDFLAGS = -no-undefined -ljpeg -lpng -lz -lpthread
14
libflam3_la_LDFLAGS = -no-undefined
15
libflam3_la_LIBADD = -ljpeg -lpng -lz -lpthread $(LIBM)
15
16
16
flam3_genome_SOURCES = flam3-genome.c docstring.c
17
flam3_genome_SOURCES = flam3-genome.c docstring.c
17
flam3_genome_LDADD = libflam3.la -lm
18
flam3_genome_LDADD = libflam3.la
18
19
19
flam3_animate_SOURCES = flam3-animate.c docstring.c
20
flam3_animate_SOURCES = flam3-animate.c docstring.c
20
flam3_animate_LDADD = libflam3.la -lm
21
flam3_animate_LDADD = libflam3.la
21
22
22
flam3_render_SOURCES = flam3-render.c docstring.c
23
flam3_render_SOURCES = flam3-render.c docstring.c
23
flam3_render_LDADD = libflam3.la -lm
24
flam3_render_LDADD = libflam3.la
24
25
25
flam3_convert_SOURCES = flam3-convert.c docstring.c
26
flam3_convert_SOURCES = flam3-convert.c docstring.c
26
flam3_convert_LDADD = libflam3.la -lm
27
flam3_convert_LDADD = libflam3.la
27
28
28
pkgdata_DATA = flam3-palettes.xml
29
pkgdata_DATA = flam3-palettes.xml
29
30
(-)a/configure.ac (-1 / +2 lines)
Lines 28-33 AC_CHECK_LIB([z],[deflateInit_],,[AC_MSG_ERROR([zlib is required.])]) Link Here
28
AC_CHECK_LIB([png],[png_write_image],,[AC_MSG_ERROR([The png library is required.])])
28
AC_CHECK_LIB([png],[png_write_image],,[AC_MSG_ERROR([The png library is required.])])
29
AC_CHECK_LIB([xml2],[xmlParseFile],,[AC_MSG_ERROR([The xml2 library is required.])])
29
AC_CHECK_LIB([xml2],[xmlParseFile],,[AC_MSG_ERROR([The xml2 library is required.])])
30
30
31
AC_CHECK_LIBM
32
AC_SUBST([LIBM])
31
33
32
if test "${enable_atomic_ops}" = "" ; then
34
if test "${enable_atomic_ops}" = "" ; then
33
  enable_atomic_ops=yes
35
  enable_atomic_ops=yes
34
- 

Return to bug 779001