Changeset 13731
- Timestamp:
- 2007-01-23T11:24:51+13:00 (16 years ago)
- Location:
- trunk/gs2build-extra
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gs2build-extra/Makefile.in
r9749 r13731 1 1 ########################################################################### 2 2 # 3 # Makefile -- gs dl3 # Makefile -- gs2build module 4 4 # A component of the Greenstone digital library software 5 5 # from the New Zealand Digital Library Project at the … … 47 47 ALLFILES = $(OBJECTS) 48 48 49 #INSTALLDIRS = src/recpt src/txt2db src/db2txt src/hashfile src/getpw packages/mg src/phind/generate packages src/mgpp src/oaiservr 50 INSTALLDIRS = src/txt2db src/db2txt src/hashfile packages/mg src/phind/generate packages src/mgpp 49 INSTALLDIRS = indexers src/txt2db src/db2txt src/hashfile src/phind/generate packages 51 50 52 51 MODULEDIRS = @MODULEDIRS@ 53 52 54 #OTHERDIRS = packages packages/mg lib src/mgpp src/colservr src/recpt src/txt2db src/db2txt src/hashfile src/getpw src/phind/generate src/oaiservr 53 OTHERDIRS = lib 55 54 56 OTHERDIRS = packages packages/mg lib src/mgpp src/txt2db src/db2txt src/hashfile src/phind/generate57 55 all: 58 for odir in $(OTHERDIRS) $( MODULEDIRS); do \56 for odir in $(OTHERDIRS) $(INSTALLDIRS) $(MODULEDIRS); do \ 59 57 echo making $@ in $$odir; \ 60 58 (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \ -
trunk/gs2build-extra/configure
r13509 r13731 310 310 #endif" 311 311 312 ac_subdirs_all="$ac_subdirs_all packages "312 ac_subdirs_all="$ac_subdirs_all packages indexers" 313 313 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS PACKAGE VERSION ENABLE_ACCENTFOLD CFLAGS CC LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CXX CXXFLAGS ac_ct_CXX AWK YACC build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA LN_S SET_MAKE RANLIB ac_ct_RANLIB CPP EGREP U ANSI2KNR ALLOCA LIBOBJS STATIC GDBM_LIBPATH GDBM_INCLUDE gsdlos MODULEDIRS subdirs LTLIBOBJS' 314 314 ac_subst_files='' … … 7294 7294 # --------------------------------------------------------------------------- 7295 7295 7296 7297 subdirs="$subdirs packages" 7296 # indexers needs bindir option to get the binaries into the 7297 # right place 7298 gsdlprefix=`pwd` 7299 ac_configure_args="$ac_configure_args --bindir=$gsdlprefix/bin/$gsdlos " 7300 7301 7302 7303 subdirs="$subdirs packages indexers" 7298 7304 7299 7305 7300 7306 # the list of folders in the src folder 7301 srclist="src/ mgpp/lib/Makefile src/mgpp/text/Makefile src/mgpp/Makefile src/hashfile/Makefile src/txt2db/Makefile src/db2txt/Makefile src/phind/generate/Makefile "7302 7303 ac_config_files="$ac_config_files packages/Makefile packages/mg/Makefile packages/mg/src/text/Makefile packages/mg/src/images/Makefile packages/mg/src/scripts/Makefile packages/mg/lib/Makefile lib/Makefile Makefile $srclist $moduleDirs"7307 srclist="src/hashfile/Makefile src/txt2db/Makefile src/db2txt/Makefile src/phind/generate/Makefile " 7308 7309 ac_config_files="$ac_config_files packages/Makefile lib/Makefile Makefile $srclist $moduleDirs" 7304 7310 cat >confcache <<\_ACEOF 7305 7311 # This file is a shell script that caches the results of configure … … 7828 7834 # Handling of arguments. 7829 7835 "packages/Makefile" ) CONFIG_FILES="$CONFIG_FILES packages/Makefile" ;; 7830 "packages/mg/Makefile" ) CONFIG_FILES="$CONFIG_FILES packages/mg/Makefile" ;;7831 "packages/mg/src/text/Makefile" ) CONFIG_FILES="$CONFIG_FILES packages/mg/src/text/Makefile" ;;7832 "packages/mg/src/images/Makefile" ) CONFIG_FILES="$CONFIG_FILES packages/mg/src/images/Makefile" ;;7833 "packages/mg/src/scripts/Makefile" ) CONFIG_FILES="$CONFIG_FILES packages/mg/src/scripts/Makefile" ;;7834 "packages/mg/lib/Makefile" ) CONFIG_FILES="$CONFIG_FILES packages/mg/lib/Makefile" ;;7835 7836 "lib/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;; 7836 7837 "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; -
trunk/gs2build-extra/configure.in
r13508 r13731 344 344 dnl not needed any more? 345 345 dnl ac_configure_args="$ac_configure_args --build=$build --target=$target" 346 AC_CONFIG_SUBDIRS(packages) 346 347 # indexers needs bindir option to get the binaries into the 348 # right place 349 gsdlprefix=`pwd` 350 ac_configure_args="$ac_configure_args --bindir=$gsdlprefix/bin/$gsdlos " 351 352 AC_CONFIG_SUBDIRS(packages indexers) 347 353 348 354 # the list of folders in the src folder 349 srclist="src/ mgpp/lib/Makefile src/mgpp/text/Makefile src/mgpp/Makefile src/hashfile/Makefile src/txt2db/Makefile src/db2txt/Makefile src/phind/generate/Makefile "350 351 AC_OUTPUT(packages/Makefile packages/mg/Makefile packages/mg/src/text/Makefile packages/mg/src/images/Makefile packages/mg/src/scripts/Makefile packages/mg/lib/Makefilelib/Makefile Makefile $srclist $moduleDirs)355 srclist="src/hashfile/Makefile src/txt2db/Makefile src/db2txt/Makefile src/phind/generate/Makefile " 356 357 AC_OUTPUT(packages/Makefile lib/Makefile Makefile $srclist $moduleDirs) -
trunk/gs2build-extra/lib.Makefile.in
r9758 r13731 32 32 CCFLAGS = @CFLAGS@ 33 33 DEFS = @DEFS@ 34 INCLUDES = -I../ packages/mg/lib -I..34 INCLUDES = -I../indexers/mg/lib -I.. 35 35 RANLIB = @RANLIB@ 36 36 -
trunk/gs2build-extra/packages.Makefile.in
r13510 r13731 30 30 # clean, and distclean. 31 31 32 ENABLE_ACCENTFOLD=@ENABLE_ACCENTFOLD@33 ifeq ($(ENABLE_ACCENTFOLD), 1)34 UNAC=unac35 else36 UNAC=37 endif38 39 32 PACKAGEDIRS = wv/wv-gs rtftohtml/rtftohtml_src pdftohtml/pdftohtml_gs \ 40 33 wget/wget-1.9 expat/ cpan/XML-Parser-2.34 \ 41 $(UNAC)xlhtml/xlhtml-0.4.9.0 isis-gdl34 xlhtml/xlhtml-0.4.9.0 isis-gdl 42 35 43 36 all: -
trunk/gs2build-extra/packages.configure
r13512 r13731 21 21 ENVIRONMENT="" 22 22 23 # accentfolding enabled by default - switch it off with --disable-accentfold24 ENABLE_ACCENTFOLD=true25 26 23 # parse any arguments given from toplevel configure 27 24 while test $# -ne 0; do … … 40 37 CACHE_FILE="--cache-file=$cache_file" 41 38 fi 42 ;;43 --disable-accentfold)44 ENABLE_ACCENTFOLD=false45 39 ;; 46 40 --prefix=*) … … 177 171 ./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS $ENVIRONMENT 178 172 179 # configure unac program180 echo ""181 echo "Configuring unac"182 echo ""183 if test x$ENABLE_ACCENTFOLD = xtrue ;184 then185 echo "Accent folding support enabled, configuring unac library."186 echo "add --disable-accentfold to the configure command to disable this"187 188 cd "$PACKAGES/unac"189 ./configure $CACHE_FILE $HOSTTARGETFLAGS190 else191 echo "Accent folding support disabled."192 echo ""193 fi
Note:
See TracChangeset
for help on using the changeset viewer.