drop unused sources too

This commit is contained in:
Rex Dieter 2012-04-05 08:49:41 -05:00
parent b2750cf6d8
commit 0d0b4aff99
2 changed files with 0 additions and 23 deletions

View File

@ -10,10 +10,6 @@ Source0: http://ftp.gnu.org/gnu/libsigsegv/libsigsegv-%{version}.tar.gz
Group: System Environment/Libraries
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
## upstream patches
Source1: sigsegv-wrapper.h
BuildRequires: automake libtool
%description

View File

@ -1,19 +0,0 @@
/* This file is here to prevent a file conflict on multiarch systems. A
* conflict will occur because sigsegv.h has arch-specific definitions.
*
* DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */
#ifndef SIGSEGV_MULTILIB_H
#define SIGSEGV_MULTILIB_H
#include <bits/wordsize.h>
#if __WORDSIZE == 32
#include "sigsegv-32.h"
#elif __WORDSIZE == 64
#include "sigsegv-64.h"
#else
#error "unexpected value for __WORDSIZE macro"
#endif
#endif