drop garbage files.

This commit is contained in:
uglyside
2025-01-30 17:29:59 +03:00
parent 15247ed1ae
commit bc6bfeaede
12 changed files with 0 additions and 1014 deletions
@@ -1,22 +0,0 @@
diff -uNr Coin-2.4.6.orig/man/man3/Makefile.am Coin-2.4.6/man/man3/Makefile.am
--- Coin-2.4.6.orig/man/man3/Makefile.am 2007-04-10 11:24:07.000000000 +0200
+++ Coin-2.4.6/man/man3/Makefile.am 2007-04-14 06:27:29.000000000 +0200
@@ -8,6 +8,7 @@
"$(sim_ac_doxygen_exe)" docs/coin.doxygen )
filelist.txt: SoDB.3
+ rm -f *_.3
ls *.3 >filelist.txt
diff -uNr Coin-2.4.6.orig/man/man3/Makefile.in Coin-2.4.6/man/man3/Makefile.in
--- Coin-2.4.6.orig/man/man3/Makefile.in 2007-04-10 11:24:07.000000000 +0200
+++ Coin-2.4.6/man/man3/Makefile.in 2007-04-14 06:27:30.000000000 +0200
@@ -421,6 +421,7 @@
"$(sim_ac_doxygen_exe)" docs/coin.doxygen )
filelist.txt: SoDB.3
+ rm -f *_.3
ls *.3 >filelist.txt
@BUILD_MANPAGES_TRUE@all-local: filelist.txt
@@ -1,12 +0,0 @@
diff -uNr Coin-2.4.6.orig/src/glue/openal_wrapper.c Coin-2.4.6/src/glue/openal_wrapper.c
--- Coin-2.4.6.orig/src/glue/openal_wrapper.c 2007-04-10 11:23:51.000000000 +0200
+++ Coin-2.4.6/src/glue/openal_wrapper.c 2007-04-14 06:31:09.000000000 +0200
@@ -107,7 +107,7 @@
int idx;
const char * possiblelibnames[] = {
NULL, /* is set below */
- "openal", "openal32", "libopenal.so",
+ @LIBOPENAL_SONAME@,
NULL
};
@@ -1,150 +0,0 @@
diff -Naur Coin-2.5.0.gcc-4.7.0/include/Inventor/system/inttypes.h.in Coin-2.5.0.inttypes/include/Inventor/system/inttypes.h.in
--- Coin-2.5.0.gcc-4.7.0/include/Inventor/system/inttypes.h.in 2007-10-01 03:23:30.000000000 +0200
+++ Coin-2.5.0.inttypes/include/Inventor/system/inttypes.h.in 2012-01-11 10:21:14.784355818 +0100
@@ -32,146 +32,12 @@
int32_t uint32_t
int64_t uint64_t
intptr_t uintptr_t
-
- (The 64-bit types are not guaranteed to be present, check for
- HAVE_INT64_T and HAVE_UINT64_T.)
*/
/***************************************************************************/
-/* Block of defines set up by the configure script. Protected with the
- #ifndef wrapper in case config.h was already included -- so we
- don't confuse the compiler to think we redefine already #define'd
- constants. */
-#ifndef COIN_CONFIGURE_BUILD /* (start wrapper) */
-
-/*
- This file was autogenerated by our configuration process
- specifically for this build configuration:
-*/
-#undef COIN_CONFIGURE_BUILD
-#undef COIN_CONFIGURE_HOST
-#undef COIN_CONFIGURE_TARGET
-/*
- The bit-type definitions may also be dependent on the compiler,
- compiler version and C library.
-
- So note that the bit-type definitions below might not match on other
- systems. Be extremely careful if you for whatever reason is
- installing this as a cross-platform header file (i.e.: you
- shouldn't).
-*/
-
-/* FIXME: isn't it likely that the HAVE_*_H defines below could crash
- with defines in application code in a project using Autoconf
- configure? 20010711 mortene. */
-
-/* The <inttypes.h> header file. */
-#undef HAVE_INTTYPES_H
-/* The <stdint.h> header file. */
-#undef HAVE_STDINT_H
-/* The <sys/types.h> header file. */
-#undef HAVE_SYS_TYPES_H
-/* The <stddef.h> header file. */
-#undef HAVE_STDDEF_H
-
-
-/* If the system defines any of the types "on it's own", the
- respective #define will be set below. */
-#undef HAVE_INT8_T
-#undef HAVE_UINT8_T
-#undef HAVE_INT16_T
-#undef HAVE_UINT16_T
-#undef HAVE_INT32_T
-#undef HAVE_UINT32_T
-#undef HAVE_INT64_T
-#undef HAVE_UINT64_T
-#undef HAVE_INTPTR_T
-#undef HAVE_UINTPTR_T
-
-/* The type which the configure script found to match the given
- bitwidth. */
-#undef COIN_INT8_T
-#undef COIN_UINT8_T
-#undef COIN_INT16_T
-#undef COIN_UINT16_T
-#undef COIN_INT32_T
-#undef COIN_UINT32_T
-#undef COIN_INT64_T
-#undef COIN_UINT64_T
-#undef COIN_INTPTR_T
-#undef COIN_UINTPTR_T
-
-#endif /* (end wrapper) ! COIN_CONFIGURE_BUILD */
-
-
-/* The header files should be listed in the same order as they are in
- the SIM_AC_DEFINE_BYTESIZE_TYPES detection macro. This is the same
- order as the one Autoconf (currently upcoming 2.51) is using for its
- standard includes. 20010711 larsa */
-#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
-#else
-#ifdef HAVE_STDINT_H
-#include <stdint.h>
-#endif /* HAVE_STDINT_H */
-#endif
-#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
-#endif /* HAVE_SYS_TYPES_H */
-#ifdef HAVE_STDDEF_H
#include <stddef.h>
-#endif /* HAVE_STDDEF_H */
-
-
-#if !defined(HAVE_INT8_T) && defined(COIN_INT8_T)
-typedef COIN_INT8_T int8_t;
-#define HAVE_INT8_T 1
-#endif /* !HAVE_INT8_T && COIN_INT8_T */
-
-#if !defined(HAVE_UINT8_T) && defined(COIN_UINT8_T)
-typedef COIN_UINT8_T uint8_t;
-#define HAVE_UINT8_T 1
-#endif /* !HAVE_UINT8_T && COIN_UINT8_T */
-
-#if !defined(HAVE_INT16_T) && defined(COIN_INT16_T)
-typedef COIN_INT16_T int16_t;
-#define HAVE_INT16_T 1
-#endif /* !HAVE_INT16_T && COIN_INT16_T */
-
-#if !defined(HAVE_UINT16_T) && defined(COIN_UINT16_T)
-typedef COIN_UINT16_T uint16_t;
-#define HAVE_UINT16_T 1
-#endif /* !HAVE_UINT16_T && COIN_UINT16_T */
-
-#if !defined(HAVE_INT32_T) && defined(COIN_INT32_T)
-typedef COIN_INT32_T int32_t;
-#define HAVE_INT32_T 1
-#endif /* !HAVE_INT32_T && COIN_INT32_T */
-
-#if !defined(HAVE_UINT32_T) && defined(COIN_UINT32_T)
-typedef COIN_UINT32_T uint32_t;
-#define HAVE_UINT32_T 1
-#endif /* !HAVE_UINT32_T && COIN_UINT32_T */
-
-#if !defined(HAVE_INT64_T) && defined(COIN_INT64_T)
-typedef COIN_INT64_T int64_t;
-#define HAVE_INT64_T 1
-#endif /* !HAVE_INT64_T && COIN_INT64_T */
-
-#if !defined(HAVE_UINT64_T) && defined(COIN_UINT64_T)
-typedef COIN_UINT64_T uint64_t;
-#define HAVE_UINT64_T 1
-#endif /* !HAVE_UINT64_T && COIN_UINT64_T */
-
-#if !defined(HAVE_INTPTR_T) && defined(COIN_INTPTR_T)
-typedef COIN_INTPTR_T intptr_t;
-#define HAVE_INTPTR_T 1
-#endif /* !HAVE_INTPTR_T && COIN_INTPTR_T */
-
-#if !defined(HAVE_UINTPTR_T) && defined(COIN_UINTPTR_T)
-typedef COIN_UINTPTR_T uintptr_t;
-#define HAVE_UINTPTR_T 1
-#endif /* !HAVE_UINTPTR_T && COIN_UINTPTR_T */
#endif /* !COIN_INTTYPES_H */
@@ -1,10 +0,0 @@
--- include/Inventor/SbBasic.h.orig 2012-10-28 16:49:00.000000000 +0100
+++ include/Inventor/SbBasic.h 2012-10-28 16:50:15.000000000 +0100
@@ -25,6 +25,7 @@
\**************************************************************************/
#include <Inventor/C/basic.h>
+#include <Inventor/C/errors/debugerror.h>
/* ********************************************************************** */
/* Trap people trying to use Inventor headers while compiling C source code.
@@ -1,12 +0,0 @@
diff -Nuar Coin-3.1.3.orig/src/fonts/freetype.cpp Coin-3.1.3/src/fonts/freetype.cpp
--- Coin-3.1.3.orig/src/fonts/freetype.cpp 2010-03-02 15:20:09.000000000 +0200
+++ Coin-3.1.3/src/fonts/freetype.cpp 2013-08-25 00:38:16.678172194 +0300
@@ -32,6 +32,8 @@
20050613 mortene. */
+#include <cstdlib>
+#include <cmath>
#include "fonts/freetype.h"
#ifdef HAVE_CONFIG_H