mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
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:
parent
c2ed75b868
commit
184a8f0025
|
|
@ -34,7 +34,7 @@ libtmplrzip_la_SOURCES = \
|
|||
lrzip_private.h \
|
||||
liblrzip_private.h \
|
||||
lrzip.c \
|
||||
lrzip.h \
|
||||
lrzip_core.h \
|
||||
rzip.h \
|
||||
rzip.c \
|
||||
runzip.c \
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
/* needed for CRC routines */
|
||||
#include "lzma/C/7zCrc.h"
|
||||
#include "util.h"
|
||||
#include "lrzip.h"
|
||||
#include "lrzip_core.h"
|
||||
#include "rzip.h"
|
||||
|
||||
#if defined(__APPLE__) || defined(__FreeBSD__)
|
||||
|
|
|
|||
|
|
@ -16,8 +16,8 @@
|
|||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifndef LRZIP_H
|
||||
#define LRZIP_H
|
||||
#ifndef LRZIP_CORE_H
|
||||
#define LRZIP_CORE_H
|
||||
|
||||
#include "lrzip_private.h"
|
||||
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
#include "LzFindMt.h"
|
||||
|
||||
#include "lrzip.h"
|
||||
#include "lrzip_core.h"
|
||||
|
||||
void MtSync_Construct(CMtSync *p)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
#include "LzFindMt.h"
|
||||
#endif
|
||||
|
||||
#include "lrzip.h"
|
||||
#include "lrzip_core.h"
|
||||
|
||||
#ifdef SHOW_STAT
|
||||
static int ttt = 0;
|
||||
|
|
|
|||
2
main.c
2
main.c
|
|
@ -50,7 +50,7 @@
|
|||
#endif
|
||||
|
||||
#include "rzip.h"
|
||||
#include "lrzip.h"
|
||||
#include "lrzip_core.h"
|
||||
#include "util.h"
|
||||
#include "stream.h"
|
||||
|
||||
|
|
|
|||
2
runzip.c
2
runzip.c
|
|
@ -44,7 +44,7 @@
|
|||
#include "runzip.h"
|
||||
#include "stream.h"
|
||||
#include "util.h"
|
||||
#include "lrzip.h"
|
||||
#include "lrzip_core.h"
|
||||
/* needed for CRC routines */
|
||||
#include "lzma/C/7zCrc.h"
|
||||
|
||||
|
|
|
|||
2
rzip.c
2
rzip.c
|
|
@ -54,7 +54,7 @@
|
|||
#include "md5.h"
|
||||
#include "stream.h"
|
||||
#include "util.h"
|
||||
#include "lrzip.h"
|
||||
#include "lrzip_core.h"
|
||||
/* needed for CRC routines */
|
||||
#include "lzma/C/7zCrc.h"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue