diff options
author | Werner Koch <wk@gnupg.org> | 1999-03-08 20:50:18 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1999-03-08 20:50:18 +0100 |
commit | b31145f3e25a3dd99ad2b84a4cd7ec0f43aafe2f (patch) | |
tree | c55d9d29f4fe50c598024dbaa31f8fb9f4c56299 /mpi/config.links | |
parent | add some demo keys (diff) | |
download | gnupg2-b31145f3e25a3dd99ad2b84a4cd7ec0f43aafe2f.tar.xz gnupg2-b31145f3e25a3dd99ad2b84a4cd7ec0f43aafe2f.zip |
See ChangeLog: Mon Mar 8 20:47:17 CET 1999 Werner Koch
Diffstat (limited to 'mpi/config.links')
-rw-r--r-- | mpi/config.links | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/mpi/config.links b/mpi/config.links index 63255a120..4caf2b8d6 100644 --- a/mpi/config.links +++ b/mpi/config.links @@ -12,12 +12,12 @@ echo '/* created by config.links - do not edit */' >./mpi/asm-syntax.h if test "$try_asm_modules" = "yes" ; then case "${target}" in - i[34]86*-*-freebsd*-elf | i[34]86*-*-freebsd3*) + i[34]86*-*-freebsd*-elf | i[34]86*-*-freebsd[34]*) echo '#define ELF_SYNTAX' >>./mpi/asm-syntax.h cat $srcdir/mpi/i386/syntax.h >>./mpi/asm-syntax.h path="i386" ;; - i[56]86*-*-freebsd*-elf | i[56]86*-*-freebsd3*) + i[56]86*-*-freebsd*-elf | i[56]86*-*-freebsd[34]*) echo '#define ELF_SYNTAX' >>./mpi/asm-syntax.h cat $srcdir/mpi/i386/syntax.h >>./mpi/asm-syntax.h path="i586 i386" @@ -168,22 +168,9 @@ else fi -case "${target}" in - *-*-linuxaout* | *-*-linuxoldld* | *-*-linux-gnuoldld*) - needs_underscore="y" - ;; - *-*-linux* | *-sysv* | *-solaris* | *-gnu* | *-freebsd*-elf) - needs_underscore="n" - ;; - *) - needs_underscore="y" - ;; -esac - - # Make sysdep.h echo '/* created by config.links - do not edit */' >./mpi/sysdep.h -if test "$needs_underscore" = "y" ; then +if test x$ac_cv_sys_symbol_underscore = xyes; then cat <<EOF >>./mpi/sysdep.h #if __STDC__ #define C_SYMBOL_NAME(name) _##name |