- Timestamp:
- Nov 17, 2007, 7:32:21 PM (18 years ago)
- Location:
- branches/watcom_ant17_java141
- Files:
-
- 3 added
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/watcom_ant17_java141/readme.txt
r7 r35 8 8 9 9 For more info see the index.html in the /doc directory. 10 11 Special Notes on Using Golden Code Java 1.4.1 12 ========================================== 13 The Golden Code jni_md.h doesn't set the JNIEXPORT and JNIIMPORT definitions as was done 14 in the IBM Java 1.3.1 in jniproto_md.h. The IBM 1.3.1 definitions must be used for linking 15 to a DLL. Specifically, it requires definition to a __declspec() call. 16 17 Special Notes on Using Innotek Java 1.4.2 18 ======================================= 19 The Innotek Java distribution doesn't include the jni.h (et.al.) include files. It has been 20 reported that the IBM Java 1.3.1 include directory can be used. 21 22 Special Notes on Using an Newer Ant 23 ================================== 24 Delete the ant.cmd file in this directory, so it isn't called instead of the Ant 25 distribution's file. Modify the env.cmd file to match your environment. -
branches/watcom_ant17_java141/src/plugins/org.eclipse.swt/Eclipse SWT PI/pm/library/build.cmd
r14 r35 6 6 rem http://www.eclipse.org/legal/cpl-v10.html 7 7 8 if NOT "%1" == "" set MAKE_TARGET=%1 9 10 if NOT "%BUILD_ENV%"=="OPENWATCOM" goto VAC4 11 12 set MAKE=wmake 13 set MAKE_FILE=openwatcom 14 set INCLUDE=D:\WATCOM\h;D:\WATCOM\h\os2 15 if "%MAKE_TARGET%" == "clean" set MAKE_TARGET=-c %MAKE_TARGET% 16 17 goto RUNMAKE 18 19 :VAC4 20 8 21 if "%VACPPMAIN%"=="" goto NOVAC 9 22 10 23 call %VACPPMAIN%\bin\setenv.cmd 11 set INCLUDE=..\..\..\Eclipse SWT\common\library;%INCLUDE%12 nmake -f make_os2.mak %1 %2 %3 %4 %5 %6 %7 %8 %9 13 goto END24 set MAKE=nmake 25 set MAKE_FILE=vac4 26 goto RUNMAKE 14 27 15 28 :NOVAC … … 19 32 echo Possibly, Visual Age C/C++ 4.0 is not installed. 20 33 echo. 34 goto END 35 36 :RUNMAKE 37 38 set COMMON_DIR=..\..\..\Eclipse SWT\common\library 39 set JNI_DIR=%JAVA_HOME%\include;%JAVA_HOME%\include\os2 40 set INCLUDE=%COMMON_DIR%;%JNI_DIR%;%INCLUDE% 41 %MAKE% -f make_%MAKE_FILE%.mak %MAKE_TARGET% %2 %3 %4 %5 %6 %7 %8 %9 21 42 22 43 :END -
branches/watcom_ant17_java141/src/plugins/org.eclipse.swt/Eclipse SWT PI/pm/library/make_os2.mak
r14 r35 27 27 SWT_LOCATION = ..\..\..\..\org.eclipse.swt.pm\os\os2\x86 28 28 29 all:30 @set SWT_LIB=$(SWT_LIB)31 vacbld make_os2.icc32 copy $(SWT_LIB) $(SWT_LOCATION)33 34 clean:35 -del *.obj *.res *.dll *.lib *.ics $(SWT_LOCATION)\*.dll
Note:
See TracChangeset
for help on using the changeset viewer.