mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 13:02:57 +00:00
Fix Javaconnect build bustage on Win32. r=tor, a=mkaply. Not part of default build.
This commit is contained in:
parent
fdbe109b8c
commit
eea43f64b5
25
configure.in
25
configure.in
@ -4519,18 +4519,23 @@ if test `echo "$MOZ_EXTENSIONS" | grep -c java` -ne 0; then
|
|||||||
|
|
||||||
if test -n "${JAVA_BIN_PATH}"; then
|
if test -n "${JAVA_BIN_PATH}"; then
|
||||||
dnl Look for javac and jar in the specified path.
|
dnl Look for javac and jar in the specified path.
|
||||||
AC_PATH_PROG(JAVAC, javac, :, $JAVA_BIN_PATH)
|
_JAVA_PATH=$JAVA_BIN_PATH
|
||||||
AC_PATH_PROG(JAR, jar, :, $JAVA_BIN_PATH)
|
|
||||||
if test -z "$JAVAC" || test "$JAVAC" = ":" || test -z "$JAR" || test "$JAR" = ":"; then
|
|
||||||
AC_MSG_ERROR([The programs javac and jar were not found in given path $JAVA_BIN_PATH.])
|
|
||||||
fi
|
|
||||||
else
|
else
|
||||||
dnl No path specified, so look for javac and jar are in $JAVA_HOME & $PATH.
|
dnl No path specified, so look for javac and jar are in $JAVA_HOME & $PATH.
|
||||||
AC_PATH_PROG(JAVAC, javac, :, [$JAVA_HOME/bin:$PATH])
|
_JAVA_PATH=$JAVA_HOME/bin:$PATH
|
||||||
AC_PATH_PROG(JAR, jar, :, [$JAVA_HOME/bin:$PATH])
|
fi
|
||||||
if test -z "$JAVAC" || test "$JAVAC" = ":" || test -z "$JAR" || test "$JAR" = ":"; then
|
case "$host_os" in
|
||||||
AC_MSG_ERROR([The programs javac and jar were not found. Set \$JAVA_HOME or use --with-java-bin-path={java-bin-dir}.])
|
mingw*|cygwin*|msvc*|mks*)
|
||||||
fi
|
JAVA_PATH=`cygpath -u $_JAVA_PATH`
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
JAVA_PATH=$_JAVA_PATH
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
AC_PATH_PROG(JAVAC, javac, :, $JAVA_PATH)
|
||||||
|
AC_PATH_PROG(JAR, jar, :, $JAVA_PATH)
|
||||||
|
if test -z "$JAVAC" || test "$JAVAC" = ":" || test -z "$JAR" || test "$JAR" = ":"; then
|
||||||
|
AC_MSG_ERROR([The programs javac and jar were not found. Set \$JAVA_HOME or use --with-java-bin-path={java-bin-dir}.])
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -68,6 +68,14 @@ ifdef MOZ_DEBUG
|
|||||||
JAVAC_FLAGS = -g
|
JAVAC_FLAGS = -g
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(OS_ARCH),WINNT)
|
||||||
|
RUN =
|
||||||
|
OUTPUT_DIR = $(shell cygpath -w $(CURDIR)/_javagen/org/mozilla/xpcom)
|
||||||
|
else
|
||||||
|
RUN = $(DIST)/bin/run-mozilla.sh
|
||||||
|
OUTPUT_DIR = $(CURDIR)/_javagen/org/mozilla/xpcom
|
||||||
|
endif
|
||||||
|
|
||||||
_javagen/org/mozilla/xpcom/.iface_done:
|
_javagen/org/mozilla/xpcom/.iface_done:
|
||||||
@if test ! -d _javagen/org/mozilla/xpcom; then \
|
@if test ! -d _javagen/org/mozilla/xpcom; then \
|
||||||
touch .done; \
|
touch .done; \
|
||||||
@ -79,13 +87,15 @@ _javagen/org/mozilla/xpcom/.iface_done:
|
|||||||
@$(INSTALL) -m 644 $(addprefix ../,$(GEN_JAVA_SRCS)) \
|
@$(INSTALL) -m 644 $(addprefix ../,$(GEN_JAVA_SRCS)) \
|
||||||
_javagen/org/mozilla/xpcom
|
_javagen/org/mozilla/xpcom
|
||||||
@echo Generating Java interface files
|
@echo Generating Java interface files
|
||||||
$(DIST)/bin/run-mozilla.sh $(DIST)/bin/GenerateJavaInterfaces$(BIN_SUFFIX) \
|
$(RUN) $(DIST)/bin/GenerateJavaInterfaces$(BIN_SUFFIX) -d $(OUTPUT_DIR)
|
||||||
-d $(CURDIR)/_javagen/org/mozilla/xpcom
|
|
||||||
@touch $@
|
@touch $@
|
||||||
|
|
||||||
|
# Use find and xargs for passing list of Java files to JAVAC. This avoids the
|
||||||
|
# "argument list too long" error on Windows when using *.java
|
||||||
org/mozilla/xpcom/.class_done: _javagen/org/mozilla/xpcom/.iface_done
|
org/mozilla/xpcom/.class_done: _javagen/org/mozilla/xpcom/.iface_done
|
||||||
@echo Compiling Java interface classes
|
@echo Compiling Java interface classes
|
||||||
@$(JAVAC) $(JAVAC_FLAGS) -classpath . -d . _javagen/org/mozilla/xpcom/*.java
|
find _javagen -name *.java | xargs $(JAVAC) $(JAVAC_FLAGS) -classpath . -d . \
|
||||||
|
-sourcepath _javagen
|
||||||
@touch $@
|
@touch $@
|
||||||
|
|
||||||
$(JARFILE): org/mozilla/xpcom/.class_done Makefile
|
$(JARFILE): org/mozilla/xpcom/.class_done Makefile
|
||||||
|
@ -186,7 +186,7 @@ nsJavaXPTCStub::ReleaseWeakRef()
|
|||||||
{
|
{
|
||||||
// if this is a child
|
// if this is a child
|
||||||
if (mMaster)
|
if (mMaster)
|
||||||
return mMaster->ReleaseWeakRef();
|
mMaster->ReleaseWeakRef();
|
||||||
|
|
||||||
--mWeakRefCnt;
|
--mWeakRefCnt;
|
||||||
|
|
||||||
|
@ -228,11 +228,12 @@ TestParams::TestSimpleTypeArrayInOut(PRUint32 aCount, PRInt16** aArray)
|
|||||||
printf("-> TestSimpleTypeArrayInOut()\n");
|
printf("-> TestSimpleTypeArrayInOut()\n");
|
||||||
|
|
||||||
printf("in:\n");
|
printf("in:\n");
|
||||||
for (PRUint32 i = 0; i < aCount; i++) {
|
PRUint32 i;
|
||||||
|
for (i = 0; i < aCount; i++) {
|
||||||
printf("[%d] %d\n", i, aArray[0][i]);
|
printf("[%d] %d\n", i, aArray[0][i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (PRUint32 i = 0; i < aCount/2; i++) {
|
for (i = 0; i < aCount/2; i++) {
|
||||||
PRUint32 index = aCount - 1 - i;
|
PRUint32 index = aCount - 1 - i;
|
||||||
PRUint16 temp = aArray[0][index];
|
PRUint16 temp = aArray[0][index];
|
||||||
aArray[0][index] = aArray[0][i];
|
aArray[0][index] = aArray[0][i];
|
||||||
@ -248,11 +249,12 @@ TestParams::TestCharStrTypeArrayInOut(PRUint32 aCount, char*** aArray)
|
|||||||
printf("-> TestCharStrTypeArrayInOut()\n");
|
printf("-> TestCharStrTypeArrayInOut()\n");
|
||||||
|
|
||||||
printf("in:\n");
|
printf("in:\n");
|
||||||
for (PRUint32 i = 0; i < aCount; i++) {
|
PRUint32 i;
|
||||||
|
for (i = 0; i < aCount; i++) {
|
||||||
printf("[%d] %s\n", i, aArray[0][i]);
|
printf("[%d] %s\n", i, aArray[0][i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (PRUint32 i = 0; i < aCount/2; i++) {
|
for (i = 0; i < aCount/2; i++) {
|
||||||
PRUint32 index = aCount - 1 - i;
|
PRUint32 index = aCount - 1 - i;
|
||||||
char* temp = aArray[0][index];
|
char* temp = aArray[0][index];
|
||||||
aArray[0][index] = aArray[0][i];
|
aArray[0][index] = aArray[0][i];
|
||||||
@ -268,12 +270,13 @@ TestParams::TestWCharStrTypeArrayInOut(PRUint32 aCount, PRUnichar*** aArray)
|
|||||||
printf("-> TestWCharStrTypeArrayInOut()\n");
|
printf("-> TestWCharStrTypeArrayInOut()\n");
|
||||||
|
|
||||||
printf("in:\n");
|
printf("in:\n");
|
||||||
for (PRUint32 i = 0; i < aCount; i++) {
|
PRUint32 i;
|
||||||
|
for (i = 0; i < aCount; i++) {
|
||||||
nsAutoString tmp(aArray[0][i]);
|
nsAutoString tmp(aArray[0][i]);
|
||||||
printf("[%d] %s\n", i, NS_LossyConvertUCS2toASCII(tmp).get());
|
printf("[%d] %s\n", i, NS_LossyConvertUCS2toASCII(tmp).get());
|
||||||
}
|
}
|
||||||
|
|
||||||
for (PRUint32 i = 0; i < aCount/2; i++) {
|
for (i = 0; i < aCount/2; i++) {
|
||||||
PRUint32 index = aCount - 1 - i;
|
PRUint32 index = aCount - 1 - i;
|
||||||
PRUnichar* temp = aArray[0][index];
|
PRUnichar* temp = aArray[0][index];
|
||||||
aArray[0][index] = aArray[0][i];
|
aArray[0][index] = aArray[0][i];
|
||||||
@ -289,13 +292,14 @@ TestParams::TestIIDTypeArrayInOut(PRUint32 aCount, nsIID*** aArray)
|
|||||||
printf("-> TestIIDTypeArrayInOut()\n");
|
printf("-> TestIIDTypeArrayInOut()\n");
|
||||||
|
|
||||||
printf("in:\n");
|
printf("in:\n");
|
||||||
for (PRUint32 i = 0; i < aCount; i++) {
|
PRUint32 i;
|
||||||
|
for (i = 0; i < aCount; i++) {
|
||||||
char* iid = aArray[0][i]->ToString();
|
char* iid = aArray[0][i]->ToString();
|
||||||
printf("[%d] %s\n", i, iid);
|
printf("[%d] %s\n", i, iid);
|
||||||
PR_Free(iid);
|
PR_Free(iid);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (PRUint32 i = 0; i < aCount/2; i++) {
|
for (i = 0; i < aCount/2; i++) {
|
||||||
PRUint32 index = aCount - 1 - i;
|
PRUint32 index = aCount - 1 - i;
|
||||||
nsID* temp = aArray[0][index];
|
nsID* temp = aArray[0][index];
|
||||||
aArray[0][index] = aArray[0][i];
|
aArray[0][index] = aArray[0][i];
|
||||||
@ -311,13 +315,14 @@ TestParams::TestIfaceTypeArrayInOut(PRUint32 aCount, nsILocalFile*** aArray)
|
|||||||
printf("-> TestIfaceTypeArrayInOut()\n");
|
printf("-> TestIfaceTypeArrayInOut()\n");
|
||||||
|
|
||||||
printf("in:\n");
|
printf("in:\n");
|
||||||
for (PRUint32 i = 0; i < aCount; i++) {
|
PRUint32 i;
|
||||||
|
for (i = 0; i < aCount; i++) {
|
||||||
nsAutoString path;
|
nsAutoString path;
|
||||||
aArray[0][i]->GetPath(path);
|
aArray[0][i]->GetPath(path);
|
||||||
printf("[%d] %s\n", i, NS_LossyConvertUCS2toASCII(path).get());
|
printf("[%d] %s\n", i, NS_LossyConvertUCS2toASCII(path).get());
|
||||||
}
|
}
|
||||||
|
|
||||||
for (PRUint32 i = 0; i < aCount/2; i++) {
|
for (i = 0; i < aCount/2; i++) {
|
||||||
PRUint32 index = aCount - 1 - i;
|
PRUint32 index = aCount - 1 - i;
|
||||||
nsILocalFile* temp = aArray[0][index];
|
nsILocalFile* temp = aArray[0][index];
|
||||||
aArray[0][index] = aArray[0][i];
|
aArray[0][index] = aArray[0][i];
|
||||||
|
@ -48,6 +48,10 @@
|
|||||||
#include "nsIWeakReference.h"
|
#include "nsIWeakReference.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
#define snprintf _snprintf
|
||||||
|
#endif
|
||||||
|
|
||||||
#define WRITE_NOSCRIPT_METHODS
|
#define WRITE_NOSCRIPT_METHODS
|
||||||
|
|
||||||
|
|
||||||
@ -191,8 +195,8 @@ public:
|
|||||||
#ifdef WRITE_NOSCRIPT_METHODS
|
#ifdef WRITE_NOSCRIPT_METHODS
|
||||||
size = NS_ARRAY_LENGTH(kNoscriptMethodIfaces);
|
size = NS_ARRAY_LENGTH(kNoscriptMethodIfaces);
|
||||||
mNoscriptMethodsTable.Init(size);
|
mNoscriptMethodsTable.Init(size);
|
||||||
for (PRUint32 i = 0; i < size; i++) {
|
for (PRUint32 j = 0; j < size; j++) {
|
||||||
mNoscriptMethodsTable.Put(nsDependentCString(kNoscriptMethodIfaces[i]));
|
mNoscriptMethodsTable.Put(nsDependentCString(kNoscriptMethodIfaces[j]));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
@ -640,17 +644,17 @@ public:
|
|||||||
NS_ENSURE_SUCCESS(rv, rv);
|
NS_ENSURE_SUCCESS(rv, rv);
|
||||||
|
|
||||||
// write parameters
|
// write parameters
|
||||||
for (PRUint8 i = 0; i < paramCount; i++) {
|
for (PRUint8 j = 0; j < paramCount; j++) {
|
||||||
const nsXPTParamInfo ¶mInfo = aMethodInfo->GetParam(i);
|
const nsXPTParamInfo ¶mInfo = aMethodInfo->GetParam(j);
|
||||||
if (paramInfo.IsRetval())
|
if (paramInfo.IsRetval())
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (i != 0) {
|
if (j != 0) {
|
||||||
rv = out->Write(kParamSeparator, sizeof(kParamSeparator) - 1, &count);
|
rv = out->Write(kParamSeparator, sizeof(kParamSeparator) - 1, &count);
|
||||||
NS_ENSURE_SUCCESS(rv, rv);
|
NS_ENSURE_SUCCESS(rv, rv);
|
||||||
}
|
}
|
||||||
|
|
||||||
rv = WriteParam(out, aIInfo, aMethodIndex, ¶mInfo, i + 1);
|
rv = WriteParam(out, aIInfo, aMethodIndex, ¶mInfo, j + 1);
|
||||||
NS_ENSURE_SUCCESS(rv, rv);
|
NS_ENSURE_SUCCESS(rv, rv);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -826,8 +830,8 @@ int main(int argc, char** argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// see if given path exists
|
// see if given path exists
|
||||||
output_dir = new nsLocalFile();
|
rv = NS_NewNativeLocalFile(nsDependentCString(argv[++i]), PR_TRUE,
|
||||||
rv = output_dir->InitWithNativePath(nsDependentCString(argv[++i]));
|
getter_AddRefs(output_dir));
|
||||||
PRBool val;
|
PRBool val;
|
||||||
if (NS_FAILED(rv) || NS_FAILED(output_dir->Exists(&val)) || !val ||
|
if (NS_FAILED(rv) || NS_FAILED(output_dir->Exists(&val)) || !val ||
|
||||||
NS_FAILED(output_dir->IsDirectory(&val)) || !val)
|
NS_FAILED(output_dir->IsDirectory(&val)) || !val)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user