mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
Fix bustage
This commit is contained in:
parent
ab93285bed
commit
fe4f079813
@ -34,7 +34,6 @@ endif
|
||||
|
||||
REQUIRES = necko \
|
||||
string \
|
||||
unicharutil \
|
||||
$(NULL)
|
||||
|
||||
CPPSRCS = \
|
||||
@ -74,7 +73,6 @@ CPPSRCS += \
|
||||
endif
|
||||
|
||||
LIBS += \
|
||||
$(MOZ_UNICHARUTIL_LIBS) \
|
||||
$(XPCOM_LIBS) \
|
||||
$(NSPR_LIBS) \
|
||||
$(NULL)
|
||||
|
@ -37,7 +37,6 @@
|
||||
#include "nsIAtom.h"
|
||||
#include "nsString.h"
|
||||
#include "nsReadableUtils.h"
|
||||
#include "nsUnicharUtils.h"
|
||||
#include "prprf.h"
|
||||
#include "prtime.h"
|
||||
#include <stdio.h>
|
||||
@ -64,8 +63,8 @@ int main(int argc, char** argv)
|
||||
if (nsnull == s) {
|
||||
break;
|
||||
}
|
||||
nsAutoString sb;
|
||||
sb.AssignWithConversion(buf);
|
||||
nsCAutoString sb;
|
||||
sb.Assign(buf);
|
||||
strings[count++] = ToNewUnicode(sb);
|
||||
ToUpperCase(sb);
|
||||
strings[count++] = ToNewUnicode(sb);
|
||||
|
@ -23,7 +23,6 @@ DEPTH=..\..
|
||||
REQUIRES = xpcom \
|
||||
string \
|
||||
necko \
|
||||
unicharutil \
|
||||
$(NULL)
|
||||
include <$(DEPTH)/config/config.mak>
|
||||
|
||||
@ -88,7 +87,6 @@ LINCS= \
|
||||
$(NULL)
|
||||
|
||||
LLIBS= \
|
||||
$(DIST)\lib\unicharutil_s.lib \
|
||||
$(DIST)\lib\xpcom.lib \
|
||||
$(LIBNSPR)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user