1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Fixing build problem on Mac OS X; my mistake (typo)

This commit is contained in:
kris
2007-12-21 20:40:30 +00:00
parent 0d7496cc3e
commit 0e07f047a1
2 changed files with 3 additions and 3 deletions

2
libpcre/configure vendored
View File

@@ -5155,7 +5155,7 @@ cat >>confdefs.h <<\_ACEOF
#define MACOSX
_ACEOF
CFLAGS="$CFLAGS -fno-jump-threads"
CFLAGS="$CFLAGS -fno-thread-jumps"
;;
esac

View File

@@ -369,14 +369,14 @@ if test "$enable_ebcdic" = "yes"; then
"configure", this can be done via --enable-ebcdic.])
fi
dnl Mac OS X on Intel hack to remove jump threads
dnl Mac OS X on Intel hack to remove thread jumps
AC_CANONICAL_HOST
case "$host" in
i386-apple-darwin*)
macosx=yes
AC_DEFINE(MACOSX, [], [Mac OS X on Intel])
CFLAGS="$CFLAGS -fno-jump-threads"
CFLAGS="$CFLAGS -fno-thread-jumps"
;;
esac