mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 14:52:16 +00:00
Bug 1418425 - Update bsdiff to use the crc table directly and not link against bz2 r=rstrong
MozReview-Commit-ID: 2GLmnzF9CMh --HG-- extra : rebase_source : 8f79d6508712838e4d147c101d31830fe8cb715b
This commit is contained in:
parent
b25470aa9e
commit
e335ad7577
@ -32,6 +32,8 @@
|
||||
#define _O_BINARY 0
|
||||
#endif
|
||||
|
||||
#include "crctable.h"
|
||||
|
||||
#undef MIN
|
||||
#define MIN(x,y) (((x)<(y)) ? (x) : (y))
|
||||
|
||||
|
@ -10,13 +10,6 @@ HOST_SOURCES += [
|
||||
|
||||
HostProgram('mbsdiff')
|
||||
|
||||
if CONFIG['MOZ_SYSTEM_BZ2']:
|
||||
HOST_OS_LIBS += CONFIG['MOZ_BZ2_LIBS']
|
||||
else:
|
||||
HOST_USE_LIBS += [
|
||||
'hostbz2',
|
||||
]
|
||||
|
||||
if CONFIG['HOST_OS_ARCH'] == 'WINNT':
|
||||
HOST_OS_LIBS += [
|
||||
'ws2_32',
|
||||
@ -26,5 +19,3 @@ if CONFIG['HOST_OS_ARCH'] == 'WINNT':
|
||||
LOCAL_INCLUDES += [
|
||||
'/toolkit/mozapps/update/updater',
|
||||
]
|
||||
|
||||
HOST_CXXFLAGS += CONFIG['MOZ_BZ2_CFLAGS']
|
||||
|
Loading…
Reference in New Issue
Block a user