mirror of
https://git.openafs.org/openafs.git
synced 2025-01-31 05:27:44 +00:00
eb107ed5c6
Update version strings for the 1.8.1 release. (Note that the version number for Windows for the 1.8.1 prereleases was erroneously 1.8.99xx, when it should have been 1.8.00xx to reflect "next after 1.8.0-final".) Change-Id: I2ce32aeae50d80b88cbc3f73f6787e3a15747085 Reviewed-on: https://gerrit.openafs.org/13266 Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de> Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
31 lines
718 B
Plaintext
31 lines
718 B
Plaintext
AC_PRERQ([2.60])
|
|
AC_INIT([OpenAFS],
|
|
m4_esyscmd([build-tools/git-version .]),
|
|
[openafs-bugs@openafs.org], [],
|
|
[http://www.openafs.org/])
|
|
AC_CONFIG_AUX_DIR([build-tools])
|
|
AC_CONFIG_SRCDIR([src/libafs/Makefile.common.in])
|
|
AM_INIT_AUTOMAKE([foreign])
|
|
|
|
AC_CONFIG_HEADER([src/config/afsconfig.h])
|
|
MACOS_VERSION=1.8.1
|
|
|
|
AC_SUBST([MACOS_VERSION])
|
|
|
|
dnl If the user hasn't specified CFLAGS don't let configure pick -g -O2
|
|
AS_IF([test -z "$CFLAGS"], [CFLAGS=" "], [])
|
|
AC_PROG_CC
|
|
|
|
OPENAFS_CONFIGURE_COMMON
|
|
|
|
AC_OUTPUT([
|
|
Makefile
|
|
src/config/Makefile
|
|
src/config/Makefile.config
|
|
src/config/Makefile.lwp
|
|
src/config/Makefile.version-CML
|
|
src/config/Makefile.version-NOCML
|
|
src/libafs/Makefile.common
|
|
src/libafs/MakefileProto
|
|
])
|