Rename lrzip.h to lrzip_core.h to cope with case insensitive filesystems not working with Lrzip.h vs lrzip.h

This commit is contained in:
Con Kolivas 2012-07-07 21:39:40 +10:00
parent c2ed75b868
commit 184a8f0025
9 changed files with 10 additions and 10 deletions

View file

@ -34,7 +34,7 @@ libtmplrzip_la_SOURCES = \
lrzip_private.h \ lrzip_private.h \
liblrzip_private.h \ liblrzip_private.h \
lrzip.c \ lrzip.c \
lrzip.h \ lrzip_core.h \
rzip.h \ rzip.h \
rzip.c \ rzip.c \
runzip.c \ runzip.c \

View file

@ -33,7 +33,7 @@
/* needed for CRC routines */ /* needed for CRC routines */
#include "lzma/C/7zCrc.h" #include "lzma/C/7zCrc.h"
#include "util.h" #include "util.h"
#include "lrzip.h" #include "lrzip_core.h"
#include "rzip.h" #include "rzip.h"
#if defined(__APPLE__) || defined(__FreeBSD__) #if defined(__APPLE__) || defined(__FreeBSD__)

View file

@ -16,8 +16,8 @@
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef LRZIP_H #ifndef LRZIP_CORE_H
#define LRZIP_H #define LRZIP_CORE_H
#include "lrzip_private.h" #include "lrzip_private.h"

View file

@ -5,7 +5,7 @@
#include "LzFindMt.h" #include "LzFindMt.h"
#include "lrzip.h" #include "lrzip_core.h"
void MtSync_Construct(CMtSync *p) void MtSync_Construct(CMtSync *p)
{ {

View file

@ -17,7 +17,7 @@
#include "LzFindMt.h" #include "LzFindMt.h"
#endif #endif
#include "lrzip.h" #include "lrzip_core.h"
#ifdef SHOW_STAT #ifdef SHOW_STAT
static int ttt = 0; static int ttt = 0;

2
main.c
View file

@ -50,7 +50,7 @@
#endif #endif
#include "rzip.h" #include "rzip.h"
#include "lrzip.h" #include "lrzip_core.h"
#include "util.h" #include "util.h"
#include "stream.h" #include "stream.h"

View file

@ -44,7 +44,7 @@
#include "runzip.h" #include "runzip.h"
#include "stream.h" #include "stream.h"
#include "util.h" #include "util.h"
#include "lrzip.h" #include "lrzip_core.h"
/* needed for CRC routines */ /* needed for CRC routines */
#include "lzma/C/7zCrc.h" #include "lzma/C/7zCrc.h"

2
rzip.c
View file

@ -54,7 +54,7 @@
#include "md5.h" #include "md5.h"
#include "stream.h" #include "stream.h"
#include "util.h" #include "util.h"
#include "lrzip.h" #include "lrzip_core.h"
/* needed for CRC routines */ /* needed for CRC routines */
#include "lzma/C/7zCrc.h" #include "lzma/C/7zCrc.h"

View file

@ -58,7 +58,7 @@
#include "lzma/C/LzmaLib.h" #include "lzma/C/LzmaLib.h"
#include "util.h" #include "util.h"
#include "lrzip.h" #include "lrzip_core.h"
#define STREAM_BUFSIZE (1024 * 1024 * 10) #define STREAM_BUFSIZE (1024 * 1024 * 10)