dnl Process this file with autoconf to produce a configure script. AC_INIT(src/ossimConfig.h.in) AC_CONFIG_HEADER(src/ossimConfig.h) dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(fcntl.h unistd.h dbmalloc.h dlfcn.h malloc.h getopt.h) dnl check and setup defines for different compiler checks dnl and specific output extensions. AC_CANONICAL_SYSTEM AC_EXEEXT AC_OBJEXT OSSIM_MAJOR_VERSION_NUMBER=1 OSSIM_MINOR_VERSION_NUMBER=4 OSSIM_RELEASE_NUMBER=3 export OSSIM_MAJOR_VERSION_NUMBER export OSSIM_MINOR_VERSION_NUMBER export OSSIM_RELEASE_NUMBER OSSIM_USE_UNIX=0 OSSIM_USE_WIN32=0 OSSIM_USE_MAC=0 OSSIM_USE_CYGWIN=0 OSSIM_USE_LINUX=0 OSSIM_USE_SGI= OSSIM_USE_HPUX= OSSIM_USE_SYSV= OSSIM_USE_SVR4= OSSIM_USE_AIX= OSSIM_USE_SUN= OSSIM_USE_SOLARIS= OSSIM_USE_SUNOS= OSSIM_USE_ALPHA= OSSIM_USE_OSF= OSSIM_USE_BSD= OSSIM_USE_DARWIN= OSSIM_USE_MAC= OSSIM_USE_FREEBSD= OSSIM_USE_OPENBSD= OSSIM_USE_NETBSD= OSSIM_USE_VMS= OSSIM_USE_ULTRIX= TOOLKIT_VERSION= WIDGET_SET= HOST_RESULT=linux lib_unicode_suffix= lib_debug_suffix= CARBON= VERSION=${OSSIM_MAJOR_VERSION_NUMBER}.${OSSIM_MINOR_VERSION_NUMBER}.${OSSIM_RELEASE_NUMBER} CFLAGS="" CXXFLAGS="" LDFLAGS_EXE="" SO_EXT=so LD_SHARED="g++ -shared" LDFLAGS="" PIC_FLAG="-fPIC" dnl to support a new system, you need to add its canonical name (as determined dnl by config.sub or specified by the configure command line) to this "case" dnl and also define the shared library flags below - search for dnl SHARED_LIB_SETUP to find the exact place case "${host}" in *-hp-hpux* ) OSSIM_USE_HPUX=1 NEEDS_D_REENTRANT_FOR_R_FUNCS=1 SO_SUFFIX=sl AC_DEFINE(__OSSIM_HPUX__) HOST_RESULT=hpux SO_SUFFIX=sl ;; *-*-linux* ) OSSIM_USE_LINUX=1 AC_DEFINE(__OSSIM_LINUX__) TMP=`uname -m` if test "x$TMP" = "xalpha"; then OSSIM_USE_ALPHA=1 AC_DEFINE(__OSSIM_ALPHA__) fi HOST_RESULT=linux ;; *-*-irix5* | *-*-irix6* ) OSSIM_USE_SGI=1 OSSIM_USE_SVR4=1 AC_DEFINE(__OSSIM_SGI__) AC_DEFINE(__OSSIM_SVR4__) HOST_RESULT=irix ;; *-*-solaris2* ) OSSIM_USE_SUN=1 OSSIM_USE_SOLARIS=1 OSSIM_USE_SVR4=1 AC_DEFINE(__OSSIM_SUN__) AC_DEFINE(__OSSIM_SOLARIS__) AC_DEFINE(__OSSIM_SVR4__) NEEDS_D_REENTRANT_FOR_R_FUNCS=1 HOST_RESULT=solaris ;; *-*-sunos4* ) OSSIM_USE_SUN=1 OSSIM_USE_SUNOS=1 OSSIM_USE_BSD=1 AC_DEFINE(__OSSIM_SUN__) AC_DEFINE(__OSSIM_SUNOS__) AC_DEFINE(__OSSIM_BSD__) HOST_RESULT=sunos ;; *-*-freebsd*) OSSIM_USE_BSD=1 OSSIM_USE_FREEBSD=1 AC_DEFINE(__OSSIM_FREEBSD__) AC_DEFINE(__OSSIM_BSD__) HOST_RESULT=freebsd ;; *-*-openbsd*) OSSIM_USE_BSD=1 OSSIM_USE_OPENBSD=1 AC_DEFINE(__OSSIM_FREEBSD__) AC_DEFINE(__OSSIM_OPENBSD__) HOST_RESULT=openbsd ;; *-*-netbsd*) OSSIM_USE_BSD=1 OSSIM_USE_NETBSD=1 AC_DEFINE(__OSSIM_FREEBSD__) AC_DEFINE(__OSSIM_NETBSD__) HOST_RESULT=netbsd ;; *-*-osf* ) OSSIM_USE_ALPHA=1 OSSIM_USE_OSF=1 AC_DEFINE(__OSSIM_ALPHA__) AC_DEFINE(__OSSIM_OSF__) NEEDS_D_REENTRANT_FOR_R_FUNCS=1 HOST_RESULT=osf ;; *-*-dgux5* ) OSSIM_USE_ALPHA=1 OSSIM_USE_SVR4=1 AC_DEFINE(__OSSIM_ALPHA__) AC_DEFINE(__OSSIM_SVR4__) HOST_RESULT=dgux5 ;; *-*-sysv5* ) OSSIM_USE_SYSV=1 OSSIM_USE_SVR4=1 AC_DEFINE(__OSSIM_SYSV__) AC_DEFINE(__OSSIM_SVR4__) HOST_RESULT=sysv5 ;; *-*-aix* ) OSSIM_USE_AIX=1 OSSIM_USE_SYSV=1 OSSIM_USE_SVR4=1 dnl Irvin Probst reports that the shared dnl libraries under AIX have the same suffix as the normal ones SO_SUFFIX=a AC_DEFINE(__OSSIM_AIX__) AC_DEFINE(__OSSIM_SYSV__) AC_DEFINE(__OSSIM_SVR4__) HOST_RESULT=aix ;; *-*-cygwin* ) SO_SUFFIX=dll PROGRAM_EXT=".exe" RESCOMP=windres AC_DEFINE(__OSSIM_CYGWIN__) OSSIM_USE_CYGWIN=1 HOST_RESULT=cygwin PIC_FLAG="" ;; *-*-mingw32* ) SO_SUFFIX=dll PROGRAM_EXT=".exe" RESCOMP=windres AC_DEFINE(__OSSIM_CYGWIN__) OSSIM_USE_CYGWIN=1 HOST_RESULT=mingw32 LDFLAGS="$LDFLAGS -Wl,--subsystem,windows -mwindows" PIC_FLAG="" ;; *-pc-msdosdjgpp ) OSSIM_USE_UNIX=0 OSSIM_USE_DOS=1 AC_DEFINE(__OSSIM_DOS__) PROGRAM_EXT=".exe" dnl DJGPP needs explicit -lstdc++ for some reason (VS: mayb some versions only?) LIBS="$LIBS -lstdc++" HOST_RESULT=msdosdjgpp ;; *-pc-os2_emx | *-pc-os2-emx ) AC_DEFINE(__OSSIM_EMX__) PROGRAM_EXT=".exe" LIBS="$LIBS -lstdcpp" HOST_RESULT=os2_emx ;; powerpc-*-darwin* ) dnl PowerPC Darwin based distributions (including Mac OS X) OSSIM_USE_BSD=1 OSSIM_USE_DARWIN=1 OSSIM_USE_MAC=1 TOOLKIT=MAC SO_SUFFIX=dylib AC_DEFINE(__OSSIM_BSD__) AC_DEFINE(__OSSIM_DARWIN__) AC_DEFINE(__OSSIM_POWERPC__) CARBON="-DCARBON" CFLAGS="${CFLAGS} -DDARWIN -DMACOSX -no-cpp-precomp" CXXFLAGS="${CXXFLAGS} -DDARWIN -DMACOSX -no-cpp-precomp" HOST_RESULT=darwin ;; *-*-beos* ) dnl leave OSSIM_USE_UNIX on - BeOS is sufficiently Unix-like for this OSSIM_USE_BEOS=1 AC_DEFINE(__OSSIM_BEOS__) HOST_RESULT=beos ;; *) AC_MSG_ERROR(unknown system type ${host}.) esac TOOLKIT_DIR=`echo ${TOOLKIT} | tr "[[A-Z]]" "[[a-z]]"` dnl Checks for programs. AC_PROG_CXX AC_PROG_INSTALL AC_PROG_RANLIB AC_CHECK_PROG(AR, ar, ar, ar) AC_CHECK_PROG(ECHO, echo, echo, echo) AC_CHECK_PROG(RM, rm, rm, rm) AC_CHECK_PROG(STRIP, strip, strip, strip) AC_CHECK_PROG(DIRNAME, dirname, dirname) AC_CHECK_PROG(CC, gcc, gcc) AC_CHECK_PROG(SED, sed, sed) AC_CHECK_PROG(CHMOD, chmod, chmod) AC_CHECK_PROG(RANLIB, ranlib, ranlib) dnl We will define a standard system lib variable dnl that will check all standard libraries # This library may be required by Python 2.0 AC_CHECK_LIB(util, openpty) AC_CHECK_LIB(dl, dlopen) AC_CHECK_LIB(m, sin) AC_CHECK_LIB(z, main) AC_CHECK_LIB(png, main) AC_CHECK_LIB(gif, main) dnl AC_CHECK_LIB(jpeg, main) dnl Now check the LONG LONG support AC_CHECK_SIZEOF(long long, 8) if test "$ac_cv_sizeof_long_long" != "0"; then AC_DEFINE(HAVE_LONG_LONG) echo "Defining HAVE_LONG LONG to 1 in ossimConfig.h" fi dnl We really need a relatively recent libtiff, at least a 3.5.x version. dnl AC_CHECK_LIB(tiff, TIFFReadRGBATile) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_C_INLINE AC_TYPE_SIZE_T OSSIM_TOP=`pwd` TOP=${OSSIM_TOP} export OSSIM_TOP export TOP OSSIM_CHECK_WXGUI TOOLCHAIN_NAME="${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}-${WX_RELEASE}" if test "$cross_compiling" = "yes"; then TOOLCHAIN_NAME="${TOOLCHAIN_NAME}-${host_alias}" fi WX_LIBRARY="wx_${TOOLCHAIN_NAME}" MACOSX_BUNDLE= if test "$OSSIM_USE_MAC" = 1; then OSSIM_RESOURCES_MACOSX_ASCII="lib${WX_LIBRARY}.r" OSSIM_RESOURCES_MACOSX_DATA="lib${WX_LIBRARY}.rsrc" MACOSX_BUNDLE="bundle" LIBOSSIMMACRES="\$(WX_PREFIX)/lib/${OSSIM_RESOURCES_MACOSX_ASCII}" AC_CHECK_PROG(RESCOMP, Rez, Rez, /Developer/Tools/Rez) AC_CHECK_PROG(DEREZ, DeRez, DeRez, /Developer/Tools/DeRez) dnl resources are bundled both with shared library and applications dnl since the carb resource *must* be included in the application LIBOSSIMMACRESCOMP="\$(RESCOMP) -t APPL Carbon.r ${LIBOSSIMMACRES} -o \$(BIN_PROGRAM)" LIBOSSIMMACRESWXCONFIG="${RESCOMP} -t APPL Carbon.r \${WX_PREFIX}/lib/${OSSIM_RESOURCES_MACOSX_ASCII} -o" fi ossimSHARED_LIBRARY="no" ossimSTATIC_APPS="yes" ossimDEBUG_FLAG="no" ossimOPTIMIZATION_FLAG="yes" ossimADDITIONAL_GDAL_CONFIG_OPTIONS="" OSSIM_ARG_ENABLE(shared, [ --enable-shared generate shared libraries], ossimSHARED_LIBRARY) OSSIM_ARG_ENABLE(appstatic, [ --enable-appstatic generate static apps], ossimSTATIC_APPS) OSSIM_ARG_ENABLE(debug, [ --enable-debug add debug flag], ossimDEBUG_FLAG) OSSIM_ARG_ENABLE(optimization,[ --enable-optimization add optimization], ossimOPTIMIZATION_FLAG) OSSIM_ARG_WITH(gdalconf, [ --with-gdalconf[=config flags] additional gdal config options that are passed to gdal configure], ossimADDITIONAL_GDAL_CONFIG_OPTIONS) DEBUG_FLAG="" OPTIMIZATION_FLAG="" LIBOSSIMGUI="" STATIC_APP_FLAG="" ADDITIONAL_GDAL_CONFIG_OPTIONS="" if test "$ossimADDITIONAL_GDAL_CONFIG_OPTIONS" != "no" \ -a "$ossimADDITIONAL_GDAL_CONFIG_OPTIONS" != "yes" \ -a "$ossimADDITIONAL_GDAL_CONFIG_OPTIONS" != "" ; then ADDITIONAL_GDAL_CONFIG_OPTIONS="$ossimADDITIONAL_GDAL_CONFIG_OPTIONS" fi if test "$ossimDEBUG_FLAG" = "yes" ; then ossimOPTIMIZATION_FLAG="no" DEBUG_FLAG="-g" else DEBUG_FLAG="" fi if test "$ossimOPTIMIZATION_FLAG" = "yes" ; then OPTIMIZATION_FLAG="-O2" case "${host}" in powerpc-*-darwin* ) OPTIMIZATION_FLAG="-Os" ;; esac else OPTIMIZATION_FLAG="" fi CFLAGS="${CFLAGS} ${DEBUG_FLAG} ${OPTIMIZATION_FLAG}" CXXFLAGS="${CXXFLAGS} ${DEBUG_FLAG} ${OPTIMIZATION_FLAG}" if test "$ossimSTATIC_APPS" = "yes" ; then STATIC_APP_FLAG="--static" LDFLAGS_EXE="${LDFLAGS_EXE} --static" fi if test "$WX_SETTING" = "1" ; then LIBOSSIMGUI="-lossim_wxgui" fi export ADDITIONAL_GDAL_CONFIG_OPTIONS dnl -------------------------------- dnl Check for the mpi package... dnl -------------------------------- OSSIM_CHECK_MPI dnl -------------------------------- dnl Geotiff package is internal and uses GDAL's dnl -------------------------------- GEOTIFF_TOP= GEOTIFF_INCLUDE_PATH= GEOTIFF_LIB_PATH= GEOTIFF_LIBS= GEOTIFF_DEFINES=-DGEOTIFF_ENABLED echo "USING geotifffrom internal package GDAL" OSSIM_CONFIGURE_PACKAGES dnl -------------------------------- dnl GDAL package is internal dnl -------------------------------- cd ${OSSIM_TOP} GDAL_TOP= GDAL_SETTING=1 GDAL_INCLUDES= GDAL_LIBS=`${OSSIM_TOP}/src/packages/package_install/bin/gdal-config --libs` GDAL_LIB_PATH= GDAL_DEFINES="-DGDAL_SETTING=1" OSSIM_CHECK_FREETYPE dnl _________________________________________ dnl Setup shared library support dnl _________________________________________ if test "$ossimSHARED_LIBRARY" = "yes" ; then case "${host}" in *-hp-hpux* ) ;; *-*-linux* ) ;; *-*-solaris2* ) ;; *-*-darwin* ) ;; *-*-aix* ) ;; *-*-cygwin* | *-*-mingw32* ) LD_SHARED="${CXX} -shared -Wl,--out-implib,lib/\$\{OSSIM_LIBRARY_IMPORTLIB\}.a -o" PIC_FLAG="-UOSSIMUSINGDLL -DOSSIMMAKINGDLL=1 -D_DLL=1 -D_WINDLL=1" ;; *-*-beos* ) LD_SHARED="${LD} -shared -o" ;; *-*-freebsd* | *-*-openbsd* | *-*-netbsd* | \ *-*-sunos4* | \ *-*-irix5* | *-*-irix6* | \ *-*-osf* | \ *-*-dgux5* | \ *-*-sysv5* ) dnl defaults are ok ;; *) AC_MSG_ERROR(unknown system type $host.) esac fi dnl _________________________ START DOING SOME SUBSTITUTIONS ___________________ dnl dnl CFLAGS="${CFLAGS} -DHAVE_CONFIG_H ${PIC_FLAG} ${DEFS} ${MPI_DEFINES} ${GDAL_DEFINES} ${GEOTIFF_DEFINES} ${FREETYPE_DEFINES}" CXXFLAGS="${CXXFLAGS} -DHAVE_CONFIG_H ${PIC_FLAG} ${DEFS} ${MPI_DEFINES} ${GDAL_DEFINES} ${GEOTIFF_DEFINES} ${FREETYPE_DEFINES}" AC_SUBST(DEREZ) AC_SUBST(MACOSX_BUNDLE) AC_SUBST(LIBOSSIMMACRES) AC_SUBST(LIBOSSIMMACRESCOMP) AC_SUBST(LIBOSSIMMACRESWXCONFIG) AC_SUBST(VERSION,$VERSION) AC_SUBST(CFLAGS, $CFLAGS) AC_SUBST(CXXFLAGS, $CXXFLAGS) AC_SUBST(OSSIM_MAJOR_VERSION_NUMBER, $OSSIM_MAJOR_VERSION_NUMBER) AC_SUBST(OSSIM_MINOR_VERSION_NUMBER, $OSSIM_MINOR_VERSION_NUMBER) AC_SUBST(OSSIM_RELEASE_NUMBER, $OSSIM_RELEASE_NUMBER) AC_SUBST(HOST_RESULT, $HOST_RESULT ) AC_SUBST(CARBON) AC_SUBST(SO_EXT, ${SO_SUFFIX}) AC_SUBST(OSSIM_TOP,$OSSIM_TOP) AC_SUBST(STATIC_APP_FLAG, $STATIC_APP_FLAG) AC_SUBST(PIC_FLAG, $PIC_FLAG) AC_SUBST(DEBUG_FLAG, $DEBUG_FLAG) AC_SUBST(STATIC_APP_FLAG, $STATIC_APP_FLAG) AC_SUBST(SHARED_LIB_FLAG, $SHARED_LIB_FLAG) AC_SUBST(STATIC_APP_FLAG, $STATIC_APP_FLAG) AC_SUBST(LIBOSSIMGUI, $LIBOSSIMGUI) AC_SUBST(OPTIMIZATION_FLAG, $OPTIMIZATION_FLAG) AC_SUBST(LD_SHARED, $LD_SHARED) AC_SUBST(LDFLAGS, $LDFLAGS) AC_SUBST(LDFLAGS_GL, $LDFLAGS_GL) AC_SUBST(LDFLAGS_VERSIONING, LDFLAGS_VERSIONING) AC_SUBST(LDFLAGS_EXE, $LDFLAGS_EXE) AC_SUBST(GEOTIFF_INCLUDE_PATH, $GEOTIFF_INCLUDE_PATH) AC_SUBST(GEOTIFF_LIB_PATH, $GEOTIFF_LIB_PATH) AC_SUBST(GEOTIFF_LIBS, $GEOTIFF_LIBS) AC_SUBST(GEOTIFF_DEFINES, $GEOTIFF_DEFINES) AC_SUBST(ADDITIONAL_GDAL_CONFIG_OPTIONS, $ADDITIONAL_GDAL_CONFIG_OPTIONS) AC_SUBST(GDAL_INCLUDES, $GDAL_INCLUDES) AC_SUBST(GDAL_LIB_PATH, $GDAL_LIB_PATH) AC_SUBST(GDAL_LIBS, $GDAL_LIBS) AC_SUBST(GDAL_DEFINES, $GDAL_DEFINES) AC_SUBST(GDAL_SETTING, $GDAL_SETTING) dnl dnl Now setup the ossim-config file for install locations dnl OSSIM_CORE_LIBS="-lossim_init -lossim_plugin -lossim_visualsim -lossim_parallel -lossim_vec -lossim_imaging -lossim_projections -lossim_elevation -lossim_support_data -lossim_vpfutil -lossim_font -lossim_base -lossim_polyclip -lossim_matrix -lossim_vec ${TOP}/src/packages/package_install/lib/libtiff.a" OSSIM_GUI_LIBS="-lossim_wx -lossim_wxogl" ADDITIONAL_GUI_LIBS= if test "$OSSIM_USE_CYGWIN" = "1" ; then ADDITIONAL_GUI_LIBS="-lrpcrt4 -loleaut32 -lole32 -luuid -lwinspool -lwinmm -lshell32 -lcomctl32 -lctl3d32 -ladvapi32 -lwsock32 -lkernel32 -luser32 -lgdi32 -lcomdlg32" fi AC_SUBST(OSSIM_CORE_LIBS, $OSSIM_CORE_LIBS) AC_SUBST(OSSIM_GUI_LIBS, $OSSIM_GUI_LIBS) AC_SUBST(ADDITIONAL_GUI_LIBS) INSTALL_OSSIM_LIBS="$OSSIM_INIT_LIB $MPI_LIB_PATH $FREETYPE_LIB_PATH -L\${prefix}/lib/ossim -lossim_init -lossim_plugin -lossim_visualsim -lossim_parallel -lossim_vec -lossim_imaging -lossim_projections -lossim_elevation -lossim_support_data -lossim_vpfutil -lossim_font -lossim_base -lossim_polyclip -lossim_matrix -lossim_vec -L\${prefix}/lib/ossim/libtiff.a $GDAL_LIBS $MPI_LIBS $FREETYPE_LIBS $LIBS" INSTALL_OSSIM_NO_GUI_LIBS=${INSTALL_OSSIM_LIBS} INSTALL_OSSIM_INCLUDES="$FREETYPE_INCLUDES $MPI_INCLUDES -I\${prefix}/include/ossim" INSTALL_OSSIM_GUI_LIBS="-L\${prefix}/lib/ossim -lossim_wx -lossim_wxogl $WX_LIBS $ADDITIONAL_GUI_LIBS" INSTALL_OSSIM_GUI_INCLUDES="-I\${prefix}/include/ossim/ogl $WX_INCLUDES" INSTALL_OSSIM_CFLAGS="$DEBUG_FLAG $DEFS $OSSIM_USE_WX_GUI $OPTIMIZATION_FLAG -Wall -Wno-deprecated -pipe -fPIC $MPI_DEFINES $FREETYPE_DEFINES GDAL_SETTING=1" INSTALL_OSSIM_NO_GUI_CFLAGS="$DEBUG_FLAG $DEFS $OPTIMIZATION_FLAG -Wall -Wno-deprecated -pipe -fPIC $MPI_DEFINES $FREETYPE_DEFINES GDAL_SETTING=1" INSTALL_OSSIM_CPP_FLAGS="" if test $WX_SETTING = 1 ; then INSTALL_OSSIM_LIBS="$INSTALL_OSSIM_GUI_LIBS $INSTALL_OSSIM_LIBS" INSTALL_OSSIM_INCLUDES="$INSTALL_OSSIM_GUI_INCLUDES $INSTALL_OSSIM_INCLUDES" fi INSTALL_OSSIM_NO_GUI_INCLUDES="$INSTALL_OSSIM_INCLUDES" AC_SUBST(OSSIM_VERSION) AC_SUBST(INSTALL_OSSIM_CFLAGS) AC_SUBST(INSTALL_OSSIM_NO_GUI_CFLAGS) AC_SUBST(INSTALL_OSSIM_CPP_FLAGS) AC_SUBST(INSTALL_OSSIM_NO_GUI_CPP_FLAGS) AC_SUBST(INSTALL_OSSIM_LIBS) AC_SUBST(INSTALL_OSSIM_NO_GUI_LIBS) AC_SUBST(INSTALL_OSSIM_INCLUDES) AC_SUBST(INSTALL_OSSIM_NO_GUI_INCLUDES) INCLUDE_COMMON="include ${TOP}/Makefile.common" AC_SUBST(INCLUDE_COMMON) dnl dnl Output all files dnl AC_OUTPUT( ossim.spec Makefile.common Makefile:makefiles/unx/makeroot.unx makelib.mak:makefiles/unx/makelib.unx makeprog.mak:makefiles/unx/makeprog.unx src/apps/ossim-config src/apps/Makefile:makefiles/unx/makeapps.unx src/Makefile:makefiles/unx/makesrc.unx src/gui/Makefile:makefiles/unx/makelibwx.unx src/gui/wx/Makefile:makefiles/unx/makelibwx.unx src/gui/wx/custom_editor/Makefile:makefiles/unx/makelibwx.unx src/gui/wx/events/Makefile:makefiles/unx/makelibwx.unx src/gui/wx/factory/Makefile:makefiles/unx/makelibwx.unx src/gui/wx/histogram/Makefile:makefiles/unx/makelibwx.unx src/gui/wx/init/Makefile:makefiles/unx/makelibwx.unx src/gui/wx/ossim/Makefile:makefiles/unx/makelibwx.unx src/gui/wx/vce/Makefile:makefiles/unx/makelibwx.unx src/gui/wx/widgets/Makefile:makefiles/unx/makelibwx.unx src/packages/package_install/Makefile:makefiles/unx/makelibpackagesinstall.unx src/packages/ogl/Makefile:makefiles/unx/makelibwxogl.unx src/packages/ogl/src/Makefile:makefiles/unx/makelibwxogl.unx src/ossim_core/plugin/Makefile:makefiles/unx/makelibplugin.unx src/ossim_core/init/Makefile:makefiles/unx/makelibinit.unx src/ossim_core/Makefile:makefiles/unx/makelibcore.unx src/ossim_core/base/Makefile:makefiles/unx/makelibbase.unx src/ossim_core/base/common/Makefile:makefiles/unx/makelibbase.unx src/ossim_core/base/common/events/Makefile:makefiles/unx/makelibbase.unx src/ossim_core/base/context/Makefile:makefiles/unx/makelibbase.unx src/ossim_core/base/data_types/Makefile:makefiles/unx/makelibbase.unx src/ossim_core/base/data_types/color_space/Makefile:makefiles/unx/makelibbase.unx src/ossim_core/base/data_types/datum/Makefile:makefiles/unx/makelibbase.unx src/ossim_core/base/data_types/ellipse/Makefile:makefiles/unx/makelibbase.unx src/ossim_core/base/data_types/geoid/Makefile:makefiles/unx/makelibbase.unx src/ossim_core/base/factory/Makefile:makefiles/unx/makelibbase.unx src/ossim_core/base/misc/Makefile:makefiles/unx/makelibbase.unx src/ossim_core/base/misc/lookup_tables/Makefile:makefiles/unx/makelibbase.unx src/ossim_core/base/misc/hash/Makefile:makefiles/unx/makelibbase.unx src/ossim_core/elevation/Makefile:makefiles/unx/makelibelevation.unx src/ossim_core/elevation/formats/Makefile:makefiles/unx/makelibelevation.unx src/ossim_core/elevation/formats/dted_cell/Makefile:makefiles/unx/makelibelevation.unx src/ossim_core/elevation/formats/usgs_dem_cell/Makefile:makefiles/unx/makelibelevation.unx src/ossim_core/fonts/Makefile:makefiles/unx/makelibfonts.unx src/ossim_core/fonts/factory/Makefile:makefiles/unx/makelibfonts.unx src/ossim_core/imaging/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/annotation/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/atmospheric_correction/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/cache/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/elevation/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/factory/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/filters/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/adrg/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/aigrid/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/ccf/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/cibcadrg/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/doqq/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/dted/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/gdal/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/general_raster/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/grass/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/jpeg/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/landsat/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/nitf/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/rpf/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/tiff/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/formats/usgs_dem/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/histogram/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/misc/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/patch/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/property/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/remap_tables/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/resample/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/tile_sources/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/imaging/tonal_balance/Makefile:makefiles/unx/makelibimaging.unx src/ossim_core/matrix/Makefile:makefiles/unx/makelibmatrix.unx src/ossim_core/libpolyclip/Makefile:makefiles/unx/makelibpolyclip.unx src/ossim_core/parallel/Makefile:makefiles/unx/makelibparallel.unx src/ossim_core/projections/Makefile:makefiles/unx/makelibprojections.unx src/ossim_core/projections/property/Makefile:makefiles/unx/makelibprojections.unx src/ossim_core/projections/factory/Makefile:makefiles/unx/makelibprojections.unx src/ossim_core/projections/map_projections/Makefile:makefiles/unx/makelibprojections.unx src/ossim_core/projections/sensor_modeling/Makefile:makefiles/unx/makelibprojections.unx src/ossim_core/projections/sensor_modeling/coarse_grid/Makefile:makefiles/unx/makelibprojections.unx src/ossim_core/projections/sensor_modeling/landsat/Makefile:makefiles/unx/makelibprojections.unx src/ossim_core/projections/sensor_modeling/rpc/Makefile:makefiles/unx/makelibprojections.unx src/ossim_core/projections/sensor_modeling/fcsi/Makefile:makefiles/unx/makelibprojections.unx src/ossim_core/support_data/Makefile:makefiles/unx/makelibsupportdata.unx src/ossim_core/support_data/esri/Makefile:makefiles/unx/makelibsupportdata.unx src/ossim_core/support_data/ff_l7/Makefile:makefiles/unx/makelibsupportdata.unx src/ossim_core/support_data/ff_revb/Makefile:makefiles/unx/makelibsupportdata.unx src/ossim_core/support_data/ff_revc/Makefile:makefiles/unx/makelibsupportdata.unx src/ossim_core/vec/Makefile:makefiles/unx/makelibvec.unx src/ossim_core/vec/shape/Makefile:makefiles/unx/makelibvec.unx src/ossim_core/vec/vpf/Makefile:makefiles/unx/makelibvec.unx src/ossim_core/visual_sim/Makefile:makefiles/unx/makelibvisualsim.unx src/ossim_core/visual_sim/formats/Makefile:makefiles/unx/makelibvisualsim.unx src/ossim_core/visual_sim/formats/multiflight/Makefile:makefiles/unx/makelibvisualsim.unx src/ossim_core/vpf_util/Makefile:makefiles/unx/makelibvpfutil.unx src/packages/Makefile:makefiles/unx/makelibpackages.unx )