Skip to content
This repository has been archived by the owner on Feb 9, 2018. It is now read-only.

Commit

Permalink
Revert 3c33d72 and 73086af
Browse files Browse the repository at this point in the history
Discussion: 3c33d72
  • Loading branch information
SubJunk committed Feb 12, 2012
1 parent c681dcd commit bd0c7ba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PMS.launch
Expand Up @@ -13,5 +13,5 @@
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="net.pms.PMS"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="ps3mediaserver"/>
<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Xmx768M -Djava.encoding=UTF-8"/>
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Xmx768M -Djava.net.preferIPv4Stack=true -Djava.encoding=UTF-8"/>
</launchConfiguration>
2 changes: 1 addition & 1 deletion src/main/external-resources/PMS.bat
Expand Up @@ -6,4 +6,4 @@ echo You can try to reduce the Xmx parameter value if you keep getting "Cannot c
echo Last word: You must have java installed ! http://www.java.com
echo ------------------------------------------------
pause
start javaw -Xmx768M -Dfile.encoding=UTF-8 -classpath update.jar;pms.jar net.pms.PMS
start javaw -Xmx768M -Djava.net.preferIPv4Stack=true -Dfile.encoding=UTF-8 -classpath update.jar;pms.jar net.pms.PMS
2 changes: 1 addition & 1 deletion src/main/external-resources/PMS.sh
Expand Up @@ -49,4 +49,4 @@ if $cygwin; then
fi

# Execute the JVM
exec "$JAVA" $JAVA_OPTS -Xmx768M -Xss1024k -Dfile.encoding=UTF-8 -classpath "$PMS_JARS" net.pms.PMS "$@"
exec "$JAVA" $JAVA_OPTS -Xmx768M -Xss1024k -Dfile.encoding=UTF-8 -Djava.net.preferIPv4Stack=true -classpath "$PMS_JARS" net.pms.PMS "$@"
2 changes: 1 addition & 1 deletion src/main/external-resources/nsis/pms.nsi
Expand Up @@ -50,7 +50,7 @@ Section ""

; change for your purpose (-jar etc.)
${GetParameters} $1
StrCpy $0 '"$R0" -classpath update.jar;pms.jar -Xmx768M -Dfile.encoding=UTF-8 ${CLASS} $1'
StrCpy $0 '"$R0" -classpath update.jar;pms.jar -Xmx768M -Djava.net.preferIPv4Stack=true -Dfile.encoding=UTF-8 ${CLASS} $1'

SetOutPath $EXEDIR
Exec $0
Expand Down

0 comments on commit bd0c7ba

Please sign in to comment.