You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
438 B
Plaintext
27 lines
438 B
Plaintext
2 years ago
|
dnl Process this file with autoconf to produce a configure script.
|
||
|
|
||
|
AC_INIT(exifdate, m4_esyscmd([tr -d '\n' < VERSION]))
|
||
|
|
||
|
AC_CONFIG_HEADERS([config.h])
|
||
|
|
||
|
AM_INIT_AUTOMAKE([1.11] [foreign])
|
||
|
|
||
|
AM_SILENT_RULES([yes])
|
||
|
|
||
|
AC_PROG_CC
|
||
|
|
||
|
LT_INIT
|
||
|
|
||
|
dnl *****************
|
||
|
dnl ***** options *****
|
||
|
dnl *****************
|
||
|
|
||
|
dnl checking for dependencies
|
||
|
|
||
|
dnl check for the libexif
|
||
|
PKG_CHECK_MODULES(LIBEXIF, [libexif])
|
||
|
|
||
|
AC_OUTPUT([
|
||
|
Makefile
|
||
|
src/Makefile])
|