configure.ac (539e46a3) configure.ac (72bd2d34)
1dnl /******************************************************************
2dnl * vi:set sw=3 ts=3 et:
3dnl *
4dnl * Name: configure.in
5dnl * Auth: Willem van Dorp, Ross Nicholson, Oisin Boydell - Sun Microsystems Ireland
6dnl * Date: $Date: 2008-09-08 07:38:40 $
7dnl *
8dnl * Desc: This file serves as input for the GNU autoconf package

--- 12 unchanged lines hidden (view full) ---

21[ DMAKE_PATH="$withval"
22])
23AC_ARG_WITH(dmake-url,
24[ --with-dmake-url=<URL> Specify the location of downloadable dmake source code. For example:
25 http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2
26 Note that dmake is under GPL license.],
27[ DMAKE_URL="$withval"
28])
1dnl /******************************************************************
2dnl * vi:set sw=3 ts=3 et:
3dnl *
4dnl * Name: configure.in
5dnl * Auth: Willem van Dorp, Ross Nicholson, Oisin Boydell - Sun Microsystems Ireland
6dnl * Date: $Date: 2008-09-08 07:38:40 $
7dnl *
8dnl * Desc: This file serves as input for the GNU autoconf package

--- 12 unchanged lines hidden (view full) ---

21[ DMAKE_PATH="$withval"
22])
23AC_ARG_WITH(dmake-url,
24[ --with-dmake-url=<URL> Specify the location of downloadable dmake source code. For example:
25 http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2
26 Note that dmake is under GPL license.],
27[ DMAKE_URL="$withval"
28])
29AC_ARG_WITH(packager-list,
30[ --with-packager-list=<PATH TO PACK LIST> Specify a file to drive the packaging process.
31 The file must follow the format explained in
32 instsetoo_native/util/pack.lst
33],,)
29AC_ARG_WITH(gnu-patch,
30[ --with-gnu-patch Specify location of GNU patch on Solaris or FreeBSD
31],,)
32AC_ARG_WITH(gnu-cp,
33[ --with-gnu-cp Specify location of GNU cp on Solaris
34],,)
35AC_ARG_WITH(gperf,
36[ --with-gperf Specify location of gperf on Solaris or FreeBSD

--- 913 unchanged lines hidden (view full) ---

950 UPD="`grep RSCVERSION= $_solenv/inc/minor.mk | $AWK -F"=" '{ print $2 }'`"
951 AC_SUBST(UPD)
952 SOURCEVERSION="`grep SOURCEVERSION= $_solenv/inc/minor.mk | $AWK -F"=" '{ print $2 }'`"
953 AC_SUBST(SOURCEVERSION)
954else
955 AC_MSG_ERROR([$_solenv/inc/minor.mk missing but needed for architecture/os detecion and proper environment script generation...])
956fi
957
34AC_ARG_WITH(gnu-patch,
35[ --with-gnu-patch Specify location of GNU patch on Solaris or FreeBSD
36],,)
37AC_ARG_WITH(gnu-cp,
38[ --with-gnu-cp Specify location of GNU cp on Solaris
39],,)
40AC_ARG_WITH(gperf,
41[ --with-gperf Specify location of gperf on Solaris or FreeBSD

--- 913 unchanged lines hidden (view full) ---

955 UPD="`grep RSCVERSION= $_solenv/inc/minor.mk | $AWK -F"=" '{ print $2 }'`"
956 AC_SUBST(UPD)
957 SOURCEVERSION="`grep SOURCEVERSION= $_solenv/inc/minor.mk | $AWK -F"=" '{ print $2 }'`"
958 AC_SUBST(SOURCEVERSION)
959else
960 AC_MSG_ERROR([$_solenv/inc/minor.mk missing but needed for architecture/os detecion and proper environment script generation...])
961fi
962
963
964dnl ==================================================================
965dnl Checks for custom pack.lst
966dnl ==================================================================
967AC_MSG_CHECKING([for custom pack.lst])
968CUSTOM_PACK_LIST=
969USE_PACKAGER=
970if test -n "$with_packager_list" ; then
971 if test -e $with_packager_list; then
972 CUSTOM_PACK_LIST=$with_packager_list
973 USE_PACKAGER=YES
974 fi
975fi
976if test -n "$CUSTOM_PACK_LIST"; then
977 AC_MSG_RESULT([$CUSTOM_PACK_LIST])
978else
979 AC_MSG_RESULT([no])
980fi
981AC_SUBST(CUSTOM_PACK_LIST)
982AC_SUBST(USE_PACKAGER)
983
984
958dnl ===================================================================
959dnl Checks for the operating system and processor.
960dnl ===================================================================
961AC_CANONICAL_SYSTEM
962if test "$build" != "$host" -o "$build" != "$target" \
963 -o "$host" != "$target"; then
964 AC_MSG_WARN([cross-compiling by any means is not supported (yet)!])
965 echo "cross-compiling by any means is not supported (yet)!" >> warn

--- 6287 unchanged lines hidden ---
985dnl ===================================================================
986dnl Checks for the operating system and processor.
987dnl ===================================================================
988AC_CANONICAL_SYSTEM
989if test "$build" != "$host" -o "$build" != "$target" \
990 -o "$host" != "$target"; then
991 AC_MSG_WARN([cross-compiling by any means is not supported (yet)!])
992 echo "cross-compiling by any means is not supported (yet)!" >> warn

--- 6287 unchanged lines hidden ---