summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMartijn van Beurden <mvanb1@gmail.com>2022-05-18 20:06:47 +0200
committerMartijn van Beurden <mvanb1@gmail.com>2022-05-27 21:59:32 +0200
commite0e9cc58b4a6b29be43f83f2356236e453943863 (patch)
tree5ce2201aff16a6890cc6a38b9a1d51013778baef /include
parent5705a61c55c503c60005fb76a339d90172197c73 (diff)
downloadflac-e0e9cc58b4a6b29be43f83f2356236e453943863.tar.gz
Remove all Visual Studio specific build files
Diffstat (limited to 'include')
-rw-r--r--include/share/Makefile.am1
-rw-r--r--include/share/msvc2005_int.h53
2 files changed, 0 insertions, 54 deletions
diff --git a/include/share/Makefile.am b/include/share/Makefile.am
index 079c1690..2d8ca503 100644
--- a/include/share/Makefile.am
+++ b/include/share/Makefile.am
@@ -9,7 +9,6 @@ EXTRA_DIST = \
getopt.h \
grabbag.h \
macros.h \
- msvc2005_int.h \
private.h \
replaygain_analysis.h \
replaygain_synthesis.h \
diff --git a/include/share/msvc2005_int.h b/include/share/msvc2005_int.h
deleted file mode 100644
index f789fb11..00000000
--- a/include/share/msvc2005_int.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/* libFLAC - Free Lossless Audio Codec library
- * Copyright (C) 2017 Xiph.org Foundation
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * - Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *
- * - Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * - Neither the name of the Xiph.org Foundation nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
- * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-/* This header file defines integer [u]intNN_t types.
- * It is auto-included in all files via "Force Includes" (/FI)
- * option in all *.vcproj files (Visual Studio 2005, 2008)
- */
-
-#ifndef FLAC__SHARE__MSVC2005_INT_H
-#define FLAC__SHARE__MSVC2005_INT_H
-
-#if defined _MSC_VER && _MSC_VER < 1600
-
-typedef signed __int8 int8_t;
-typedef signed __int16 int16_t;
-typedef signed __int32 int32_t;
-typedef signed __int64 int64_t;
-typedef unsigned __int8 uint8_t;
-typedef unsigned __int16 uint16_t;
-typedef unsigned __int32 uint32_t;
-typedef unsigned __int64 uint64_t;
-
-#endif
-
-#endif /* FLAC__SHARE__MSVC2005_INT_H */