mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
Enable the use of a config.h file and autoheader. At this point we don't
actually *use* the resulting configuration file, but it keeps autoconf from creating an insanely long compiler command line, which can cause problems all by itself. Eventually we can do: #ifdef HAVE_CONFIG_H #include "config.h" #endif ... to get the same information.
This commit is contained in:
parent
bdf061f6e7
commit
2ef2f06125
1
INSTALL
1
INSTALL
@ -7,6 +7,7 @@ and GNU tools installed.
|
||||
If you checked out source from CVS you will need to run autoconf to
|
||||
generate configure, otherwise you don't have to.
|
||||
|
||||
$ autoheader
|
||||
$ autoconf
|
||||
|
||||
Then run configure to detect your platform settings and generate makefiles.
|
||||
|
@ -160,6 +160,7 @@ everything: all doc rdf
|
||||
install_everything: everything install install_doc install_rdf
|
||||
|
||||
dist: spotless perlreq spec
|
||||
autoheader
|
||||
autoconf
|
||||
rm -rf ./autom4te*.cache
|
||||
|
||||
|
@ -3,6 +3,7 @@ dnl a configure script.
|
||||
AC_PREREQ(2.53)
|
||||
AC_REVISION([$Id$])
|
||||
AC_INIT(nasm.c)
|
||||
AC_CONFIG_HEADERS(config.h)
|
||||
|
||||
dnl Check for broken VPATH handling on older NetBSD makes.
|
||||
AC_DEFUN(AC_PROG_MAKE_VPATHOK,
|
||||
|
@ -29,7 +29,9 @@ work=`pwd`/nasm-release.$$
|
||||
mkdir "$work"
|
||||
cd "$work"
|
||||
|
||||
if $real; then
|
||||
# SF uses a mirror server for anonymous CVS now. Therefore, use a real
|
||||
# identity if we have one; otherwise, change the "true" below to "$real".
|
||||
if true; then
|
||||
# Need to tag the tree, use real account
|
||||
CVS="cvs -z3 -d ${sfuser}@cvs.nasm.sourceforge.net:/cvsroot/nasm"
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user