IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 6, 2006, 5:22:07 PM (20 years ago)
Author:
Paul Price
Message:

Merging the pslib "additional" functions from the modules into psLib proper.

Added jpeg directory for psImageJpeg.
Changes to build system (configure.ac, and various Makefile.am)

psVectorSmooth: changed API to allow optional output vector
psSparse: changed sizes to type "long"; added "const"
psRegionIsBad: Renamed psRegionIsNaN
psImageBicubeFit: changed sizes to "long"; added a "const"
psLine: changed sizes to "long"
psImageUnbin: description required in SDRS
psImageClippedStats: renaming to psImageBackground; removing static structures; API changed!
psImageFlipX, psImageFlipY merged to psImageFlip
psStringSubstitute: added "const"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/configure.ac

    r7300 r7380  
    2626
    2727SRCPATH='${top_srcdir}/src'
    28 SRCDIRS="sys astro db fft fits imageops math mathtypes types xml"
     28SRCDIRS="sys astro db fft fits imageops jpeg math mathtypes types xml"
    2929# escape two escapes at this level so \\ gets passed to the shell and \ to perl
    3030SRCINC=`echo "${SRCDIRS=}" | ${PERL} -pe "s|(\w+)|-I\\\\${SRCPATH=}/\1|g"`
     
    241241AC_SUBST([GSL_CFLAGS])
    242242
     243dnl libjpeg -------------------------------------------------------------------
     244
     245AC_CHECK_LIB(jpeg,jpeg_CreateCompress,[],[AC_MSG_ERROR([jpeg library not found.])])
     246
    243247dnl ------------------- XML2 options ---------------------
    244248AC_ARG_WITH(xml2-config,
     
    316320AM_CONDITIONAL(DOXYGEN, test x$doxygen = xtrue)
    317321
    318 
    319322dnl ------- restore CFLAGS / LDFLAGS (tests done) --------
    320323CFLAGS="${CFLAGS} -Wall -Werror"
     
    338341  src/fits/Makefile
    339342  src/imageops/Makefile
     343  src/jpeg/Makefile
    340344  src/math/Makefile
    341345  src/mathtypes/Makefile
     
    349353  test/fits/Makefile
    350354  test/imageops/Makefile
     355  test/jpeg/Makefile
    351356  test/math/Makefile
    352357  test/mathtypes/Makefile
Note: See TracChangeset for help on using the changeset viewer.