Skip to content

Commit

Permalink
Remove buildconf script references.
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
jpeach committed Dec 5, 2018
1 parent 0687089 commit 7452176
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions BuildConfig/run-autoconf
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dcerpc/Makefile.am
Expand Up @@ -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)
Expand Down
1 change: 0 additions & 1 deletion dcerpc/README.local
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion www/content/source.txt
Expand Up @@ -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

Expand Down

0 comments on commit 7452176

Please sign in to comment.