2 # Process this file with autoconf to produce a configure script.
3 # Minimum version of autoconf required
6 # UPDATING VERSION NUMBERS FOR RELEASES
10 # The most recent interface number that this library implements.
12 # The implementation number of the current interface.
14 # The difference between the newest and oldest interfaces that this library
15 # implements. In other words, the library implements all the interface
16 # numbers in the range from number current - age to current.
18 # 1. Start with version information of `0:0:0' for each libtool library.
19 # 2. Update the version information only immediately before a public release of
20 # your software. More frequent updates are unnecessary, and only guarantee
21 # that the current interface number gets larger faster.
22 # 3. If the library source code has changed at all since the last update, then
23 # increment revision (`c:r:a' becomes `c:r+1:a').
24 # 4. If any interfaces have been added, removed, or changed since the last
25 # update, increment current, and set revision to 0.
26 # 5. If any interfaces have been added since the last public release, then
28 # 6. If any interfaces have been removed since the last public release, then
32 # Extreme huge major changes:
33 # pacman_version_major += 1
34 # pacman_version_minor = 0
35 # pacman_version_micro = 0
38 # pacman_version_minor += 1
39 # pacman_version_micro = 0
42 # pacman_version_micro += 1
44 m4_define([lib_current], [5])
45 m4_define([lib_revision], [3])
46 m4_define([lib_age], [0])
48 m4_define([pacman_version_major], [3])
49 m4_define([pacman_version_minor], [4])
50 m4_define([pacman_version_micro], [3])
51 m4_define([pacman_version],
52 [pacman_version_major.pacman_version_minor.pacman_version_micro])
54 # Autoconf initialization
55 AC_INIT([pacman], [pacman_version], [pacman-dev@archlinux.org])
56 AC_CONFIG_SRCDIR([config.h.in])
57 AC_CONFIG_HEADERS([config.h])
62 LIB_VERSION=`expr lib_current - lib_age`.lib_age.lib_revision
63 LIB_VERSION_INFO="lib_current:lib_revision:lib_age"
65 # Set subsitution values for version stuff in Makefiles and anywhere else,
66 # and put LIB_VERSION in config.h
68 AC_SUBST(LIB_VERSION_INFO)
69 AC_DEFINE_UNQUOTED([LIB_VERSION], ["$LIB_VERSION"], [libalpm version number])
71 # Help line for root directory
73 AS_HELP_STRING([--with-root-dir=path], [set the location of the root operating directory]),
74 [ROOTDIR=$withval], [ROOTDIR=/])
76 # Help line for package extension
78 AS_HELP_STRING([--with-pkg-ext=ext], [set the file extension used by packages]),
79 [PKGEXT=$withval], [PKGEXT=.pkg.tar.gz])
81 # Help line for source package directory
83 AS_HELP_STRING([--with-src-ext=ext], [set the file extension used by source packages]),
84 [SRCEXT=$withval], [SRCEXT=.src.tar.gz])
86 # Help line for buildscript filename
87 AC_ARG_WITH(buildscript,
88 AS_HELP_STRING([--with-buildscript=name], [set the build script name used by makepkg]),
89 [BUILDSCRIPT=$withval], [BUILDSCRIPT=PKGBUILD])
91 # Help line for using OpenSSL
93 AS_HELP_STRING([--with-openssl], [use OpenSSL crypto implementations instead of internal routines]),
94 [], [with_openssl=check])
96 # Help line for libfetch
98 AS_HELP_STRING([--with-fetch], [use libfetch as an internal downloader]),
99 [], [with_fetch=check])
101 # Help line for documentation
103 AS_HELP_STRING([--disable-doc], [prevent make from looking at doc/ dir]),
104 [wantdoc=$enableval], [wantdoc=yes])
106 # Help line for doxygen
107 AC_ARG_ENABLE(doxygen,
108 AS_HELP_STRING([--enable-doxygen], [build your own API docs via Doxygen]),
109 [wantdoxygen=$enableval], [wantdoxygen=no])
111 # Help line for debug
113 AS_HELP_STRING([--enable-debug], [enable debugging support]),
114 [debug=$enableval], [debug=no])
116 # Help line for using git version in pacman version string
117 AC_ARG_ENABLE(git-version,
118 AS_HELP_STRING([--enable-git-version],
119 [enable use of git version in version string if available]),
120 [wantgitver=$enableval], [wantgitver=no])
122 # Checks for programs.
129 AC_CHECK_PROGS([PYTHON], [python2.7 python2.6 python2.5 python2 python], [false])
130 AC_PATH_PROGS([BASH_SHELL], [bash bash4 bash3], [false])
132 # find installed gettext
133 AM_GNU_GETTEXT([external])
134 AM_GNU_GETTEXT_VERSION(0.13.1)
136 # Check for libarchive
137 AC_CHECK_LIB([archive], [archive_read_data], ,
138 AC_MSG_ERROR([libarchive is needed to compile pacman!]))
141 AC_MSG_CHECKING(whether to link with libssl)
142 AS_IF([test "x$with_openssl" != "xno"],
144 AC_CHECK_LIB([ssl], [MD5_Final], ,
145 [if test "x$with_openssl" != "xcheck"; then
146 AC_MSG_FAILURE([--with-openssl was given, but -lssl was not found])
150 AM_CONDITIONAL([HAVE_LIBSSL], [test "x$ac_cv_lib_ssl_MD5_Final" = "xyes"])
152 # Enable or disable usage of libfetch
153 AC_MSG_CHECKING(whether to link with libfetch)
154 AS_IF([test "x$with_fetch" != "xno"],
156 AC_CHECK_LIB([fetch], [fetchParseURL], ,
157 [if test "x$with_fetch" != "xcheck"; then
158 AC_MSG_FAILURE([--with-fetch was given, but -lfetch was not found])
161 # Check if libfetch supports connnection caching which we use
162 AS_IF([test "x$ac_cv_lib_fetch_fetchParseURL" = "xyes"],
163 [AC_CHECK_DECL(fetchConnectionCacheInit, ,
164 AC_MSG_ERROR([libfetch must be version 2.28 or greater]),
165 [#include <fetch.h>])
169 AM_CONDITIONAL([HAVE_LIBFETCH], [test "x$ac_cv_lib_fetch_fetchParseURL" = "xyes"])
171 # Checks for header files.
172 AC_CHECK_HEADERS([fcntl.h glob.h libintl.h locale.h mntent.h string.h \
173 sys/ioctl.h sys/mount.h sys/param.h sys/statvfs.h \
174 sys/time.h sys/types.h sys/ucred.h syslog.h wchar.h])
176 # Checks for typedefs, structures, and compiler characteristics.
184 AC_STRUCT_DIRENT_D_TYPE
187 # Checks for library functions.
190 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
192 AC_CHECK_FUNCS([geteuid getmntinfo realpath regcomp strcasecmp \
193 strndup strrchr strsep swprintf \
195 # For the diskspace code
197 # Enable large file support if available
200 # Check if we can use symbol visibility support in GCC
202 # Check if we have -fgnu89-inline flag
205 # Host-dependant definitions
206 SIZECMD="stat -L -c %s"
208 STRIP_BINARIES="--strip-all"
209 STRIP_SHARED="--strip-unneeded"
210 STRIP_STATIC="--strip-debug"
213 SIZECMD="stat -L -f %z"
214 SEDINPLACE="sed -i ''"
218 CFLAGS="$CFLAGS -DCYGWIN"
222 SIZECMD="/usr/bin/stat -L -f %z"
223 SEDINPLACE="/usr/bin/sed -i ''"
230 AM_CONDITIONAL([CYGWIN], test "x$host_os_cygwin" = "xyes")
231 AM_CONDITIONAL([DARWIN], test "x$host_os_darwin" = "xyes")
232 AC_PATH_PROGS([DUPATH], [du], [du], [/usr/bin$PATH_SEPARATOR/bin] )
235 AC_SUBST(STRIP_BINARIES)
236 AC_SUBST(STRIP_SHARED)
237 AC_SUBST(STRIP_STATIC)
239 # Check for architecture, used in default makepkg.conf
240 # (Note single space left after CARCHFLAGS)
244 CARCHFLAGS="-march=i686 "
248 CARCHFLAGS="-march=x86-64 "
252 CARCHFLAGS="-march=ia64 "
256 CARCHFLAGS="-mcpu=v9 "
260 CARCHFLAGS="-mcpu=750 "
264 CARCHFLAGS="-march=i386 "
268 CARCHFLAGS="-march=armv4 "
271 AC_MSG_WARN([[Your architecture is unknown for makepkg.conf, consider adding it to configure.ac]])
277 # Now do some things common to all architectures
283 # Check for documentation support and status
284 AC_CHECK_PROGS([ASCIIDOC], [asciidoc])
285 AC_MSG_CHECKING([for building documentation])
286 if test "x$wantdoc" = "xyes" ; then
287 if test $ASCIIDOC ; then
288 AC_MSG_RESULT([yes, enabled by configure])
290 asciidoc="(warning : asciidoc not installed)"
291 AC_MSG_RESULT([yes $asciidoc])
295 AC_MSG_RESULT([no, disabled by configure])
298 AM_CONDITIONAL(WANT_DOC, test "x$wantdoc" = "xyes")
300 # Check for doxygen support and status
301 AC_CHECK_PROGS([DOXYGEN], [doxygen])
302 AC_MSG_CHECKING([for doxygen])
303 if test "x$wantdoxygen" = "xyes" ; then
304 if test $DOXYGEN ; then
308 AC_MSG_RESULT([no, doxygen missing])
312 AC_MSG_RESULT([no, disabled by configure])
315 AM_CONDITIONAL(USE_DOXYGEN, test "x$usedoxygen" = "xyes")
317 # Enable or disable debug code
318 AC_MSG_CHECKING(for debug mode request)
319 if test "x$debug" = "xyes" ; then
321 AC_DEFINE([PACMAN_DEBUG], , [Enable debug code])
323 AC_CHECK_HEADERS([mcheck.h])
324 # Check for -fstack-protector availability
325 GCC_STACK_PROTECT_LIB
327 GCC_FORTIFY_SOURCE_CC
328 CFLAGS="$CFLAGS -g -Wall -Werror"
331 CFLAGS="$CFLAGS -Wall"
334 # Enable or disable use of git version in pacman version string
335 AC_MSG_CHECKING(whether to use git version if available)
336 if test "x$wantgitver" = "xyes" ; then
337 AC_CHECK_PROGS([GIT], [git])
338 AC_CHECK_FILE([.git/], hasgitdir=yes)
339 if test $GIT -a "x$hasgitdir" = "xyes"; then
342 AC_DEFINE([USE_GIT_VERSION], , [Use GIT version in version string])
344 AC_MSG_RESULT([no, git or .git dir missing])
348 AC_MSG_RESULT([no, disabled by configure])
351 AM_CONDITIONAL(USE_GIT_VERSION, test "x$usegitver" = "xyes")
355 # Set package file extension
357 AC_DEFINE_UNQUOTED([PKGEXT], "$PKGEXT", [The file extension used by pacman packages])
358 # Set source package file extension
360 AC_DEFINE_UNQUOTED([SRCEXT], "$SRCEXT", [The file extension used by pacman source packages])
361 # Set makepkg build script name
362 AC_SUBST(BUILDSCRIPT)
363 AC_DEFINE_UNQUOTED([BUILDSCRIPT], "$BUILDSCRIPT", [The build script name used by makepkg])
365 # Configuration files
368 lib/libalpm/po/Makefile.in
376 test/pacman/tests/Makefile
387 source code location : ${srcdir}
389 sysconfdir : $(eval echo ${sysconfdir})
390 conf file : $(eval echo ${sysconfdir})/pacman.conf
391 localstatedir : $(eval echo ${localstatedir})
392 database dir : $(eval echo ${localstatedir})/lib/pacman/
393 cache dir : $(eval echo ${localstatedir})/cache/pacman/pkg/
395 compiler flags : ${CFLAGS}
398 Architecture : ${CARCH}
399 Architecture flags : ${CARCHFLAGS}
401 Filesize command : ${SIZECMD}
402 In-place sed command : ${SEDINPLACE}
404 libalpm version : ${LIB_VERSION}
405 libalpm version info : ${LIB_VERSION_INFO}
406 pacman version : ${PACKAGE_VERSION}
407 using git version : ${usegitver}
409 Directory and file information:
410 root working directory : ${ROOTDIR}
411 package extension : ${PKGEXT}
412 source pkg extension : ${SRCEXT}
413 build script name : ${BUILDSCRIPT}
416 Run make in doc/ dir : ${wantdoc} ${asciidoc}
417 Doxygen support : ${usedoxygen}
418 debug support : ${debug}
421 # vim:set ts=2 sw=2 noet: