source: trunk/j/configure.in @ 1928

Last change on this file since 1928 was 1928, checked in by piso, 20 years ago

0.18.1.18

File size: 5.7 KB
Line 
1dnl  Process this file with autoconf to produce a configure script.
2dnl
3dnl  Copyright (C) 1998-2003 Peter Graves
4dnl  $Id: configure.in,v 1.50 2003-05-23 18:57:09 piso Exp $
5dnl
6dnl  This program is free software; you can redistribute it and/or
7dnl  modify it under the terms of the GNU General Public License
8dnl  as published by the Free Software Foundation; either version 2
9dnl  of the License, or (at your option) any later version.
10dnl
11dnl  This program is distributed in the hope that it will be useful,
12dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
13dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14dnl  GNU General Public License for more details.
15dnl
16dnl  You should have received a copy of the GNU General Public License
17dnl  along with this program; if not, write to the Free Software
18dnl  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20AC_REVISION($Revision: 1.50 $)
21
22BOOTFILE=./configure-options
23
24if test -f "${BOOTFILE}" && test -z "${IN_BOOT}" ; then
25    echo "reading options from ${BOOTFILE}"
26    IN_BOOT=1 $0 `cat ${BOOTFILE}` $*
27    exit $?
28fi
29
30AC_INIT(j.in)
31
32AC_PROG_INSTALL
33
34version=0.18.1.18
35AC_SUBST(version)
36
37if test $OSTYPE = cygwin32 || test $OSTYPE = cygwin ; then
38    CYGWIN=yes
39    PATHSEP=";"
40else
41    PATHSEP=":"
42fi
43AC_SUBST(PATHSEP)
44
45
46dnl  Make srcdir absolute.
47
48case "${srcdir}" in
49    /*)
50        ;;
51    .)
52        unset CDPATH
53        if test "${PWD}" != "" && test "`(cd ${PWD}; sh -c pwd)`" = "`pwd`"; then
54            srcdir="$PWD"
55        else
56            srcdir="`(cd ${srcdir}; pwd)`"
57        fi
58        ;;
59    *)
60        srcdir="`(cd ${srcdir}; pwd)`"
61        ;;
62esac
63
64
65dnl  User -must- specify location of JDK.
66AC_ARG_WITH(jdk,
67[  --with-jdk=DIR          JDK you want to use ],
68[
69    JDK=${with_jdk}
70],
71[
72    AC_MSG_ERROR([no jdk specified; use --with-jdk])
73])
74
75dnl  Remove trailing '/' (if any).
76JDK=`echo $JDK | sed -e 's/\/$//'`
77
78if test -x $JDK/bin/java; then
79    JAVA=$JDK/bin/java;
80elif test -x $JDK/jre/bin/java; then
81    JAVA=$JDK/jre/bin/java;
82else
83    AC_MSG_ERROR(java not found)
84fi
85AC_SUBST(JAVA)
86
87
88dnl  Java version.
89
90AC_MSG_CHECKING(Java version)
91JAVA_VERSION=`$JAVA -version 2>&1`
92
93case "$JAVA_VERSION" in
94    java*1.1*)
95        AC_MSG_ERROR(Java 1.3 or later is required)
96        ;;
97    java*1.2.*)
98        AC_MSG_ERROR(Java 1.3 or later is required)
99        ;;
100    java*1.3.0*)
101        AC_MSG_RESULT(1.3.0)
102        ;;
103    java*1.3.1*)
104        AC_MSG_RESULT(1.3.1)
105        ;;
106    java*1.3*)
107        AC_MSG_RESULT(1.3)
108        ;;
109    java*1.4*)
110        AC_MSG_RESULT(1.4)
111        ;;
112    *)
113        AC_MSG_ERROR(unknown Java version)
114        ;;
115esac
116
117
118dnl  jikes/javac
119
120test -z "$JAVAC" && AC_CHECK_PROGS(JAVAC, jikes)
121test -z "$JAVAC" && JAVAC=$JDK/bin/javac
122if test "$JAVAC" = jikes; then
123    JAVACFLAGS="+D +F"
124fi
125AC_SUBST(JAVACFLAGS)
126
127
128dnl  fastjar/jar
129
130test -z "$JAR" && AC_CHECK_PROGS(JAR, fastjar)
131test -z "$JAR" && JAR=$JDK/bin/jar
132AC_SUBST(JAR)
133
134
135dnl  Java runtime classes (including Swing).
136
137case "$JAVA_VERSION" in
138    java*1.3*)
139        JAVA_RUNTIME=$JDK/jre/lib/rt.jar:$JDK/lib/tools.jar
140        ;;
141    java*1.4*)
142        JAVA_RUNTIME=$JDK/jre/lib/rt.jar:$JDK/lib/tools.jar
143        ;;
144    *)
145        ;;
146esac
147AC_SUBST(JAVA_RUNTIME)
148
149
150dnl  Make prefix explicit.
151test "x$prefix" = xNONE && prefix=/usr/local
152
153
154dnl  Make datadir explicit.
155eval "datadir=$datadir"
156
157
158dnl  Construct command line for shell script.
159
160dnl  Places to look for j.
161JPATH=$srcdir/src:$datadir/j/j.jar
162
163case "$JAVA_VERSION" in
164    java*1.3*)
165        CP="-cp"
166        CLASSPATH="$JPATH:$JDK/lib/tools.jar"
167        ;;
168    java*1.4*)
169        CP="-cp"
170        CLASSPATH="$JPATH:$JDK/lib/tools.jar"
171        ;;
172    *)
173        ;;
174esac
175AC_SUBST(CP)
176AC_SUBST(CLASSPATH)
177
178COMPILER_CLASSPATH="$srcdir/src:$JAVA_RUNTIME"
179AC_SUBST(COMPILER_CLASSPATH)
180
181dnl  Runtime options to be passed to java
182AC_ARG_WITH(options,
183[  --with-options=OPTIONS  runtime options to be passed to java (e.g. -server) ],
184[
185    JAVA_OPTIONS=${with_options}
186])
187AC_SUBST(JAVA_OPTIONS)
188
189dnl  Extensions (JIMI etc.)
190AC_ARG_WITH(extensions,
191[  --with-extensions=PATH  extensions to CLASSPATH (JIMI, Xerces, etc.) ],
192[
193    EXTENSIONS=${with_extensions}
194])
195
196if test $EXTENSIONS; then
197    CLASSPATH="$CLASSPATH:$EXTENSIONS"
198    COMPILER_CLASSPATH="$COMPILER_CLASSPATH:$EXTENSIONS"
199fi
200
201if test $CYGWIN; then
202    JAVA_RUNTIME=`cygpath -p -w $JAVA_RUNTIME`
203    CLASSPATH=`cygpath -p -w $CLASSPATH`
204    COMPILER_CLASSPATH=`cygpath -p -w $COMPILER_CLASSPATH`
205fi
206
207dnl jpty
208
209AC_ARG_ENABLE(jpty,
210[  --enable-jpty           build and install jpty
211  --disable-jpty          do not build or install jpty (default)])
212
213if test "$enable_jpty" = "yes"; then
214    if test $CYGWIN; then
215        JPTY=jpty.exe
216    else
217        JPTY=jpty
218    fi
219fi
220
221AC_SUBST(JPTY)
222
223dnl debug
224
225AC_ARG_ENABLE(debug,
226[  --enable-debug          enable run-time debugging
227  --disable-debug         disable run-time debugging (default)])
228
229case "$enable_debug" in
230    "")
231        ;;
232    no)
233        JAVACFLAGS="$JAVACFLAGS -O"
234        ;;
235    *)
236        JAVACFLAGS="$JAVACFLAGS -g"
237        ;;
238esac
239
240
241AC_OUTPUT([
242Makefile
243src/Makefile
244src/jpty/Makefile
245src/bsh/Makefile
246src/bsh/classpath/Makefile
247src/bsh/commands/Makefile
248src/bsh/reflect/Makefile
249src/gnu/regexp/Makefile
250src/org/xml/sax/Makefile
251src/org/xml/sax/helpers/Makefile
252src/org/xml/sax/ext/Makefile
253src/org/armedbear/j/Makefile
254src/org/armedbear/j/version
255src/org/armedbear/j/aelfred/Makefile
256src/org/armedbear/j/mail/Makefile
257src/org/armedbear/j/jdb/Makefile
258src/org/armedbear/lisp/Makefile
259j
260])
261
262AC_OUTPUT_COMMANDS([chmod 755 j])
263
264
265dnl  Write out j.bat.
266
267AC_OUTPUT_COMMANDS(
268[
269    if test $CYGWIN; then
270        echo "\"`cygpath -w $JAVA`\" $CP \"$CLASSPATH\" $JIT Editor %1 %2 %3 %4 %5 %6 %7 %8 %9" > j.bat
271    fi
272])
Note: See TracBrowser for help on using the repository browser.