File: libjpeg.m4

package info (click to toggle)
harp 1.29-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 57,028 kB
  • sloc: xml: 475,954; ansic: 175,442; sh: 4,898; yacc: 2,186; javascript: 1,510; python: 1,148; makefile: 656; lex: 591
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