summaryrefslogtreecommitdiff
path: root/security/nss/lib/freebl/mpi/Makefile
diff options
context:
space:
mode:
authornelsonb%netscape.com <devnull@localhost>2000-12-15 05:38:09 +0000
committernelsonb%netscape.com <devnull@localhost>2000-12-15 05:38:09 +0000
commit40ea3cc636c7595f311b0b345c531acf89cd9295 (patch)
tree883eff7d23a49686fccf8797b97161298ef8f990 /security/nss/lib/freebl/mpi/Makefile
parent66cc8446de464282048c0b78b4351332e01430dc (diff)
downloadnss-hg-40ea3cc636c7595f311b0b345c531acf89cd9295.tar.gz
Implement new feature test macros for controlling the use of mp_word over
individual types of operations, e.g., multiply, divide, add, subtract. Use a specific combination of these for 32-bit on AIX.
Diffstat (limited to 'security/nss/lib/freebl/mpi/Makefile')
-rw-r--r--security/nss/lib/freebl/mpi/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/security/nss/lib/freebl/mpi/Makefile b/security/nss/lib/freebl/mpi/Makefile
index 0ae032ee5..ab84251cf 100644
--- a/security/nss/lib/freebl/mpi/Makefile
+++ b/security/nss/lib/freebl/mpi/Makefile
@@ -179,9 +179,15 @@ ifeq ($(TARGET),32AIX)
#
CC = xlC_r
MPICMN += -DMP_USE_UINT_DIGIT
-MPICMN += -DMP_USE_LONG_LONG_MULTIPLY
+MPICMN += -DMP_NO_DIV_WORD
+#MPICMN += -DMP_NO_MUL_WORD
+MPICMN += -DMP_NO_ADD_WORD
+MPICMN += -DMP_NO_SUB_WORD
+#MPICMN += -DMP_NO_MP_WORD
+#MPICMN += -DMP_USE_LONG_LONG_MULTIPLY
CFLAGS = -O -DAIX -DSYSV -qarch=com -DAIX4_3 -DXP_UNIX -UDEBUG -DNDEBUG $(MPICMN)
#CFLAGS = -g -DAIX -DSYSV -qarch=com -DAIX4_3 -DXP_UNIX -UDEBUG -DNDEBUG $(MPICMN)
+#CFLAGS += -pg
endif
ifeq ($(TARGET),64AIX)