|
From: Radu C. <rc...@us...> - 2016-09-29 16:16:27
|
Update of /cvsroot/gcx/gcx In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv19903 Modified Files: ChangeLog configure.ac Log Message: fix configure.am for current versions of automake Index: configure.ac =================================================================== RCS file: /cvsroot/gcx/gcx/configure.ac,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** configure.ac 7 Mar 2013 20:49:33 -0000 1.6 --- configure.ac 29 Sep 2016 16:16:25 -0000 1.7 *************** *** 1,5 **** AC_INIT([gcx], [1.6]) ! AM_INIT_AUTOMAKE([foreign -Wall -Werror]) AC_CONFIG_SRCDIR([src/gcx.c]) --- 1,5 ---- AC_INIT([gcx], [1.6]) ! AM_INIT_AUTOMAKE([foreign -Wall -Werror subdir-objects]) AC_CONFIG_SRCDIR([src/gcx.c]) *************** *** 8,11 **** --- 8,12 ---- AC_PROG_CC + AM_PROG_AR AM_PROG_CC_STDC AC_HEADER_STDC *************** *** 28,31 **** --- 29,35 ---- AC_CHECK_LIB(tiff, TIFFOpen,,AC_MSG_ERROR(Cannot find libtiff)) + AC_CHECK_HEADERS([math.h]) + AC_CHECK_LIB(m, cos,,AC_MSG_ERROR(Cannot find libm)) + AC_CHECK_HEADERS([jpeglib.h]) AC_CHECK_LIB(jpeg, jpeg_CreateDecompress,,AC_MSG_ERROR(Cannot find libjpeg)) Index: ChangeLog =================================================================== RCS file: /cvsroot/gcx/gcx/ChangeLog,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** ChangeLog 7 Mar 2013 21:02:20 -0000 1.62 --- ChangeLog 29 Sep 2016 16:16:24 -0000 1.63 *************** *** 1,2 **** --- 1,6 ---- + 2016-09-29 rcorlan <rc...@vi...> + + * fix configure.ac for current versions of automake. + 2013-03-07 matei conovici <mco...@gm...> * add overscan correction to reduction steps, remove old [xy]_skip |