summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-03-12 12:52:36 +0000
committerUlf Möller <ulf@openssl.org>2000-03-12 12:52:36 +0000
commit3a6a39c3732a5da986004d86ade879ee24ebac33 (patch)
treee565250bd063c69aa907c9c85e09bc72b5eb6e30
parentcee814f9d5bf81145edc35c5775b2ad852e55e42 (diff)
asm workaround for SuSE Linux
proposed by Holger Reif
-rw-r--r--crypto/bf/Makefile.ssl2
-rw-r--r--crypto/bn/Makefile.ssl4
-rw-r--r--crypto/cast/Makefile.ssl2
-rw-r--r--crypto/des/Makefile.ssl4
-rw-r--r--crypto/md5/Makefile.ssl2
-rw-r--r--crypto/rc4/Makefile.ssl2
-rw-r--r--crypto/rc5/Makefile.ssl2
-rw-r--r--crypto/ripemd/Makefile.ssl2
-rw-r--r--crypto/sha/Makefile.ssl2
9 files changed, 11 insertions, 11 deletions
diff --git a/crypto/bf/Makefile.ssl b/crypto/bf/Makefile.ssl
index 8da7c14e3e..1bb56887a5 100644
--- a/crypto/bf/Makefile.ssl
+++ b/crypto/bf/Makefile.ssl
@@ -49,7 +49,7 @@ lib: $(LIBOBJ)
# elf
asm/bx86-elf.o: asm/bx86unix.cpp
- $(CPP) -DELF asm/bx86unix.cpp | as -o asm/bx86-elf.o
+ $(CPP) -DELF -x c asm/bx86unix.cpp | as -o asm/bx86-elf.o
# solaris
asm/bx86-sol.o: asm/bx86unix.cpp
diff --git a/crypto/bn/Makefile.ssl b/crypto/bn/Makefile.ssl
index c1edf52bb0..29ca88ccd5 100644
--- a/crypto/bn/Makefile.ssl
+++ b/crypto/bn/Makefile.ssl
@@ -72,10 +72,10 @@ lib: $(LIBOBJ)
# elf
asm/bn86-elf.o: asm/bn86unix.cpp
- $(CPP) -DELF asm/bn86unix.cpp | as -o asm/bn86-elf.o
+ $(CPP) -DELF -x c asm/bn86unix.cpp | as -o asm/bn86-elf.o
asm/co86-elf.o: asm/co86unix.cpp
- $(CPP) -DELF asm/co86unix.cpp | as -o asm/co86-elf.o
+ $(CPP) -DELF -x c asm/co86unix.cpp | as -o asm/co86-elf.o
# solaris
asm/bn86-sol.o: asm/bn86unix.cpp
diff --git a/crypto/cast/Makefile.ssl b/crypto/cast/Makefile.ssl
index 8ff8590cd8..afba084e8b 100644
--- a/crypto/cast/Makefile.ssl
+++ b/crypto/cast/Makefile.ssl
@@ -52,7 +52,7 @@ lib: $(LIBOBJ)
# elf
asm/cx86-elf.o: asm/cx86unix.cpp
- $(CPP) -DELF asm/cx86unix.cpp | as -o asm/cx86-elf.o
+ $(CPP) -DELF -x c asm/cx86unix.cpp | as -o asm/cx86-elf.o
# solaris
asm/cx86-sol.o: asm/cx86unix.cpp
diff --git a/crypto/des/Makefile.ssl b/crypto/des/Makefile.ssl
index 88cd1ab114..92153d1540 100644
--- a/crypto/des/Makefile.ssl
+++ b/crypto/des/Makefile.ssl
@@ -65,10 +65,10 @@ des: des.o cbc3_enc.o lib
# elf
asm/dx86-elf.o: asm/dx86unix.cpp
- $(CPP) -DELF asm/dx86unix.cpp | as -o asm/dx86-elf.o
+ $(CPP) -DELF -x c asm/dx86unix.cpp | as -o asm/dx86-elf.o
asm/yx86-elf.o: asm/yx86unix.cpp
- $(CPP) -DELF asm/yx86unix.cpp | as -o asm/yx86-elf.o
+ $(CPP) -DELF -x c asm/yx86unix.cpp | as -o asm/yx86-elf.o
# solaris
asm/dx86-sol.o: asm/dx86unix.cpp
diff --git a/crypto/md5/Makefile.ssl b/crypto/md5/Makefile.ssl
index 3627d9475d..2c0489d48e 100644
--- a/crypto/md5/Makefile.ssl
+++ b/crypto/md5/Makefile.ssl
@@ -55,7 +55,7 @@ lib: $(LIBOBJ)
# elf
asm/mx86-elf.o: asm/mx86unix.cpp
- $(CPP) -DELF asm/mx86unix.cpp | as -o asm/mx86-elf.o
+ $(CPP) -DELF -x c asm/mx86unix.cpp | as -o asm/mx86-elf.o
# solaris
asm/mx86-sol.o: asm/mx86unix.cpp
diff --git a/crypto/rc4/Makefile.ssl b/crypto/rc4/Makefile.ssl
index d92750af05..d3dff0f4a1 100644
--- a/crypto/rc4/Makefile.ssl
+++ b/crypto/rc4/Makefile.ssl
@@ -51,7 +51,7 @@ lib: $(LIBOBJ)
# elf
asm/rx86-elf.o: asm/rx86unix.cpp
- $(CPP) -DELF asm/rx86unix.cpp | as -o asm/rx86-elf.o
+ $(CPP) -DELF -x c asm/rx86unix.cpp | as -o asm/rx86-elf.o
# solaris
asm/rx86-sol.o: asm/rx86unix.cpp
diff --git a/crypto/rc5/Makefile.ssl b/crypto/rc5/Makefile.ssl
index 695870f4a8..3d16856029 100644
--- a/crypto/rc5/Makefile.ssl
+++ b/crypto/rc5/Makefile.ssl
@@ -49,7 +49,7 @@ lib: $(LIBOBJ)
# elf
asm/r586-elf.o: asm/r586unix.cpp
- $(CPP) -DELF asm/r586unix.cpp | as -o asm/r586-elf.o
+ $(CPP) -DELF -x c asm/r586unix.cpp | as -o asm/r586-elf.o
# solaris
asm/r586-sol.o: asm/r586unix.cpp
diff --git a/crypto/ripemd/Makefile.ssl b/crypto/ripemd/Makefile.ssl
index 18ab4a5186..79948bb69b 100644
--- a/crypto/ripemd/Makefile.ssl
+++ b/crypto/ripemd/Makefile.ssl
@@ -47,7 +47,7 @@ lib: $(LIBOBJ)
# elf
asm/rm86-elf.o: asm/rm86unix.cpp
- $(CPP) -DELF asm/rm86unix.cpp | as -o asm/rm86-elf.o
+ $(CPP) -DELF -x c asm/rm86unix.cpp | as -o asm/rm86-elf.o
# solaris
asm/rm86-sol.o: asm/rm86unix.cpp
diff --git a/crypto/sha/Makefile.ssl b/crypto/sha/Makefile.ssl
index b10406437c..d30e7244c0 100644
--- a/crypto/sha/Makefile.ssl
+++ b/crypto/sha/Makefile.ssl
@@ -46,7 +46,7 @@ lib: $(LIBOBJ)
# elf
asm/sx86-elf.o: asm/sx86unix.cpp
- $(CPP) -DELF asm/sx86unix.cpp | as -o asm/sx86-elf.o
+ $(CPP) -DELF -x c asm/sx86unix.cpp | as -o asm/sx86-elf.o
# solaris
asm/sx86-sol.o: asm/sx86unix.cpp