~ssalley/ubuntu/maverick/likewise-open/likewise-open.fix627272

« back to all changes in this revision

Viewing changes to lsass/configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Gerald Carter, Michael Casadevall, Gerald Carter
  • Date: 2010-03-13 07:42:44 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100313074244-j1gy0zo19cc32xhl
Tags: 5.4.0.42111-1
[ Michael Casadevall ]
* LP: #517300
  - added debian/patches/disable_parallel_builds.diff to allow successful builds
    on non-x86 architectures caused by improperly parsing /proc/cpuinfo to
    determine the number of CPUs and set make -jX.
  - added debian/patches/correct_lwio_configure_detection.diff to correct configure
    tests for properly checking proc filesystems on non-x86 linux platforms
  - added ${misc:Depends} to Depends lines to satisfy lintian
  - Added debian/README.source to satisfy lintian 
  - Bumped standards version to 3.8.3

[ Gerald Carter ]
* New upstream release. (LP: #538616)
* likewise-open.install: Include uninstalled binaries and ncalrpc
    servers required for domainjoin-cli {join,leave}
* patches/version-in-share.diff:
  - Corrected location of VERSION file in lsassd

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
AM_CFLAGS=""
13
13
AM_LDFLAGS=""
14
14
 
15
 
PKG_VERSION="5.0.0"
 
15
COMPONENT_VERSION="5.0.0.0"
16
16
 
17
17
# Platform-specific stuff
18
18
 
205
205
# Package version
206
206
 
207
207
AC_ARG_WITH([version],
208
 
        [AC_HELP_STRING([--with-version=<pkg-version>], [package version <major>.<minor>.<build>])],
 
208
        [AC_HELP_STRING([--with-version=<comp-version>], [Component version <major>.<minor>.<build>.<revision>])],
209
209
        [
210
 
                PKG_VERSION="$withval"
 
210
                COMPONENT_VERSION="$withval"
211
211
        ])
212
 
AC_DEFINE_UNQUOTED(PKG_VERSION, "$PKG_VERSION", [Package Version])
 
212
AC_DEFINE_UNQUOTED(COMPONENT_VERSION, "$COMPONENT_VERSION", [Component Version])
213
213
 
214
214
# lwreg
215
215
 
874
874
 
875
875
AC_PATH_PROG([IDL], [dceidl], [no], [$PATH:$DCERPC_PATH])
876
876
 
877
 
if test x"$IDL" = x"no"; then
878
 
    AC_MSG_WARN([DCERPC IDL compiler not found])
 
877
if test x"$IDL" = x"no" -a x"$ENABLE_COMPAT" = x"false"; then
 
878
    AC_MSG_ERROR([DCERPC IDL compiler not found])
879
879
fi
880
880
 
881
881
# Checks for typedefs, structures, and compiler characteristics.