forked from jengelh/openldap2
f83edd3df7
(to list enabled static overlays) - Build all overlays except syncprov and ppolicy as dynamic modules (Fixes bnc#648479) - Added README.dynamic-overlays to point out some details dynamice overlays OBS-URL: https://build.opensuse.org/package/show/network:ldap/openldap2?expand=0&rev=55
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
From 5ea89a18adad1c9e03fc8792dd95a4ad80603025 Mon Sep 17 00:00:00 2001
|
|
From: Ralf Haferkamp <rhafer@suse.de>
|
|
Date: Wed, 16 Jun 2010 14:04:07 +0200
|
|
Subject: [PATCH 01/11] build-adjustments
|
|
|
|
- Adjusted modules path
|
|
- don't use automake macro
|
|
|
|
2 files changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/build/top.mk b/build/top.mk
|
|
index 0794173..eb4c825 100644
|
|
--- a/build/top.mk
|
|
+++ b/build/top.mk
|
|
@@ -40,7 +40,7 @@ libdir = @libdir@
|
|
libexecdir = @libexecdir@
|
|
localstatedir = @localstatedir@
|
|
mandir = @mandir@
|
|
-moduledir = @libexecdir@$(ldap_subdir)
|
|
+moduledir = @libexecdir@/modules
|
|
sbindir = @sbindir@
|
|
sharedstatedir = @sharedstatedir@
|
|
sysconfdir = @sysconfdir@$(ldap_subdir)
|
|
diff --git a/configure.in b/configure.in
|
|
index ba05a5a..e658b81 100644
|
|
--- a/configure.in
|
|
+++ b/configure.in
|
|
@@ -67,7 +67,9 @@ dnl Determine host platform
|
|
dnl we try not to use this for much
|
|
AC_CANONICAL_TARGET([])
|
|
|
|
-AM_INIT_AUTOMAKE([$OL_PACKAGE],[$OL_VERSION], [no defines])dnl
|
|
+AC_PROG_MAKE_SET
|
|
+PACKAGE=$OL_PACKAGE
|
|
+VERSION=$OL_VERSION
|
|
AC_SUBST(PACKAGE)dnl
|
|
AC_SUBST(VERSION)dnl
|
|
AC_DEFINE_UNQUOTED(OPENLDAP_PACKAGE,"$PACKAGE",Package)
|
|
--
|
|
1.7.1
|
|
|