~ubuntu-branches/debian/sid/embassy-domsearch/sid

« back to all changes in this revision

Viewing changes to m4/sgi.m4

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2012-06-22 10:03:24 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20120622100324-v9e98arr9zjtmitl
Tags: 1:0.1.0+20110714-1
* New upstream version
* debian/control:
   - Standards-Version: 3.9.3 (no changes needed)
   - debhelper version 9
   - Adapted versioned (build-)depends to latest emboss version
* added debian/compat: 9
* debian/source/format: 3.0 (quilt)
* debian/rules: short dh
* debian/copyright: DEP5 fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#
3
3
# Handle SGI compiler flags
4
4
#
5
 
[AC_MSG_CHECKING(for sgiabi)
 
5
[AC_MSG_CHECKING([for sgiabi])
6
6
AC_ARG_WITH([sgiabi],
7
7
    [AS_HELP_STRING([--with-sgiabi=@<:@ARG@:>@],
8
8
        [SGI compiler flags @<:@default=no@:>@])],
9
9
[if test "$withval" != no ; then
10
 
  AC_MSG_RESULT(yes)
11
 
 
12
 
  if test "`uname`" = "IRIX64" || test "`uname`" = "IRIX" ; then
13
 
 
 
10
  AC_MSG_RESULT([yes])
 
11
 
 
12
  case $host_os in
 
13
  irix*)
14
14
    if test "$withval" = n32m3 ; then
15
15
      CFLAGS="-n32 -mips3 $CFLAGS"
16
16
      LD="/usr/bin/ld -n32 -mips3 -IPA -L/usr/lib32"
42
42
          LDFLAGS="-L/usr/freeware/lib64 $LDFLAGS"
43
43
        fi
44
44
    fi
45
 
 
46
 
  fi
 
45
    ;;
 
46
  esac
47
47
 
48
48
 
49
49
fi], [
50
 
AC_MSG_RESULT(no)
 
50
AC_MSG_RESULT([no])
51
51
])
52
52
]
53
53
)