diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-04-12 16:54:50 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-04-12 16:54:50 +0000 |
commit | 038d861eded9bfc75529e23ba8d5d6edd5e3ef98 (patch) | |
tree | 8383e607cb9bdcba3beef5d831e8a0f6e175f28c /configure.in | |
parent | 2030bd21f4923d4ddd4c093f8756451fc35220f8 (diff) | |
download | nasm-038d861eded9bfc75529e23ba8d5d6edd5e3ef98.tar.gz nasm-038d861eded9bfc75529e23ba8d5d6edd5e3ef98.tar.bz2 nasm-038d861eded9bfc75529e23ba8d5d6edd5e3ef98.zip |
Remove obsolete types; add <inttypes.h> where needed; header fixes
- Remove obsolete types like "uint32"; use "uint32_t" consistently.
- Make sure we include <inttypes.h> where needed.
- Header file guards should be FOO_H or SUBDIR_FOO_H; _FOO_H infringes
on the C implementation's namespace and should only be used when
writing libc!
- Change a few "int8_t" back to "char" where appropriate. There are
a lot more places where that should be done, though.
- Clean up the check for getuid/getgid in rdoff/rdlar.h.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index fab5140..e39f634 100644 --- a/configure.in +++ b/configure.in @@ -118,6 +118,9 @@ if test $ac_cv_func_snprintf = no; then AC_MSG_ERROR([NASM requires ISO C99 (specifically, "vsnprintf")]) fi +AC_CHECK_FUNCS(getuid) +AC_CHECK_FUNCS(getgid) + if test $ac_cv_prog_make_vpathok = no; then echo Copying generated srcs into build directory to compensate for VPATH breakage for file in macros.c insnsa.c insnsd.c insnsn.c insnsi.h version.h version.mac; do |