2007-12-19 14:52:01 +01:00
|
|
|
Index: build/top.mk
|
|
|
|
===================================================================
|
|
|
|
--- build/top.mk.orig
|
2006-12-19 00:17:14 +01:00
|
|
|
+++ build/top.mk
|
2007-12-19 14:52:01 +01:00
|
|
|
@@ -39,7 +39,7 @@ libdir = @libdir@
|
2006-12-19 00:17:14 +01:00
|
|
|
libexecdir = @libexecdir@
|
|
|
|
localstatedir = @localstatedir@
|
|
|
|
mandir = @mandir@
|
|
|
|
-moduledir = @libexecdir@$(ldap_subdir)
|
|
|
|
+moduledir = @libexecdir@/modules
|
|
|
|
sbindir = @sbindir@
|
|
|
|
sharedstatedir = @sharedstatedir@
|
|
|
|
sysconfdir = @sysconfdir@$(ldap_subdir)
|
2007-12-19 14:52:01 +01:00
|
|
|
@@ -58,7 +58,7 @@ INSTALL_PROGRAM = $(INSTALL)
|
2006-12-19 00:17:14 +01:00
|
|
|
INSTALL_DATA = $(INSTALL) -m 644
|
|
|
|
INSTALL_SCRIPT = $(INSTALL)
|
|
|
|
|
|
|
|
-STRIP = -s
|
|
|
|
+#STRIP = -s
|
|
|
|
|
|
|
|
LINT = lint
|
|
|
|
5LINT = 5lint
|
2007-12-19 14:52:01 +01:00
|
|
|
Index: configure.in
|
|
|
|
===================================================================
|
|
|
|
--- configure.in.orig
|
2006-12-19 00:17:14 +01:00
|
|
|
+++ configure.in
|
2007-12-19 14:52:01 +01:00
|
|
|
@@ -67,7 +67,9 @@ dnl Determine host platform
|
2006-12-19 00:17:14 +01:00
|
|
|
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)
|
2010-03-18 23:06:18 +01:00
|
|
|
|