Commit 63116812 authored by Ben Laurie's avatar Ben Laurie
Browse files

Build on MacOS.

parent b45e874d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -5,4 +5,6 @@ BRANCH=`git rev-parse --abbrev-ref HEAD`
./Configure $@ no-symlinks
make files
util/mk1mf.pl OUT=out.$BRANCH TMP=tmp.$BRANCH INC=inc.$BRANCH copy > makefile.$BRANCH
make -f makefile.$BRANCH init
MAKE=make
which bsdmake > /dev/null && MAKE=bsdmake
$MAKE -f makefile.$BRANCH init
+3 −1
Original line number Diff line number Diff line
@@ -2,4 +2,6 @@

BRANCH=`git rev-parse --abbrev-ref HEAD`

make -f makefile.$BRANCH $@
MAKE=make
which bsdmake > /dev/null && MAKE=bsdmake
$MAKE -f makefile.$BRANCH $@
+2 −2
Original line number Diff line number Diff line
#!/usr/local/bin/perl
#!/usr/bin/env perl
# A bit of an evil hack but it post processes the file ../MINFO which
# is generated by `make files` in the top directory.
# This script outputs one mega makefile that has no shell stuff or any
@@ -669,7 +669,7 @@ RANLIB=$ranlib
MKDIR=$mkdir
MKLIB=$bin_dir$mklib
MLFLAGS=$mlflags
ASM=$bin_dir$asm
#ASM=$bin_dir$asm

# FIPS validated module and support file locations

+1 −1
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ sub special_compile_target
		{
		return << "EOF";
\$(TMP_D)/x86_64-gcc.o:	crypto/bn/asm/x86_64-gcc.c
	\$(CC) \$(CFLAGS) -c -o \$@ crypto/bn/asm/x86_64-gcc.c
	\$(CC) \$(LIB_CFLAGS) -c -o \$@ crypto/bn/asm/x86_64-gcc.c
EOF
		}
	return undef;