-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfigure.ac
100 lines (85 loc) · 2.53 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
## -*- Autoconf -*-
## This file is part of Pazpar2.
## Copyright (C) Index Data
## Process this file with autoconf to produce a configure script.
# Autoconf and automake setup
AC_PREREQ([2.69])
AC_INIT([pazpar2],[m4_esyscmd([. ./IDMETA; printf $VERSION])],[[email protected]])
AC_CONFIG_HEADERS([src/config.h])
AC_CONFIG_SRCDIR([configure.ac])
AC_CONFIG_AUX_DIR([config])
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([1.9])
AC_PROG_CC
AC_PROG_RANLIB
AC_C_INLINE
YAZ_INIT([static icu],[5.18.0])
if test -z "$YAZLIB"; then
AC_MSG_ERROR([YAZ development libraries missing])
fi
case $YAZINC in
*YAZ_HAVE_XSLT=1*) ;;
*) AC_MSG_ERROR([YAZ not compiled with Libxslt support]) ;;
esac
YAZ_DOC
AC_SEARCH_LIBS([log],[m])
AC_CHECK_HEADERS([sys/time.h sys/socket.h unistd.h netdb.h])
checkBoth=0
AC_CHECK_FUNC([connect])
if test "$ac_cv_func_connect" = "no"; then
AC_CHECK_LIB([socket],[main], [LIBS="$LIBS -lsocket"], [checkBoth=1])
fi
if test "$checkBoth" = "1"; then
oldLibs=$LIBS
LIBS="$LIBS -lsocket -lnsl"
AC_CHECK_FUNC([accept], , [LIBS=$oldLibs])
fi
AC_CHECK_FUNC([gethostbyname], ,[AC_CHECK_LIB(nsl, main, [LIBS="$LIBS -lnsl"])])
AC_CHECK_FUNCS([getaddrinfo getrlimit])
if test -d ${srcdir}/.git; then
sha=`git show --pretty=format:%H|head -1`
else
sha=`head -1 ${srcdir}/ChangeLog|awk '{print $2}'`
fi
AC_DEFINE_UNQUOTED([PAZPAR2_VERSION_SHA1], ["$sha"], [Git SHA1])
AC_CONFIG_FILES([
Doxyfile
Makefile
src/Makefile
test/Makefile
js/Makefile
etc/xsl/Makefile
doc/Makefile
doc/local0.ent
doc/common/Makefile
doc/common/print.dsl
win/version.nsi
])
AC_CONFIG_COMMANDS([default],[
diff doc/local.ent doc/local0.ent >/dev/null 2>/dev/null \
|| cp doc/local0.ent doc/local.ent
],[])
AC_OUTPUT
echo \
"------------------------------------------------------------------------
Package: ${PACKAGE}
Version: ${VERSION}
Source code location: ${srcdir}
C Preprocessor: ${CPP}
C Preprocessor flags: ${CPPFLAGS}
C Compiler: ${CC}
C Compiler flags: ${CFLAGS}
Linker flags: ${LDFLAGS}
Linked libs: ${LIBS}
Host System Type: ${host}
Install path: ${prefix}
YAZ Version: ${YAZVERSION}
YAZ Include: ${YAZINC}
YAZ Lib: ${YAZLIB}
Bugreport: ${PACKAGE_BUGREPORT}
------------------------------------------------------------------------"
dnl Local Variables:
dnl mode:shell-script
dnl sh-indentation:2
dnl sh-basic-offset: 4
dnl End: