makepkg: use double brackets
[pacman-ng.git] / configure.ac
blob008975b8af2cc5ff7a487cf2a8b0f6da736a943a
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3 # Minimum version of autoconf required
4 AC_PREREQ(2.60)
6 # UPDATING VERSION NUMBERS FOR RELEASES
8 # libalpm:
9 # current
10 #   The most recent interface number that this library implements.
11 # revision
12 #   The implementation number of the current interface.
13 # age
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
27 #    increment age.
28 # 6. If any interfaces have been removed since the last public release, then
29 #    set age to 0.
31 # pacman:
32 #   Extreme huge major changes:
33 #     pacman_version_major += 1
34 #     pacman_version_minor = 0
35 #     pacman_version_micro = 0
37 #   Real releases:
38 #     pacman_version_minor += 1
39 #     pacman_version_micro = 0
41 #   Bugfix releases:
42 #     pacman_version_micro += 1
44 m4_define([lib_current], [5])
45 m4_define([lib_revision], [0])
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], [0])
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])
59 AC_CANONICAL_HOST
60 AM_INIT_AUTOMAKE
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
67 AC_SUBST(LIB_VERSION)
68 AC_SUBST(LIB_VERSION_INFO)
69 AC_DEFINE_UNQUOTED([LIB_VERSION], ["$LIB_VERSION"], [libalpm version number])
71 # Help line for root directory
72 AC_ARG_WITH(root-dir,
73         AS_HELP_STRING([--with-root-dir=path], [set the location of pacman's root operating directory]),
74         [ROOTDIR=$withval], [ROOTDIR=/])
76 # Help line for package extension
77 AC_ARG_WITH(pkg-ext,
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
82 AC_ARG_WITH(src-ext,
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 database extension
87 AC_ARG_WITH(db-ext,
88         AS_HELP_STRING([--with-db-ext=ext], [set the file extension used by the database]),
89         [DBEXT=$withval], [DBEXT=.db.tar.gz])
91 # Help line for buildscript filename
92 AC_ARG_WITH(buildscript,
93         AS_HELP_STRING([--with-buildscript=name], [set the build script name used by makepkg]),
94         [BUILDSCRIPT=$withval], [BUILDSCRIPT=PKGBUILD])
96 # Help line for libfetch
97 AC_ARG_ENABLE(internal-download,
98         AS_HELP_STRING([--disable-internal-download], [do not build with libfetch support]),
99         [internaldownload=$enableval], [internaldownload=yes])
101 # Help line for documentation
102 AC_ARG_ENABLE(doc,
103         AS_HELP_STRING([--enable-doc], [run make in doc/ dir]),
104         [wantdoc=$enableval], [wantdoc=no])
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
112 AC_ARG_ENABLE(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.
123 AC_PROG_AWK
124 AC_PROG_CC_C99
125 AC_PROG_INSTALL
126 AC_PROG_LN_S
127 AC_PROG_MAKE_SET
128 AC_PROG_LIBTOOL
129 AC_CHECK_PROGS([PYTHON], [python2.6 python2.5 python], [false])
131 # find installed gettext
132 AM_GNU_GETTEXT([external])
133 AM_GNU_GETTEXT_VERSION(0.13.1)
135 # Check for libarchive
136 AC_CHECK_LIB([archive], [archive_read_data], ,
137         AC_MSG_ERROR([libarchive is needed to compile pacman!]))
139 # Enable or disable usage of libfetch
140 AC_MSG_CHECKING(whether to link with libfetch)
141 if test "x$internaldownload" = "xyes" ; then
142         AC_MSG_RESULT(yes)
143         AC_DEFINE([INTERNAL_DOWNLOAD], , [Use internal download library])
144         # Check for a download library if it was actually requested
145         AC_CHECK_LIB([fetch], [fetchParseURL], ,
146                 AC_MSG_ERROR([libfetch is needed to compile with internal download support]), [-lcrypto -ldl] )
147         # Check if libfetch supports conditional GET
148         # (version >=2.21, struct url has member last_modified)
149         AC_CHECK_MEMBER(struct url.last_modified, ,
150                 AC_MSG_ERROR([libfetch must be version 2.21 or greater]),
151                 [#include <fetch.h>] )
152 else
153         AC_MSG_RESULT(no)
155 AM_CONDITIONAL(INTERNAL_DOWNLOAD, test "x$internaldownload" = "xyes")
157 # Checks for header files.
158 AC_CHECK_HEADERS([fcntl.h glob.h libintl.h limits.h locale.h string.h strings.h sys/ioctl.h sys/param.h sys/statvfs.h sys/syslimits.h sys/time.h syslog.h wchar.h])
160 # Checks for typedefs, structures, and compiler characteristics.
161 AC_C_INLINE
162 AC_TYPE_MODE_T
163 AC_TYPE_OFF_T
164 AC_TYPE_PID_T
165 AC_TYPE_SIZE_T
166 AC_STRUCT_TM
167 AC_TYPE_UID_T
169 # Checks for library functions.
170 AC_FUNC_FORK
171 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
172 AC_FUNC_MKTIME
173 AC_TYPE_SIGNAL
174 AC_CHECK_FUNCS([geteuid realpath regcomp strcasecmp \
175                 strndup strrchr strsep swprintf \
176                 wcwidth uname])
178 # Enable large file support if available
179 AC_SYS_LARGEFILE
181 # Check if we can use symbol visibility support in GCC
182 GCC_VISIBILITY_CC
183 # Check if we have -fgnu89-inline flag
184 GCC_GNU89_INLINE_CC
186 # Host-dependant definitions
187 SIZECMD="stat -L -c %s"
188 SEDINPLACE="sed -i"
189 STRIP_BINARIES="--strip-all"
190 STRIP_SHARED="--strip-unneeded"
191 STRIP_STATIC="--strip-debug"
192 case "${host_os}" in
193         *bsd*)
194                 SIZECMD="stat -L -f %z"
195                 SEDINPLACE="sed -i ''"
196                 ;;
197         cygwin*)
198                 host_os_cygwin=yes
199                 CFLAGS="$CFLAGS -DCYGWIN"
200                 ;;
201         darwin*)
202                 host_os_darwin=yes
203                 SIZECMD="/usr/bin/stat -L -f %z"
204                 SEDINPLACE="/usr/bin/sed -i ''"
205                 STRIP_BINARIES=""
206                 STRIP_SHARED="-S"
207                 STRIP_STATIC="-S"
208                 ;;
209 esac
211 AM_CONDITIONAL([CYGWIN], test "x$host_os_cygwin" = "xyes")
212 AM_CONDITIONAL([DARWIN], test "x$host_os_darwin" = "xyes")
213 AC_SUBST(SIZECMD)
214 AC_SUBST(SEDINPLACE)
215 AC_SUBST(STRIP_BINARIES)
216 AC_SUBST(STRIP_SHARED)
217 AC_SUBST(STRIP_STATIC)
219 # Check for architecture, used in default makepkg.conf
220 # (Note single space left after CARCHFLAGS)
221 case "${host}" in
222         i686-*)
223                 CARCH="i686"
224                 CARCHFLAGS="-march=i686 "
225                 ;;
226         x86_64-*)
227                 CARCH="x86_64"
228                 CARCHFLAGS="-march=x86-64 "
229                 ;;
230         ia64-*)
231                 CARCH="ia64"
232                 CARCHFLAGS="-march=ia64 "
233                 ;;
234         sparc-*)
235                 CARCH="sparc"
236                 CARCHFLAGS="-mcpu=v9 "
237                 ;;
238         ppc-* | powerpc-*)
239                 CARCH="ppc"
240                 CARCHFLAGS="-mcpu=750 "
241                 ;;
242         i386-*)
243                 CARCH="i386"
244                 CARCHFLAGS="-march=i386 "
245                 ;;
246         arm-*)
247                 CARCH="arm"
248                 CARCHFLAGS="-march=armv4 "
249                 ;;
250         *)
251                 AC_MSG_WARN([[Your architecture is unknown for makepkg.conf, consider adding it to configure.ac]])
252                 CARCH="unknown"
253                 CARCHFLAGS=""
254                 ;;
255 esac
257 # Now do some things common to all architectures
258 CHOST="${host}"
259 AC_SUBST(CARCH)
260 AC_SUBST(CARCHFLAGS)
261 AC_SUBST(CHOST)
263 # Check for documentation support and status
264 AC_CHECK_PROGS([ASCIIDOC], [asciidoc])
265 AC_MSG_CHECKING([for building documentation])
266 if test "x$wantdoc" = "xyes" ; then
267         if test $ASCIIDOC ; then
268                 AC_MSG_RESULT([yes, enabled by configure])
269         else
270                 asciidoc="(warning : asciidoc not installed)"
271                 AC_MSG_RESULT([yes $asciidoc])
272         fi
273         wantdoc=yes
274 else
275         AC_MSG_RESULT([no])
276         wantdoc=no
278 AM_CONDITIONAL(WANT_DOC, test "x$wantdoc" = "xyes")
280 # Check for doxygen support and status
281 AC_CHECK_PROGS([DOXYGEN], [doxygen])
282 AC_MSG_CHECKING([for doxygen])
283 if test "x$wantdoxygen" = "xyes" ; then
284         if test $DOXYGEN ; then
285                 AC_MSG_RESULT([yes])
286                 usedoxygen=yes
287         else
288                 AC_MSG_RESULT([no, doxygen missing])
289                 usedoxygen=no
290         fi
291 else
292         AC_MSG_RESULT([no, disabled by configure])
293         usedoxygen=no
295 AM_CONDITIONAL(USE_DOXYGEN, test "x$usedoxygen" = "xyes")
297 # Enable or disable debug code
298 AC_MSG_CHECKING(for debug mode request)
299 if test "x$debug" = "xyes" ; then
300         AC_MSG_RESULT(yes)
301         AC_DEFINE([PACMAN_DEBUG], , [Enable debug code])
302         # Check for mcheck
303         AC_CHECK_HEADERS([mcheck.h])
304         # Check for -fstack-protector availability
305         GCC_STACK_PROTECT_LIB
306         GCC_STACK_PROTECT_CC
307         CFLAGS="$CFLAGS -g -Wall -Werror"
308 else
309         AC_MSG_RESULT(no)
310         CFLAGS="$CFLAGS -Wall"
313 # Enable or disable use of git version in pacman version string
314 AC_MSG_CHECKING(whether to use git version if available)
315 if test "x$wantgitver" = "xyes" ; then
316         AC_CHECK_PROGS([GIT], [git])
317         AC_CHECK_FILE([.git/], hasgitdir=yes)
318         if test $GIT -a "x$hasgitdir" = "xyes"; then
319                 AC_MSG_RESULT([yes])
320                 usegitver=yes
321                 AC_DEFINE([USE_GIT_VERSION], , [Use GIT version in version string])
322         else
323                 AC_MSG_RESULT([no, git or .git dir missing])
324                 usegitver=no
325         fi
326 else
327         AC_MSG_RESULT([no, disabled by configure])
328         usegitver=no
330 AM_CONDITIONAL(USE_GIT_VERSION, test "x$usegitver" = "xyes")
332 # Set root directory
333 AC_SUBST(ROOTDIR)
334 # Set package file extension
335 AC_SUBST(PKGEXT)
336 AC_DEFINE_UNQUOTED([PKGEXT], "$PKGEXT", [The file extension used by pacman packages])
337 # Set source package file extension
338 AC_SUBST(SRCEXT)
339 AC_DEFINE_UNQUOTED([SRCEXT], "$SRCEXT", [The file extension used by pacman source packages])
340 # Set database file extension
341 AC_SUBST(DBEXT)
342 AC_DEFINE_UNQUOTED([DBEXT], "$DBEXT", [The file extension used by pacman databases])
343 # Set makepkg build script name
344 AC_SUBST(BUILDSCRIPT)
345 AC_DEFINE_UNQUOTED([BUILDSCRIPT], "$BUILDSCRIPT", [The build script name used by makepkg])
347 # Configuration files
348 AC_CONFIG_FILES([
349 lib/libalpm/Makefile
350 lib/libalpm/po/Makefile.in
351 src/pacman/Makefile
352 src/util/Makefile
353 scripts/Makefile
354 doc/Makefile
355 etc/Makefile
356 po/Makefile.in
357 test/pacman/Makefile
358 test/pacman/tests/Makefile
359 test/util/Makefile
360 contrib/Makefile
361 Makefile
363 AC_OUTPUT
365 echo "
366 ${PACKAGE_NAME}:
368   Build information:
369     source code location   : ${srcdir}
370     prefix                 : ${prefix}
371     sysconfdir             : $(eval echo ${sysconfdir})
372        conf file           : $(eval echo ${sysconfdir})/pacman.conf
373     localstatedir          : $(eval echo ${localstatedir})
374        database dir        : $(eval echo ${localstatedir})/lib/pacman/
375        cache dir           : $(eval echo ${localstatedir})/cache/pacman/pkg/
376     compiler               : ${CC}
377     compiler flags         : ${CFLAGS}
378     defines                : ${DEFS}
380     Architecture           : ${CARCH}
381     Architecture flags     : ${CARCHFLAGS}
382     Host Type              : ${CHOST}
383     Filesize command       : ${SIZECMD}
384     In-place sed command   : ${SEDINPLACE}
386     libalpm version        : ${LIB_VERSION}
387     libalpm version info   : ${LIB_VERSION_INFO}
388     pacman version         : ${PACKAGE_VERSION}
389     using git version      : ${usegitver}
391   Directory and file information:
392     root working directory : ${ROOTDIR}
393     package extension      : ${PKGEXT}
394     source pkg extension   : ${SRCEXT}
395     database extension     : ${DBEXT}
396     build script name      : ${BUILDSCRIPT}
398   Compilation options:
399     Run make in doc/ dir   : ${wantdoc} ${asciidoc}
400     Use download library   : ${internaldownload}
401     Doxygen support        : ${usedoxygen}
402     debug support          : ${debug}
405 # vim:set ts=2 sw=2 noet: