File: libjpeg.m4

package info (click to toggle)
harp 1.5%2Bdata-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 54,032 kB
  • sloc: xml: 286,510; ansic: 143,710; yacc: 1,910; python: 913; makefile: 600; lex: 574; sh: 69
file content (10 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
# ST_CHECK_LIBJPEG
# ----------------
# Check for the availability of the libjpeg library
AC_DEFUN([ST_CHECK_LIBJPEG],
[JPEGLIB=
AC_CHECK_LIB(jpeg, jpeg_start_compress, ac_cv_lib_jpeg=yes, ac_cv_lib_jpeg=no)
if test $ac_cv_lib_jpeg = yes ; then
  JPEGLIB="-ljpeg"
fi
])# ST_CHECK_LIBJPEG