diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-06-16 13:41:42 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-06-16 15:43:40 -0400 |
commit | b987027cd5597fd73ce285799d8c1c44266cb6fb (patch) | |
tree | c546af54c3a614a3559e3d05a723e25eb6ade744 | |
parent | fc8381f5ae7ef60c556beadf6deb8de887262f1b (diff) | |
download | sssd-b987027cd5597fd73ce285799d8c1c44266cb6fb.tar.gz sssd-b987027cd5597fd73ce285799d8c1c44266cb6fb.tar.xz sssd-b987027cd5597fd73ce285799d8c1c44266cb6fb.zip |
Add --with-aux-info config option to SSSD daemon
-rw-r--r-- | server/Makefile.am | 5 | ||||
-rw-r--r-- | server/build_macros.m4 | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/server/Makefile.am b/server/Makefile.am index acf060c6c..b70be9380 100644 --- a/server/Makefile.am +++ b/server/Makefile.am @@ -13,6 +13,11 @@ pipepath = @pipepath@ initdir = @initdir@ shadow_utils_path = @shadow_utils_path@ +AM_CFLAGS = +if WANT_AUX_INFO + AM_CFLAGS += -aux-info $@.X +endif + REPLACE_CFLAGS = \ -I $(srcdir)/../replace REPLACE_LIBS = \ diff --git a/server/build_macros.m4 b/server/build_macros.m4 index 5ddcc3c56..37d964392 100644 --- a/server/build_macros.m4 +++ b/server/build_macros.m4 @@ -13,3 +13,9 @@ AC_DEFUN([BUILD_WITH_SHARED_BUILD_DIR], AC_SUBST(sharedbuilddir) ]) +AC_DEFUN([BUILD_WITH_AUX_INFO], + [ AC_ARG_WITH([aux-info], + [AC_HELP_STRING([--with-aux-info], + [Build with -aux-info output])]) + ]) +AM_CONDITIONAL([WANT_AUX_INFO], [test x$with_aux_info = xyes]) |