Changeset 804
- Timestamp:
- 03/08/06 11:35:37 (7 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
-
README.MinGW (modified) (3 diffs)
-
configure.ac (modified) (2 diffs)
-
file.MinGW (added)
-
make_mingw_links (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/README.MinGW
r737 r804 8 8 9 9 If you wish a Microsoft compatible import library (.LIB file that references a DLL) to also be built, you need to make sure the LIB command is available in your MinGW path. Type LIB at the MSYS prompt now to check if this is so. 10 11 Edit applications/NXtranslate/text_xml/Makefile.am and 12 applications/NXtranslate/Makefile.am and in both replace 13 `xml2-config --cflags` with -I/usr/local/include in AM_CPPFLAGS 10 14 11 15 Now just type … … 31 35 Enjoy! 32 36 37 38 39 Use libtool 1.5 but note it has problems as MinGW does not ship the unix "file" command so you get "file magic" errors 40 41 to remedy, install file.MinGW as /usr/local/bin/file and chmod +x it 42 43 also rename libmxml.a as libmxml.dll.a 44 33 45 Freddie Akeroyd (F.A.Akeroyd@rl.ac.uk) 34 46 … … 36 48 37 49 $Id$ 50 =================================================================== 51 RCS file: /isis/cvs/repository/nexus/applications/NXtranslate/text_xml/Makefile.am,v 52 retrieving revision 1.3 53 diff -r1.3 Makefile.am 54 32c32 -
trunk/configure.ac
r798 r804 132 132 AC_MSG_NOTICE([Java SDK home is $javaroot]) 133 133 JAVAINCLUDE="-I$javaroot/include" 134 AC_PATH_PROGS(JAVAC,javac,,[$javaroot/bin:$PATH]) 134 AC_PATH_PROGS(JAVAC,gcj javac,,[$javaroot/bin:$PATH]) 135 if test `basename "$JAVAC"` = "gcj"; then 136 JAVACFLAGS="-C" # force creation of .class files 137 fi 135 138 AC_PATH_PROGS(JAVADOC,javadoc,,[$javaroot/bin:$PATH]) 136 139 AC_PATH_PROGS(JAR,jar,,[$javaroot/bin:$PATH]) 137 AC_PATH_PROGS(JAVA,java,,[$javaroot/bin:$PATH]) 138 AC_PATH_PROGS(JAVAH,javah,,[$javaroot/bin:$PATH]) 139 fi 140 AC_PATH_PROGS(JAVA,gij java,,[$javaroot/bin:$PATH]) 141 AC_PATH_PROGS(JAVAH,gcjh javah,,[$javaroot/bin:$PATH]) 142 fi 143 140 144 141 145 #AC_ARG_WITH([java], AC_HELP_STRING([--with-java=java compiler], [Specify name of Java compiler]), … … 165 169 # JAVAINCLUDE= 166 170 #fi 171 AC_SUBST(JAVACFLAGS) 167 172 AC_SUBST(SHARED_LDFLAGS) 168 173 AC_SUBST(JAVAINCLUDE) -
trunk/make_mingw_links
r737 r804 34 34 # HDF5 windows binary install (from http://hdf.ncsa.uiuc.edu) 35 35 # 36 ln -sf "/c/program files/hdf/5-16 4-win/include" /usr/local/hdf5/include37 ln -sf "/c/program files/hdf/5-16 4-win/dll/hdf5dll.dll" /usr/local/hdf5/lib/libhdf5.dll36 ln -sf "/c/program files/hdf/5-165-win/include" /usr/local/hdf5/include 37 ln -sf "/c/program files/hdf/5-165-win/dll/hdf5dll.dll" /usr/local/hdf5/lib/libhdf5.dll 38 38 # 39 39 # ZLIB (from http://www.gzip.org/zlib/) … … 43 43 # SZIP from http://hdf.ncsa.uiuc.edu/ 44 44 # 45 ln -sf "/c/program files/hdf/szip20-win-xp- enc/dll/szlibdll.dll" /usr/local/lib/libsz.dll45 ln -sf "/c/program files/hdf/szip20-win-xp-noenc/dll/szlibdll.dll" /usr/local/lib/libsz.dll 46 46 # 47 47 # LIBXML2 (optional; only needed for NXtranslate) from http://xmlsoft.org/
Note: See TracChangeset
for help on using the changeset viewer.
