mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 06:50:12 +00:00
0d61953e69
Update configure version strings for 1.6.5.2. Note that macos kext can be of form XXXX.YY[.ZZ[(d|a|b|fc)NNN]] where d dev, a alpha, b beta, f final candidate so we have no way to represent 1.6.5.2. Use 1.6.6 dev 2 for macos. Change-Id: I4ab3fca89c95ad331db4b0a9823138e87f823c3b Reviewed-on: http://gerrit.openafs.org/10586 Tested-by: Stephan Wiesand <stephan.wiesand@desy.de> Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de>
27 lines
652 B
Plaintext
27 lines
652 B
Plaintext
AC_PRERQ([2.60])
|
|
AC_INIT([OpenAFS], m4_esyscmd([build-tools/git-version .]))
|
|
AC_CONFIG_AUX_DIR([build-tools])
|
|
AC_CONFIG_SRCDIR(src/libafs/Makefile.common.in)
|
|
AM_INIT_AUTOMAKE
|
|
|
|
AC_CONFIG_HEADER(src/config/afsconfig.h)
|
|
MACOS_VERSION=1.6.6d2
|
|
|
|
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.version-CML \
|
|
src/config/Makefile.version-NOCML \
|
|
src/libafs/Makefile.common \
|
|
src/libafs/MakefileProto \
|
|
)
|