From 74521760b97a2728b80ca5a8702912a84fc59d99 Mon Sep 17 00:00:00 2001 From: James Peach Date: Tue, 4 Dec 2018 20:43:45 -0800 Subject: [PATCH] Remove `buildconf` script references. The old `buildconf` script was omitted from the original open source code drop. We don't really need it, however, since we can just replace it with `autoreconf`. --- BuildConfig/run-autoconf | 6 +++--- dcerpc/Makefile.am | 2 +- dcerpc/README.local | 1 - www/content/source.txt | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/BuildConfig/run-autoconf b/BuildConfig/run-autoconf index a1dd418c..fff8d460 100755 --- a/BuildConfig/run-autoconf +++ b/BuildConfig/run-autoconf @@ -126,10 +126,10 @@ message SDKROOT is $SDKROOT message SDK architecture is $SDKARCH if autoreconf_is_required ; then - message "running buildconf" - ./buildconf || error buildconf failed + message "running autoreconf" + autoreconf -f -i || error autoreconf failed else - message "configure exists, skipping buildconf phase" + message "configure exists, skipping autoreconf phase" fi case $(sw_vers -productVersion) in diff --git a/dcerpc/Makefile.am b/dcerpc/Makefile.am index 93422e5d..f0117241 100644 --- a/dcerpc/Makefile.am +++ b/dcerpc/Makefile.am @@ -3,7 +3,7 @@ include $(top_srcdir)/include.mk SUBDIRS=compat libdcethread idl_compiler include idl_lib uuid ncklib dcelib rpcd demos perf tools -EXTRA_DIST=include.mk buildconf +EXTRA_DIST=include.mk dist-hook: -chmod -R a+r $(distdir) diff --git a/dcerpc/README.local b/dcerpc/README.local index d20132e7..47a28137 100644 --- a/dcerpc/README.local +++ b/dcerpc/README.local @@ -12,7 +12,6 @@ contents of the dceext threads stuff... Then, to build from scratch: autoreconf -fis -./buildconf ./configure --prefix=/opt/dcerpc --with-pthread-ext-dir=/opt/dcerpc make diff --git a/www/content/source.txt b/www/content/source.txt index 4634b315..4d2d6100 100644 --- a/www/content/source.txt +++ b/www/content/source.txt @@ -24,7 +24,7 @@ To build on Linux or other Unix-like systems, use the autotools build system. ~/dcerpc.git $ cd dcerpc - ~/dcerpc.git $ ./buildconf + ~/dcerpc.git $ autoreconf -fi ~/dcerpc.git $ ./configure && make ~/dcerpc.git $ sudo make install