ref: ce5ffc6fe913e0720a7c8fed716990a5af4ee4c3
dir: /configure.in/
AC_INIT(src/libdvdcss.c) # Making releases: # MICRO_VERSION += 1; # INTERFACE_AGE += 1; # BINARY_AGE += 1; # if any functions have been added, set INTERFACE_AGE to 0. # if backwards compatibility is broken, set BINARY_AGE and INTERFACE_AGE to 0. MAJOR_VERSION=1 MINOR_VERSION=1 MICRO_VERSION=2 INTERFACE_AGE=0 BINARY_AGE=0 # libtool versioning LT_RELEASE=$MAJOR_VERSION.$MINOR_VERSION LT_CURRENT=`expr $MICRO_VERSION - $INTERFACE_AGE` LT_REVISION=$INTERFACE_AGE LT_AGE=`expr $BINARY_AGE - $INTERFACE_AGE` AC_SUBST(LT_RELEASE) AC_SUBST(LT_CURRENT) AC_SUBST(LT_REVISION) AC_SUBST(LT_AGE) AM_INIT_AUTOMAKE("dvdcss", $MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION) AM_CONFIG_HEADER(src/config.h) AC_CANONICAL_HOST AC_PROG_CC AC_STDC_HEADERS AM_PROG_LIBTOOL AC_C_CONST AC_C_INLINE AC_TYPE_SIZE_T AC_CHECK_HEADERS(unistd.h) if test -r extras/libdvdcss/csskeys.h then AC_DEFINE(HAVE_CSSKEYS, 1, css decryption with player keys) fi dnl Check for boolean_t AC_CACHE_CHECK([for boolean_t in sys/types.h], [ac_cv_c_boolean_t_sys_types_h], [AC_TRY_COMPILE([#include <sys/types.h>], [boolean_t foo;], ac_cv_c_boolean_t_sys_types_h=yes, ac_cv_c_boolean_t_sys_types_h=no)]) if test x"$ac_cv_c_boolean_t_sys_types_h" != x"no"; then AC_DEFINE(BOOLEAN_T_IN_SYS_TYPES_H, 1, Define if <sys/types.h> defines boolean_t.) fi AC_CACHE_CHECK([for boolean_t in pthread.h], [ac_cv_c_boolean_t_pthread_h], [AC_TRY_COMPILE([#include <pthread.h>], [boolean_t foo;], ac_cv_c_boolean_t_pthread_h=yes, ac_cv_c_boolean_t_pthread_h=no)]) if test x"$ac_cv_c_boolean_t_pthread_h" != x"no"; then AC_DEFINE(BOOLEAN_T_IN_PTHREAD_H, 1, Define if <pthread.h> defines boolean_t.) fi AC_CACHE_CHECK([for boolean_t in cthreads.h], [ac_cv_c_boolean_t_cthreads_h], [AC_TRY_COMPILE([#include <cthreads.h>], [boolean_t foo;], ac_cv_c_boolean_t_cthreads_h=yes, ac_cv_c_boolean_t_cthreads_h=no)]) if test x"$ac_cv_c_boolean_t_cthreads_h" != x"no"; then AC_DEFINE(BOOLEAN_T_IN_CTHREADS_H, 1, Define if <cthreads.h> defines boolean_t.) fi dnl dnl libdvdcss: check for DVD ioctls dnl dnl default is no CAN_BUILD_LIBDVDCSS=0 dnl for windoze AC_CHECK_HEADERS(winioctl.h,[ CAN_BUILD_LIBDVDCSS=1 ]) dnl for Un*x and BeOS AC_CHECK_HEADERS(sys/ioctl.h,[ CAN_BUILD_LIBDVDCSS=1 AC_CHECK_HEADERS(sys/cdio.h sys/dvdio.h linux/cdrom.h dvd.h) BSD_DVD_STRUCT=0 LINUX_DVD_STRUCT=0 OPENBSD_DVD_STRUCT=0 dnl dnl Old FreeBSD: sys/cdio.h dnl AC_EGREP_HEADER(dvd_struct,sys/cdio.h,[ AC_DEFINE(DVD_STRUCT_IN_SYS_CDIO_H, 1, Define if <sys/cdio.h> defines dvd_struct.) AC_EGREP_HEADER(struct dvd_struct,sys/cdio.h,[ BSD_DVD_STRUCT=1],[LINUX_DVD_STRUCT=1; OPENBSD_DVD_STRUCT=1]) ]) dnl dnl Newer FreeBSD: sys/dvdio.h dnl AC_EGREP_HEADER(dvd_struct,sys/dvdio.h,[ AC_DEFINE(DVD_STRUCT_IN_SYS_DVDIO_H, 1, Define if <sys/dvdio.h> defines dvd_struct.) AC_EGREP_HEADER(struct dvd_struct,sys/dvdio.h,[ BSD_DVD_STRUCT=1],[LINUX_DVD_STRUCT=1]) ]) dnl dnl Linux: linux/cdrom.h dnl AC_EGREP_HEADER(dvd_struct,linux/cdrom.h,[ AC_DEFINE(DVD_STRUCT_IN_LINUX_CDROM_H, 1, Define if <linux/cdrom.h> defines DVD_STRUCT.) LINUX_DVD_STRUCT=1 ]) dnl dnl BSDI: dvd.h dnl NEED_BSDI_LIBDVD=0 AC_EGREP_HEADER(dvd_struct,dvd.h,[ AC_DEFINE(DVD_STRUCT_IN_DVD_H, 1, Define if <dvd.h> defines DVD_STRUCT.) EXTRA_LIB="${EXTRA_LIB} -ldvd" LINUX_DVD_STRUCT=1 ],[ dnl dnl BSDI: /sys/dev/scsi/scsi_ioctl.h, using our own libdvd dnl AC_CHECK_HEADERS(/sys/dev/scsi/scsi_ioctl.h,[ NEED_BSDI_LIBDVD=1 AC_DEFINE(DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H, 1, Define if <extras/BSDI_dvdioctl/dvd.h> defines DVD_STRUCT.) EXTRA_SRC="${EXTRA_SRC} bsdi_ioctl.c" LINUX_DVD_STRUCT=1 ]) ]) dnl dnl Solaris: sys/scsi/scsi_types.h, sys/scsi/impl/uscsi.h dnl AC_CHECK_HEADER(sys/scsi/scsi_types.h,[ AC_CHECK_HEADER(sys/scsi/impl/uscsi.h,[ AC_DEFINE(SOLARIS_USCSI, 1, Have userspace SCSI headers.) ]) ]) dnl dnl HP-UX: sys/scsi.h dnl AC_CHECK_HEADER(sys/scsi.h,[ AC_EGREP_HEADER(sctl_io,sys/scsi.h,[ AC_DEFINE(HPUX_SCTL_IO, 1, Define if <sys/scsi.h> defines sctl_io.) ]) ]) dnl dnl Final tests to check what was detected dnl if test x$LINUX_DVD_STRUCT = x1; then AC_DEFINE(HAVE_LINUX_DVD_STRUCT, 1, Define if Linux-like dvd_struct is defined.) if test x$OPENBSD_DVD_STRUCT = x1; then AC_DEFINE(HAVE_OPENBSD_DVD_STRUCT, 1, Define if OpenBSD-like dvd_struct is defined.) fi else if test x$BSD_DVD_STRUCT = x1; then AC_DEFINE(HAVE_BSD_DVD_STRUCT, 1, Define if FreeBSD-like dvd_struct is defined.) fi fi ]) CFLAGS="-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST $CFLAGS" AC_SUBST(EXTRA_SRC) AC_SUBST(EXTRA_LIB) AC_OUTPUT([Makefile src/Makefile test/Makefile])