summaryrefslogtreecommitdiff
path: root/server/build_macros.m4
diff options
context:
space:
mode:
Diffstat (limited to 'server/build_macros.m4')
-rw-r--r--server/build_macros.m421
1 files changed, 0 insertions, 21 deletions
diff --git a/server/build_macros.m4 b/server/build_macros.m4
deleted file mode 100644
index 37d96439..00000000
--- a/server/build_macros.m4
+++ /dev/null
@@ -1,21 +0,0 @@
-AC_DEFUN([BUILD_WITH_SHARED_BUILD_DIR],
- [ AC_ARG_WITH([shared-build-dir],
- [AC_HELP_STRING([--with-shared-build-dir=DIR],
- [temporary build directory where libraries are installed [$srcdir/sharedbuild]])])
-
- sharedbuilddir="$srcdir/sharedbuild"
- if test x"$with_shared_build_dir" != x; then
- sharedbuilddir=$with_shared_build_dir
- CFLAGS="$CFLAGS -I$with_shared_build_dir/include"
- CPPFLAGS="$CPPFLAGS -I$with_shared_build_dir/include"
- LDFLAGS="$LDFLAGS -L$with_shared_build_dir/lib"
- fi
- 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])