src/sfconfig.h : Make sure HAVE_X86INTRIN_H is either 1 or 0.

This commit is contained in:
Erik de Castro Lopo 2012-03-05 20:18:46 +11:00
parent 5598c67a87
commit 3cddd9a889
2 changed files with 8 additions and 1 deletions

View File

@ -19,6 +19,9 @@
* src/ALAC/EndianPortable.c
Add support for __powerpc__.
* src/sfconfig.h
Make sure HAVE_X86INTRIN_H is either 1 or 0.
2012-02-03 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/ALAC/*

View File

@ -1,5 +1,5 @@
/*
** Copyright (C) 2005-2011 Erik de Castro Lopo <erikd@mega-nerd.com>
** Copyright (C) 2005-2012 Erik de Castro Lopo <erikd@mega-nerd.com>
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU Lesser General Public License as published by
@ -109,5 +109,9 @@
#define HAVE_WAITPID 0
#endif
#ifndef HAVE_X86INTRIN_H
#define HAVE_X86INTRIN_H 0
#endif
#endif