1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
--- configure.in.orig 2010-05-20 22:50:45.883576257 +1200
+++ configure.in 2010-05-20 22:51:52.405575089 +1200
@@ -1596,8 +1596,6 @@
;;
esac
-AM_CONDITIONAL(BUILD_YASM, test "$want_yasm" = "yes")
-
CFLAGS_or_unset=${CFLAGS-'(unset)'}
CPPFLAGS_or_unset=${CPPFLAGS-'(unset)'}
@@ -1995,7 +1993,7 @@
GMP_CHECK_LIBM_FOR_BUILD
-MPIR_AS="/yasm/yasm"
+MPIR_AS="yasm"
# How to assemble, used with CFLAGS etc, see mpn/Makeasm.am.
# Using the compiler is a lot easier than figuring out how to invoke the
@@ -3373,9 +3371,6 @@
# FIXME: Upcoming version of autoconf/automake don't like broken lines.
# Right now automake isn't accepting the new AC_CONFIG_FILES scheme.
-# allways configure all subdirectorys , even if there are not going to be built ,
-AC_CONFIG_SUBDIRS([yasm])
-
if test $enable_fat = yes; then
YASM_MAC_INC=yasm_mac.inc.fat
else
--- mpn/Makeasm.am.orig 2010-05-20 22:52:23.080577062 +1200
+++ mpn/Makeasm.am 2010-05-20 22:53:17.802576960 +1200
@@ -111,4 +111,4 @@
# .as assembler, assembled with Yasm
.as.lo:
- $(LIBTOOL) --mode=compile --tag=CC $(top_srcdir)/strip_fPIC.sh $(top_builddir)$(MPIR_AS) -I $(top_builddir) $(OBJECT_FORMAT) $(GSYM_FLAG) -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
+ $(LIBTOOL) --mode=compile --tag=CC $(top_srcdir)/strip_fPIC.sh $(MPIR_AS) -I $(top_builddir) $(OBJECT_FORMAT) $(GSYM_FLAG) -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
--- Makefile.am.orig 2010-05-20 22:57:02.288576440 +1200
+++ Makefile.am 2010-05-20 22:57:14.616576831 +1200
@@ -93,10 +93,6 @@
SUBDIRS = tests
-if BUILD_YASM
-SUBDIRS += yasm
-endif
-
SUBDIRS += mpn mpz mpq mpf printf scanf cxx demos tune doc
EXTRA_DIST = configfsf.guess configfsf.sub .gdbinit INSTALL.autoconf
|