| 1 | dnl Process this with autoconf to create configure | 
|---|
| 2 | AC_INIT(fficonfig.h.in) | 
|---|
| 3 | AM_CONFIG_HEADER(fficonfig.h) | 
|---|
| 4 |  | 
|---|
| 5 | # This works around the fact that libtool configuration may change LD | 
|---|
| 6 | # for this particular configuration, but some shells, instead of | 
|---|
| 7 | # keeping the changes in LD private, export them just because LD is | 
|---|
| 8 | # exported. | 
|---|
| 9 | ORIGINAL_LD_FOR_MULTILIBS=$LD | 
|---|
| 10 |  | 
|---|
| 11 | dnl Default to --enable-multilib | 
|---|
| 12 | AC_ARG_ENABLE(multilib, | 
|---|
| 13 | [  --enable-multilib       build many library versions (default)], | 
|---|
| 14 | [case "${enableval}" in | 
|---|
| 15 | yes) multilib=yes ;; | 
|---|
| 16 | no)  multilib=no ;; | 
|---|
| 17 | *)   AC_MSG_ERROR(bad value ${enableval} for multilib option) ;; | 
|---|
| 18 | esac], [multilib=yes])dnl | 
|---|
| 19 |  | 
|---|
| 20 | dnl We may get other options which we don't document: | 
|---|
| 21 | dnl --with-target-subdir, --with-multisrctop, --with-multisubdir | 
|---|
| 22 |  | 
|---|
| 23 | if test "${srcdir}" = "."; then | 
|---|
| 24 | if test "${with_target_subdir}" != "."; then | 
|---|
| 25 | libffi_basedir="${with_multisrctop}../" | 
|---|
| 26 | else | 
|---|
| 27 | libffi_basedir="${with_multisrctop}" | 
|---|
| 28 | fi | 
|---|
| 29 | else | 
|---|
| 30 | libffi_basedir= | 
|---|
| 31 | fi | 
|---|
| 32 | AC_SUBST(libffi_basedir) | 
|---|
| 33 | AC_CONFIG_AUX_DIR(${libffi_basedir}..) | 
|---|
| 34 |  | 
|---|
| 35 | AC_CANONICAL_HOST | 
|---|
| 36 |  | 
|---|
| 37 | AM_PROG_LIBTOOL | 
|---|
| 38 |  | 
|---|
| 39 | AM_INIT_AUTOMAKE(libffi,2.00-beta,no-define) | 
|---|
| 40 |  | 
|---|
| 41 | AC_EXEEXT | 
|---|
| 42 | AM_MAINTAINER_MODE | 
|---|
| 43 |  | 
|---|
| 44 | AC_PROG_CC | 
|---|
| 45 | AC_PROG_LIBTOOL | 
|---|
| 46 |  | 
|---|
| 47 | TARGETDIR="unknown" | 
|---|
| 48 | case "$host" in | 
|---|
| 49 | mips-sgi-irix5.* | mips-sgi-irix6.*) TARGET=MIPS; TARGETDIR=mips;; | 
|---|
| 50 | i*86-*-linux*) TARGET=X86; TARGETDIR=x86;; | 
|---|
| 51 | i*86-*-sco3.2v5*) TARGET=X86; TARGETDIR=x86;; | 
|---|
| 52 | i*86-*-solaris*) TARGET=X86; TARGETDIR=x86;; | 
|---|
| 53 | i*86-*-beos*) TARGET=X86; TARGETDIR=x86;; | 
|---|
| 54 | i*86-*-freebsd*) TARGET=X86; TARGETDIR=x86;; | 
|---|
| 55 | i*86-*-netbsdelf*) TARGET=X86; TARGETDIR=x86;; | 
|---|
| 56 | i*86-*-win32*) TARGET=X86_WIN32; TARGETDIR=x86;; | 
|---|
| 57 | i*86-*-cygwin*) TARGET=X86_WIN32; TARGETDIR=x86;; | 
|---|
| 58 | i*86-*-mingw*) TARGET=X86_WIN32; TARGETDIR=x86;; | 
|---|
| 59 | sparc-sun-4*) TARGET=SPARC; TARGETDIR=sparc;; | 
|---|
| 60 | sparc*-sun-*) TARGET=SPARC; TARGETDIR=sparc;; | 
|---|
| 61 | sparc-*-linux* | sparc-*-netbsdelf*) TARGET=SPARC; TARGETDIR=sparc;; | 
|---|
| 62 | sparc64-*-linux* | sparc64-*-netbsd*) TARGET=SPARC; TARGETDIR=sparc;; | 
|---|
| 63 | alpha*-*-linux* | alpha*-*-osf* | alpha*-*-freebsd* | alpha*-*-netbsd*) TARGET=ALPHA; TARGETDIR=alpha;; | 
|---|
| 64 | ia64*-*-*) TARGET=IA64; TARGETDIR=ia64;; | 
|---|
| 65 | m68k-*-linux*) TARGET=M68K; TARGETDIR=m68k;; | 
|---|
| 66 | mips64*-*);; | 
|---|
| 67 | mips*-*-linux*) TARGET=MIPS_LINUX; TARGETDIR=mips;; | 
|---|
| 68 | powerpc-*-linux* | powerpc-*-sysv*) TARGET=POWERPC; TARGETDIR=powerpc;; | 
|---|
| 69 | powerpc-*-beos*) TARGET=POWERPC; TARGETDIR=powerpc;; | 
|---|
| 70 | powerpc-*-darwin*) TARGET=POWERPC_DARWIN; TARGETDIR=powerpc;; | 
|---|
| 71 | powerpc-*-aix*) TARGET=POWERPC_AIX; TARGETDIR=powerpc;; | 
|---|
| 72 | rs6000-*-aix*) TARGET=POWERPC_AIX; TARGETDIR=powerpc;; | 
|---|
| 73 | arm*-*-linux-*) TARGET=ARM; TARGETDIR=arm;; | 
|---|
| 74 | s390-*-linux-*) TARGET=S390; TARGETDIR=s390;; | 
|---|
| 75 | s390x-*-linux-*) TARGET=S390; TARGETDIR=s390;; | 
|---|
| 76 | x86_64-*-linux*) TARGET=X86_64; TARGETDIR=x86;; | 
|---|
| 77 | sh-*-linux* | sh[[34]]*-*-linux*) TARGET=SH; TARGETDIR=sh;; | 
|---|
| 78 | esac | 
|---|
| 79 |  | 
|---|
| 80 | if test $TARGETDIR = unknown; then | 
|---|
| 81 | AC_ERROR("libffi has not been ported to $host.") | 
|---|
| 82 | fi | 
|---|
| 83 |  | 
|---|
| 84 | AM_CONDITIONAL(MIPS_GCC, test ${TARGET}${ac_cv_prog_gcc} = MIPSyes) | 
|---|
| 85 | AM_CONDITIONAL(MIPS_SGI, test ${TARGET}${ac_cv_prog_gcc} = MIPSno) | 
|---|
| 86 | AM_CONDITIONAL(MIPS_LINUX, test x$TARGET = xMIPS_LINUX) | 
|---|
| 87 | AM_CONDITIONAL(SPARC, test x$TARGET = xSPARC) | 
|---|
| 88 | AM_CONDITIONAL(X86, test x$TARGET = xX86) | 
|---|
| 89 | AM_CONDITIONAL(X86_WIN32, test x$TARGET = xX86_WIN32) | 
|---|
| 90 | AM_CONDITIONAL(ALPHA, test x$TARGET = xALPHA) | 
|---|
| 91 | AM_CONDITIONAL(IA64, test x$TARGET = xIA64) | 
|---|
| 92 | AM_CONDITIONAL(M68K, test x$TARGET = xM68K) | 
|---|
| 93 | AM_CONDITIONAL(POWERPC, test x$TARGET = xPOWERPC) | 
|---|
| 94 | AM_CONDITIONAL(POWERPC_AIX, test x$TARGET = xPOWERPC_AIX) | 
|---|
| 95 | AM_CONDITIONAL(POWERPC_DARWIN, test x$TARGET = xPOWERPC_DARWIN) | 
|---|
| 96 | AM_CONDITIONAL(ARM, test x$TARGET = xARM) | 
|---|
| 97 | AM_CONDITIONAL(S390, test x$TARGET = xS390) | 
|---|
| 98 | AM_CONDITIONAL(X86_64, test x$TARGET = xX86_64) | 
|---|
| 99 | AM_CONDITIONAL(SH, test x$TARGET = xSH) | 
|---|
| 100 |  | 
|---|
| 101 | if test x$TARGET = xMIPS_LINUX; then | 
|---|
| 102 | TARGET=MIPS | 
|---|
| 103 | fi | 
|---|
| 104 |  | 
|---|
| 105 | AC_HEADER_STDC | 
|---|
| 106 | AC_CHECK_FUNCS(memcpy) | 
|---|
| 107 | AC_FUNC_ALLOCA | 
|---|
| 108 |  | 
|---|
| 109 | dnl AC_CHECK_SIZEOF(char) | 
|---|
| 110 | AC_COMPILE_CHECK_SIZEOF(short) | 
|---|
| 111 | AC_COMPILE_CHECK_SIZEOF(int) | 
|---|
| 112 | AC_COMPILE_CHECK_SIZEOF(long) | 
|---|
| 113 | AC_COMPILE_CHECK_SIZEOF(long long) | 
|---|
| 114 | AC_COMPILE_CHECK_SIZEOF(float) | 
|---|
| 115 | AC_COMPILE_CHECK_SIZEOF(double) | 
|---|
| 116 | AC_COMPILE_CHECK_SIZEOF(long double) | 
|---|
| 117 |  | 
|---|
| 118 | AC_COMPILE_CHECK_SIZEOF(void *) | 
|---|
| 119 | AC_C_BIGENDIAN_CROSS | 
|---|
| 120 |  | 
|---|
| 121 | if test x$TARGET = xSPARC; then | 
|---|
| 122 | AC_CACHE_CHECK([assembler and linker support unaligned pc related relocs], | 
|---|
| 123 | libffi_cv_as_sparc_ua_pcrel, [ | 
|---|
| 124 | save_CFLAGS="$CFLAGS" | 
|---|
| 125 | save_LDFLAGS="$LDFLAGS" | 
|---|
| 126 | CFLAGS="$CFLAGS -fpic" | 
|---|
| 127 | LDFLAGS="$LDFLAGS -shared" | 
|---|
| 128 | AC_TRY_LINK([asm (".text; foo: nop; .data; .align 4; .byte 0; .uaword %r_disp32(foo); .text");],, | 
|---|
| 129 | [libffi_cv_as_sparc_ua_pcrel=yes], | 
|---|
| 130 | [libffi_cv_as_sparc_ua_pcrel=no]) | 
|---|
| 131 | CFLAGS="$save_CFLAGS" | 
|---|
| 132 | LDFLAGS="$save_LDFLAGS"]) | 
|---|
| 133 | if test "x$libffi_cv_as_sparc_ua_pcrel" = xyes; then | 
|---|
| 134 | AC_DEFINE(HAVE_AS_SPARC_UA_PCREL, 1, | 
|---|
| 135 | [Define if your assembler and linker support unaligned PC relative relocs.]) | 
|---|
| 136 | fi | 
|---|
| 137 |  | 
|---|
| 138 | AC_CACHE_CHECK([assembler .register pseudo-op support], | 
|---|
| 139 | libffi_cv_as_register_pseudo_op, [ | 
|---|
| 140 | libffi_cv_as_register_pseudo_op=unknown | 
|---|
| 141 | # Check if we have .register | 
|---|
| 142 | AC_TRY_COMPILE([asm (".register %g2, #scratch");],, | 
|---|
| 143 | [libffi_cv_as_register_pseudo_op=yes], | 
|---|
| 144 | [libffi_cv_as_register_pseudo_op=no]) | 
|---|
| 145 | ]) | 
|---|
| 146 | if test "x$libffi_cv_as_register_pseudo_op" = xyes; then | 
|---|
| 147 | AC_DEFINE(HAVE_AS_REGISTER_PSEUDO_OP, 1, | 
|---|
| 148 | [Define if your assembler supports .register.]) | 
|---|
| 149 | fi | 
|---|
| 150 | fi | 
|---|
| 151 |  | 
|---|
| 152 | AC_SUBST(TARGET) | 
|---|
| 153 | AC_SUBST(TARGETDIR) | 
|---|
| 154 |  | 
|---|
| 155 | AC_SUBST(SHELL) | 
|---|
| 156 |  | 
|---|
| 157 | AC_ARG_ENABLE(debug, | 
|---|
| 158 | [  --enable-debug          debugging mode], | 
|---|
| 159 | if test "$enable_debug" = "yes"; then | 
|---|
| 160 | AC_DEFINE(FFI_DEBUG) | 
|---|
| 161 | fi) | 
|---|
| 162 |  | 
|---|
| 163 | AC_ARG_ENABLE(structs, | 
|---|
| 164 | [  --disable-structs       omit code for struct support], | 
|---|
| 165 | if test "$enable_structs" = "no"; then | 
|---|
| 166 | AC_DEFINE(FFI_NO_STRUCTS) | 
|---|
| 167 | fi) | 
|---|
| 168 |  | 
|---|
| 169 | AC_ARG_ENABLE(raw-api, | 
|---|
| 170 | [  --disable-raw-api       make the raw api unavailable], | 
|---|
| 171 | if test "$enable_raw_api" = "no"; then | 
|---|
| 172 | AC_DEFINE(FFI_NO_RAW_API) | 
|---|
| 173 | fi) | 
|---|
| 174 |  | 
|---|
| 175 | AC_ARG_ENABLE(purify-safety, | 
|---|
| 176 | [  --enable-purify-safety  purify-safe mode], | 
|---|
| 177 | if test "$enable_purify_safety" = "yes"; then | 
|---|
| 178 | AC_DEFINE(USING_PURIFY) | 
|---|
| 179 | fi) | 
|---|
| 180 |  | 
|---|
| 181 | if test -n "$with_cross_host" && | 
|---|
| 182 | test x"$with_cross_host" != x"no"; then | 
|---|
| 183 | toolexecdir='$(exec_prefix)/$(target_alias)' | 
|---|
| 184 | toolexeclibdir='$(toolexecdir)/lib' | 
|---|
| 185 | else | 
|---|
| 186 | toolexecdir='$(libdir)/gcc-lib/$(target_alias)' | 
|---|
| 187 | toolexeclibdir='$(libdir)' | 
|---|
| 188 | fi | 
|---|
| 189 | toolexeclibdir=$toolexeclibdir/`$CC -print-multi-os-directory` | 
|---|
| 190 | AC_SUBST(toolexecdir) | 
|---|
| 191 | AC_SUBST(toolexeclibdir) | 
|---|
| 192 |  | 
|---|
| 193 | if test "${multilib}" = "yes"; then | 
|---|
| 194 | multilib_arg="--enable-multilib" | 
|---|
| 195 | else | 
|---|
| 196 | multilib_arg= | 
|---|
| 197 | fi | 
|---|
| 198 |  | 
|---|
| 199 | AC_OUTPUT(include/Makefile include/ffi.h Makefile, | 
|---|
| 200 | [ | 
|---|
| 201 | if test -n "$CONFIG_FILES"; then | 
|---|
| 202 | LD="${ORIGINAL_LD_FOR_MULTILIBS}" | 
|---|
| 203 | ac_file=Makefile . ${srcdir}/${libffi_basedir}../config-ml.in | 
|---|
| 204 | fi | 
|---|
| 205 | ], | 
|---|
| 206 | srcdir=${srcdir} | 
|---|
| 207 | host=${host} | 
|---|
| 208 | target=${target} | 
|---|
| 209 | with_multisubdir=${with_multisubdir} | 
|---|
| 210 | ac_configure_args="${multilib_arg} ${ac_configure_args}" | 
|---|
| 211 | CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} | 
|---|
| 212 | libffi_basedir=${libffi_basedir} | 
|---|
| 213 | CC="${CC}" | 
|---|
| 214 | DEFS="$DEFS" | 
|---|
| 215 | ORIGINAL_LD_FOR_MULTILIBS="${ORIGINAL_LD_FOR_MULTILIBS}" | 
|---|
| 216 | test ! -d include && mkdir include | 
|---|
| 217 | test ! -f include/fficonfig.h && cp fficonfig.h include/fficonfig.h | 
|---|
| 218 | if cmp -s fficonfig.h include/fficonfig.h 2>/dev/null; then | 
|---|
| 219 | echo fficonfig.h unchanged | 
|---|
| 220 | else | 
|---|
| 221 | echo Moving fficonfig.h to include/fficonfig.h | 
|---|
| 222 | cp fficonfig.h include/fficonfig.h | 
|---|
| 223 | fi | 
|---|
| 224 | ) | 
|---|
| 225 |  | 
|---|
| 226 | # Make target subdirectories if required. | 
|---|
| 227 | test -d src || mkdir src | 
|---|
| 228 | test -d src/${TARGETDIR} || mkdir src/${TARGETDIR} | 
|---|