Changeset 21377
- Timestamp:
- 2009-12-18T14:33:47+13:00 (13 years ago)
- Location:
- main/trunk/greenstone2
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/greenstone2/Makefile.in
r21366 r21377 105 105 fi 106 106 107 # For GS2: include the Greenstone Server Interface Makefile here108 # http://www.makelinux.net/make3/make3-CHP-3-SECT-7.html109 sinclude GSI-Makefile110 111 107 distclean: clean 112 108 rm -f Makefile config.cache config.h config.log stamp-h config.status -
main/trunk/greenstone2/common-src/config.h.in
r21327 r21377 115 115 #undef ENABLE_LUCENE 116 116 117 /* Define ENABLE_JNI */ 118 #undef ENABLE_JNI 119 117 120 /* Define MICO_DIR if needsbe */ 118 121 #undef MICO_DIR -
main/trunk/greenstone2/config.h.in
r21330 r21377 115 115 #undef ENABLE_LUCENE 116 116 117 /* Define ENABLE_JNI */ 118 #undef ENABLE_JNI 119 117 120 /* Define MICO_DIR if needsbe */ 118 121 #undef MICO_DIR -
main/trunk/greenstone2/configure
r21366 r21377 309 309 #endif" 310 310 311 ac_subdirs_all="$ac_subdirs_all common-src build-src runtime-src" 311 ac_subdirs_all="$ac_subdirs_all common-src" 312 ac_subdirs_all="$ac_subdirs_all build-src" 313 ac_subdirs_all="$ac_subdirs_all runtime-src" 312 314 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 USE_FASTCGI USE_LANGACTION USE_CORBA MICO_DIR USE_Z3950 USE_YAZ ENABLE_ACCENTFOLD USE_SQLITE USE_APACHE_HTTPD ENABLE_JNI ENABLE_MG ENABLE_MGPP ENABLE_LUCENE LDFLAGS CFLAGS CC 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 COMPAT32BITFLAGS MICO_VER CPP EGREP U ANSI2KNR ALLOCA LIBOBJS STATIC gsdlos MODULEDIRS subdirs LTLIBOBJS' 313 315 ac_subst_files='' … … 1437 1439 1438 1440 1439 # Check whether --enable-apache-httpd or --disable-apache-httpd was given. 1441 if test -d runtime-src; then 1442 # Check whether --enable-apache-httpd or --disable-apache-httpd was given. 1440 1443 if test "${enable_apache_httpd+set}" = set; then 1441 1444 enableval="$enable_apache_httpd" … … 1444 1447 USE_APACHE_HTTPD=0 1445 1448 fi; 1446 cat >>confdefs.h <<\_ACEOF1449 cat >>confdefs.h <<\_ACEOF 1447 1450 #define USE_APACHE_HTTPD $USE_APACHE_HTTPD 1448 1451 _ACEOF 1449 1452 1450 1453 1454 fi 1451 1455 1452 1456 # Check whether --enable-jni or --disable-jni was given. … … 7305 7309 7306 7310 7307 subdirs="$subdirs common-src build-src runtime-src" 7311 subdirs="$subdirs common-src" 7312 7313 7314 7315 subdirs="$subdirs build-src" 7308 7316 7309 7317 7310 7318 # the list of folders in the src folder 7311 7319 srclist="common-src/Makefile \ 7312 build-src/Makefile \ 7320 build-src/Makefile" 7321 7322 if test -d runtime-src; then 7323 7324 7325 subdirs="$subdirs runtime-src" 7326 7327 srclist="$srclist \ 7313 7328 runtime-src/Makefile" 7329 fi 7314 7330 7315 7331 ac_config_files="$ac_config_files Makefile $srclist $moduleDirs" -
main/trunk/greenstone2/configure.in
r21366 r21377 77 77 dnl Set use of Apache httpd (disabled by default) 78 78 dnl 79 AC_ARG_ENABLE(apache-httpd, [ --enable-apache-httpd Enable Apache httpd support], USE_APACHE_HTTPD=1, USE_APACHE_HTTPD=0) 80 AC_DEFINE(USE_APACHE_HTTPD, $USE_APACHE_HTTPD) 81 AC_SUBST(USE_APACHE_HTTPD) 79 if test -d runtime-src; then 80 AC_ARG_ENABLE(apache-httpd, [ --enable-apache-httpd Enable Apache httpd support], USE_APACHE_HTTPD=1, USE_APACHE_HTTPD=0) 81 AC_DEFINE(USE_APACHE_HTTPD, $USE_APACHE_HTTPD) 82 AC_SUBST(USE_APACHE_HTTPD) 83 fi 82 84 83 85 dnl … … 434 436 gsdlprefix=`pwd` 435 437 ac_configure_args="$ac_configure_args --bindir=$gsdlprefix/bin/$gsdlos --libdir=$gsdlprefix/lib/$gsdlos" 436 AC_CONFIG_SUBDIRS(common-src build-src runtime-src) 438 AC_CONFIG_SUBDIRS(common-src) 439 AC_CONFIG_SUBDIRS(build-src) 437 440 438 441 # the list of folders in the src folder 439 442 srclist="common-src/Makefile \ 440 build-src/Makefile \ 443 build-src/Makefile" 444 445 if test -d runtime-src; then 446 AC_CONFIG_SUBDIRS(runtime-src) 447 srclist="$srclist \ 441 448 runtime-src/Makefile" 449 fi 442 450 443 451 AC_OUTPUT(Makefile $srclist $moduleDirs)
Note:
See TracChangeset
for help on using the changeset viewer.