~ubuntu-branches/debian/sid/strace/sid

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Frederik Schüler
  • Date: 2010-05-04 14:31:46 UTC
  • mfrom: (0.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20100504143146-yo6uohwusjj7qxm3
Tags: 4.5.20-2
Add missing sparc syscall defines to fix FTBFS on sparc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.11 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11.1a from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
 
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
6
 
# Inc.
 
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010  Free Software
 
6
# Foundation, Inc.
7
7
# This Makefile.in is free software; the Free Software Foundation
8
8
# gives unlimited permission to copy and/or distribute it,
9
9
# with or without modifications, as long as this notice is preserved.
223
223
# ARCH is `i386', `m68k', `sparc', etc.
224
224
ARCH = @arch@
225
225
AM_CFLAGS = $(WARNFLAGS)
226
 
INCLUDES = -I$(OS)/$(ARCH) -I$(srcdir)/$(OS)/$(ARCH) -I$(OS) -I$(srcdir)/$(OS)
 
226
INCLUDES = -I$(srcdir)/$(OS)/$(ARCH) -I$(srcdir)/$(OS)
227
227
strace_SOURCES = strace.c syscall.c count.c util.c desc.c file.c ipc.c \
228
228
                 io.c ioctl.c mem.c net.c process.c bjm.c quota.c \
229
229
                 resource.c signal.c sock.c system.c term.c time.c \
240
240
             README-freebsd README-linux README-sunos4 README-svr4 \
241
241
             linux/ioctlsort.c linux/ioctlent.sh \
242
242
             linux/ioctlent.h linux/errnoent.h linux/signalent.h \
243
 
             linux/syscall.h linux/syscallent.h linux/dummy.h \
 
243
             linux/syscall.h linux/dummy.h \
 
244
             linux/i386/syscallent.h \
244
245
             linux/alpha/errnoent.h linux/alpha/ioctlent.h \
245
246
             linux/alpha/signalent.h linux/alpha/syscallent.h \
246
247
             linux/arm/syscallent.h linux/arm/syscallent1.h \
280
281
             linux/sparc64/syscall.h linux/sparc64/syscall1.h \
281
282
             linux/sparc64/syscallent.h linux/sparc64/syscallent1.h \
282
283
             linux/sparc64/syscallent2.h \
 
284
             linux/tile/syscallent.h \
283
285
             linux/x86_64/syscallent.h linux/x86_64/gentab.pl \
284
286
             linux/x86_64/errnoent1.h linux/x86_64/ioctlent1.h \
285
287
             linux/x86_64/signalent1.h linux/x86_64/syscallent1.h \
618
620
          fi; \
619
621
        done
620
622
        -test -n "$(am__skip_mode_fix)" \
621
 
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
 
623
        || find "$(distdir)" -type d ! -perm -755 \
 
624
                -exec chmod u+rwx,go+rx {} \; -o \
622
625
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
623
626
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
624
627
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
661
664
distcheck: dist
662
665
        case '$(DIST_ARCHIVES)' in \
663
666
        *.tar.gz*) \
664
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
 
667
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
665
668
        *.tar.bz2*) \
666
 
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
 
669
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
667
670
        *.tar.lzma*) \
668
 
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
 
671
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
669
672
        *.tar.xz*) \
670
673
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
671
674
        *.tar.Z*) \
672
675
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
673
676
        *.shar.gz*) \
674
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
 
677
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
675
678
        *.zip*) \
676
679
          unzip $(distdir).zip ;;\
677
680
        esac