Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 153691 Details for
Bug 238173
Uncaught exception attempting to edit configure.in
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
Problematic configure.in from OpenExchange 0.8.2
configure.in (text/plain), 22.23 KB, created by
Davide Bolcioni
on 2007-04-28 09:13:35 UTC
(
hide
)
Description:
Problematic configure.in from OpenExchange 0.8.2
Filename:
MIME Type:
Creator:
Davide Bolcioni
Created:
2007-04-28 09:13:35 UTC
Size:
22.23 KB
patch
obsolete
>dnl >dnl autoconf configuration for >dnl >dnl the >dnl >dnl #--------------------------# >dnl # OpenExchange # >dnl #--------------------------# >dnl >dnl Server > > >dnl #checks for typedefs >dnl #checks for structures > > >dnl #checks for system services >AC_PREREQ(2.57) >AC_INIT(Makefile.in, 1.0) >AC_CONFIG_AUX_DIR(config) >AM_INIT_AUTOMAKE(ox, 1.0.0) >AM_MAINTAINER_MODE >ACLOCAL="$ACLOCAL -I m4" >AC_PROG_MAKE_SET >AC_PROG_INSTALL > >dnl #checks for programs >OX_AC_QUERY_PROC(JAVA, java) >OX_AC_QUERY_PROC(JAVAC, jikes) >OX_AC_QUERY_PROC(JAR, jar) >OX_AC_QUERY_PROC(ANT, ant) >OX_AC_QUERY_PROC(JAVAH, javah) >OX_AC_QUERY_PROC(SUDO, sudo) > ># javassl variablen > >AC_ARG_VAR(OPENSSL_HOME, input OpenSSL directory for OpenSSL header file) >AC_ARG_VAR(JAVA_HOME, input Java directory for jni header file) > > dnl Process this file with autoconf to produce a configure script. >AC_SUBST(ac_aux_dir) > > > >dnl Checks for programs. >AC_PROG_CC ># SO GEHTS NICHT >#AC_PROG_MAKE > >dnl for libtool >AC_DISABLE_STATIC >AC_PROG_LIBTOOL > >dnl Checks for libraries. >AC_CHECK_LIB(pthread, pthread_mutex_lock) >AC_CHECK_LIB(pthreads, pthread_mutex_lock) >AC_CHECK_LIB(socket, socket) >dnl check solaris specific libraries >AC_CHECK_LIB(nsl, _xti_accept) > >dnl Checks for header files. >dnl AC_HEADER_STDC >dnl AC_CHECK_HEADERS(sys/time.h) > >dnl Checks for typedefs, structures, and compiler characteristics. >AC_C_CONST > >dnl Checks for library functions. >dnl do not check the following functions, assuming that they exist in most unix >dnl AC_CHECK_FUNCS(select socket strdup strstr) > > ># ende > ># Change default prefix >AC_PREFIX_DEFAULT($ac_default_prefix/open-xchange) > >#we can abort if at least one of the next checks should fail >if test ! -n "$JAVAC"; then > OX_AC_QUERY_PROC(JAVAC, javac) > if test ! -n "$JAVAC"; then > AC_MSG_ERROR([no acceptable java compiler found - please install at least the Java(TM) 2 SDK.]) > else > ANT_JAVAC="modern" > fi >else > ANT_JAVAC="jikes" >fi >AC_SUBST(ANT_JAVAC) >if test -z "$JAVA"; then > AC_MSG_ERROR([java is required - please install at least the Java(TM) 2 SDK.]) >fi >if test -z "$JAR"; then > AC_MSG_ERROR([jar is required - please install it to continue.]) >fi >if test -z "$ANT"; then > AC_MSG_ERROR([ant is required - please install it to continue.]) >fi > > >dnl #checks for libraries >#check_files="external.libs" >dnl #AC_MSG_CHECKING([some needed libs (taken from $check_files)]) >dnl #AC_MSG_RESULT() >#OX_CHECK_LIBS($check_files) > > >dnl #define all --with* > >dnl #define /path/to/mail.jar >mailjar="mail.jar" >AC_ARG_WITH(mailjar, AC_HELP_STRING([--with-mailjar=LOCATION], > [specify where is the mail.jar located]), > mailjar="$withval", mailjar=$mailjar) > >AC_SUBST(mailjar) > >if ! test -f $mailjar; then > AC_MSG_WARN([Maybe the build will not work properly because the check for $mailjar failed. You should specify the location with --with-mailjar]) >fi > >dnl #define /path/to/activation.jar >activationjar="activation.jar" >AC_ARG_WITH(activationjar, AC_HELP_STRING([--with-activationjar=LOCATION], > [specify where is the activation.jar located]), > activationjar="$withval", activationjar=$activationjar) > >AC_SUBST(activationjar) > >if ! test -f $activationjar; then > AC_MSG_WARN([Maybe the build will not work properly because the check for $activationjar failed. You should specify the location with --with-activationjar]) >fi > >dnl #define /path/to/jdom.jar >jdomjar="jdom.jar" >AC_ARG_WITH(jdomjar, AC_HELP_STRING([--with-jdomjar=LOCATION], > [specify where is the jdom.jar located]), > jdomjar="$withval", jdomjar=$jdomjar) > >AC_SUBST(jdomjar) > >if ! test -f $jdomjar; then > AC_MSG_WARN([Maybe the build will not work properly because the check for $jdomjar failed. You should specify the location with --with-jdomjar]) >fi > >dnl #define /path/to/JSDK.jar >jsdkjar="jsdk.jar" >AC_ARG_WITH(jsdkjar, AC_HELP_STRING([--with-jsdkjar=LOCATION], > [specify where is the JSDK.jar located]), > jsdkjar="$withval", jsdkjar=$jsdkjar) > >AC_SUBST(jsdkjar) > >if ! test -f $jsdkjar; then > AC_MSG_WARN([Maybe the build will not work properly because the check for $jsdkjar failed. You should specify the location with --with-jsdkjar]) >fi > >dnl #define /path/to/jdbc.jar >jdbcjar="jdbc.jar" >AC_ARG_WITH(jdbcjar, AC_HELP_STRING([--with-jdbcjar=LOCATION], > [specify where is the JDBC jar located]), > jdbcjar="$withval", jdbcjar=$jdbcjar) > >AC_SUBST(jdbcjar) > >if ! test -f $jdbcjar; then > AC_MSG_WARN([Maybe the build will not work properly because the check for $jdbcjar failed. You should specify the location with --with-jdbcjar]) >fi > >dnl #define the port number where we should listen on >groupwareport="6661" >AC_ARG_WITH(groupwareport, AC_HELP_STRING([--with-groupwareport=PORT], > [Port on which to listen (default is 6661)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-groupwareport requires a value'); else groupwareport="$withval"; fi], > groupwareport=$groupwareport) >AC_SUBST(groupwareport) > >dnl #define the port number where we should listen on >webmailport="4445" >AC_ARG_WITH(webmailport, AC_HELP_STRING([--with-webmailport=PORT], > [Port on which to listen (default is 4445)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-webmailport requires a value'); else webmailport="$withval"; fi], > webmailport=$webmailport) >AC_SUBST(webmailport) > >dnl #define the port number where we should listen on >sessiondport="33333" >AC_ARG_WITH(sessiondport, AC_HELP_STRING([--with-sessiondport=PORT], > [Port on which to listen (default is 33333)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-sessiondport requires a value'); else sessiondport="$withval"; fi], > sessiondport=$sessiondport) >AC_SUBST(sessiondport) > >dnl #define the dbname >dbname="openexchange" >AC_ARG_WITH(dbname, AC_HELP_STRING([--with-dbname=DBNAME], > [Name of the database (default is openexchange)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-dbname requires a value'); else dbname="$withval"; fi], > dbname=$dbname) > >AC_SUBST(dbname) > >dnl #define the dbuser >dbuser="openexchange" >AC_ARG_WITH(dbuser, AC_HELP_STRING([--with-dbuser=DBUSER], > [User of the database (default is openexchange)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-dbuser requires a value'); else dbuser="$withval"; fi], > dbuser=$dbuser) > >AC_SUBST(dbuser) > >dnl #define the dbpass >dbpass="xxx" >AC_ARG_WITH(dbpass, AC_HELP_STRING([--with-dbpass=DBPASS], > [Password of the database (default is xxx)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-dbpass requires a value'); else dbpass="$withval"; fi], > dbpass=$dbpass) > >AC_SUBST(dbpass) > >dnl #define the db host name >dbhost="localhost" >AC_ARG_WITH(dbhost, AC_HELP_STRING([--with-dbhost=DBHOST], > [specify database server host (default is localhost)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-dbhost requires a value'); else dbhost="$withval"; fi], > dbhost=$dbhost) > >AC_SUBST(dbhost) > >dnl #define the db driver >dbdriver="org.postgresql.Driver" >AC_ARG_WITH(dbdriver, AC_HELP_STRING([--with-dbdriver=DRIVER], > [specify database driver host (default is org.postgresql.Driver)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-dbdriver requires a value'); else dbdriver="$withval"; fi], > dbdriver=$dbdriver) > >AC_SUBST(dbdriver) > >dnl #define the dburl >dburl="jdbc:postgresql://$dbhost/$dbname" >AC_ARG_WITH(dburl, AC_HELP_STRING([--with-dburl=URL], > [specify database url (default is jdbc:postgresql://$dbname/$dbuser)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-dburl requires a value'); else dburl="$withval"; fi], > dburl=$dburl) > >AC_SUBST(dburl) > > > >dnl #define server uid >runuid="wwwrun" >AC_ARG_WITH(runuid, AC_HELP_STRING([--with-runuid=UID], > [specify the uid that runs this application (default is wwwrun)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-runuid requires a value'); else runuid="$withval"; fi], > runuid=$runuid) > >AC_SUBST(runuid) > >dnl #define server gid >rungid="nogroup" >AC_ARG_WITH(rungid, AC_HELP_STRING([--with-rungid=GID], > [specify the group that runs this application (default is nogroup)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-rungid requires a value'); else rungid="$withval"; fi], > rungid=$rungid) > >AC_SUBST(rungid) > >dnl # ldaphost >ldaphost="localhost" >AC_ARG_WITH(ldaphost, AC_HELP_STRING([--with-ldaphost=LDAPHOST], > [specify the LDAPHOST (default is localhost)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-ldaphost requires a value'); else ldaphost="$withval"; fi], > ldaphost=$ldaphost) > >AC_SUBST(ldaphost) > >dnl # ldaphost >ldapport="389" >AC_ARG_WITH(ldapport, AC_HELP_STRING([--with-ldapport=LDAPPORT], > [specify the LDAPPORT (default is localport)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-ldapport requires a value'); else ldapport="$withval"; fi], > ldapport=$ldapport) > >AC_SUBST(ldapport) > >dnl # domain >domain="example.org" >AC_ARG_WITH(domain, AC_HELP_STRING([--with-domain=DOMAIN], > [specify the DOMAIN (default is example.org)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-domain requires a value'); else domain="$withval"; fi], > domain=$domain) > >AC_SUBST(domain) > >dnl # DEFINE LDAP PROPERTIES >dnl # LDAP ORGANIZATION >organization="Example Organization" >AC_ARG_WITH(organization, AC_HELP_STRING([--with-organization=ORGANIZATION], > [specify the ORGANIZATION (default is Example Org)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-organization requires a value'); else organization="$withval"; fi], > organization=$organization) > >AC_SUBST(organization) > >dnl # LDAP BASE DN >basedn="dc=example,dc=org" >AC_ARG_WITH(basedn, AC_HELP_STRING([--with-basedn=BASEDN], > [specify the LDAP BASEDN (default is dc=example,dc=org)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-basedn requires a value'); else basedn="$withval"; fi], > basedn=$basedn) > >AC_SUBST(basedn) > >dnl # LDAP ROOT DN >rootdn="cn=Manager,dc=example,dc=org" >AC_ARG_WITH(rootdn, AC_HELP_STRING([--with-rootdn=ROOTDN], > [specify the LDAP ROOTDN (default is cn=Manager,dc=example,dc=org)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-rootdn requires a value'); else rootdn="$withval"; fi], > rootdn=$rootdn) > >AC_SUBST(rootdn) > >dnl # LDAP ROOT PW >rootpw="secret" >AC_ARG_WITH(rootpw, AC_HELP_STRING([--with-rootpw=ROOTPW], > [specify the LDAP ROOTPW (default is secret)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-rootpw requires a value'); else rootpw="$withval"; fi], > rootpw=$rootpw) >AC_SUBST(rootpw) > >dnl # Tomcat URL >tomcaturl="http://localhost:8080/manager" >AC_ARG_WITH(tomcaturl, AC_HELP_STRING([--with-tomcaturl=TOMCAT URL], > [specify the TOMCAT URL (default is $tomcaturl)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-tomcaturl requires a value'); else tomcaturl="$withval"; fi], > tomcaturl=$tomcaturl) > >AC_SUBST(tomcaturl) > >dnl # Tomcat User >tomcatuser="tomcat" >AC_ARG_WITH(tomcatuser, AC_HELP_STRING([--with-tomcatuser=TOMCAT USER], > [specify the TOMCAT USER (default is $tomcatuser)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-tomcatuser requires a value'); else tomcatuser="$withval"; fi], > tomcatuser=$tomcatuser) > >AC_SUBST(tomcatuser) > >dnl # Tomcat Password >tomcatpassword="tomcat" >AC_ARG_WITH(tomcatpassword, AC_HELP_STRING([--with-tomcatpasword=TOMCAT PASSWORD], > [specify the TOMCAT PORT (default is $tomcatpassword)]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-tomcatpassword requires a value'); else tomcatpassword="$withval"; fi], > tomcatpassword=$tomcatpassword) > >AC_SUBST(tomcatpassword) > > >dnl #define the servlet directory >htdocsdir=$datadir >AC_ARG_WITH(htdocsdir, AC_HELP_STRING([--with-htdocsdir=DIR], > [specify the path to the htdocs directory]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-htdocsdir requires a value'); else htdocsdir="$withval"; fi], > htdocsdir=$htdocsdir) >AC_SUBST(htdocsdir) > >dnl #define the servlet directory >cgibindir=$datadir/perl >AC_ARG_WITH(cgibindir, AC_HELP_STRING([--with-cgibindir=DIR], > [specify the path to the cgi-bin directory]), > [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-cgibindir requires a value'); else cgibindir="$withval"; fi], > cgibindir=$cgibindir) >AC_SUBST(cgibindir) > >dnl #jni path >AC_ARG_WITH(jni-dir, AC_HELP_STRING([--with-jni-dir=PATH], [include path to jni.h]), > [ case "$withval" in > no) > ;; > *) > CPPFLAGS="$CPPFLAGS -I$withval -I$withval/linux" > CFLAGS="$CFLAGS -I$withval -I$withval/linux" > dnl #LDFLAGS="$LDFLAGS -L$withval -L$withval/linux" > AC_SUBST(CPPFLAGS) > AC_SUBST(CFLAGS) > jnidir="$withval" > dnl #AC_SUBST(LDFLAGS) > ;; > esac ]) >AC_SUBST(jnidir) > > >dnl #openssl path >AC_ARG_WITH(openssl-dir, AC_HELP_STRING([--with-openssl-dir=PATH], [include path to openssl/ssl.h]), > [ case "$withval" in > no) > ;; > *) > CPPFLAGS="$CPPFLAGS -I$withval" > CFLAGS="$CFLAGS -I$withval" > AC_SUBST(CPPFLAGS) > AC_SUBST(CFLAGS) > ssldir="$withval" > ;; > esac ]) >AC_SUBST(ssldir) > > > >dnl #define all --enable-/--disable-* >dnl #define if we should build webdav >AC_ARG_ENABLE(webdav, > AC_HELP_STRING([--enable-webdav], > [enables the WebDAV interface]), > webdav="webdav") >AC_SUBST(webdav) >if test "ox$webdav" == "oxyes" ; then > AC_MSG_RESULT([** WebDAV enabled per user request]) > >fi >AC_SUBST(jdomjar) > >dnl #define if we should work with ssl/tls >AC_ARG_ENABLE(ssl, > AC_HELP_STRING([--enable-ssl], > [enables the ssl support between the application and the session server]), > ssl=$enableval) >AC_SUBST(ssl) > >dnl #define if the javadoc is enabled >AC_ARG_ENABLE(doc, > AC_HELP_STRING([--enable-doc], > [enables the documentation]), > doc=$enableval) >AC_SUBST(doc) > > >##dnl #define if we should init the db with our initscript >#AC_ARG_ENABLE(initdb, ># AC_HELP_STRING([--enable-initdb], ># [enables the initialisation of the database]), ># initdb=$enableval) >#AC_SUBST(initdb) >#if test "ox$initdb" == "oxyes" ; then ># if test -z "$PSQL"; then ># AC_MSG_ERROR([we need psql for the option --enable-initdb.]) ># fi >#fi >dnl #checks for library functions >dnl #checks for header files >AC_CHECK_HEADER(sys/socket.h,,AC_MSG_ERROR([sys/socket.h should be there ...])) >AC_CHECK_HEADERS( \ >sys/types.h \ >netinet/in.h \ >netinet/tcp.h \ >netdb.h \ >fcntl.h \ >signal.h \ >unistd.h \ >string.h >) > >enabledoc="" >if test "ox$doc" == "oxyes" ; then > enabledoc="yes" >else > enabledoc="nodoc" >fi > >AC_SUBST(enabledoc) > >#todo: tell the installer how to set the include path for the following header files ... >enablessl="" >sslsubdir="" >if test "ox$ssl" == "oxyes" ; then > enablessl="yes" > sslsubdir="misc" > > AC_SUBST(enablessl) > AC_SUBST(sslsubdir) > > > AC_CHECK_HEADER(jni.h,,AC_MSG_WARN([maybe you should use the --with-jni-dir option to avoid compile issues ...])) > AC_CHECK_HEADER(openssl/ssl.h,,AC_MSG_WARN([maybe you should use the --with-openssl-dir to avoid compile issues ...])) > if test -z "$JAVAH"; then > AC_MSG_WARN([javah is requiered for a ssl build - maybe you have later some trouble ...]) > fi > > # javassl configure starten > > > dnl AC_CANONICAL_HOST > dnl OPENSSL_HOME=$OPENSSL_HOME > dnl JAVA_HOME=$JAVA_HOME > case "$host" in > *linux*) > JAVA_PLATFORM="linux" > ;; > *solaris*) > JAVA_PLATFORM="solaris" > ;; > *aix4*) > JAVA_PLATFORM="aix" > ;; > *hpux*) > JAVA_PLATFORM="hp-ux" > ;; > *alpha*) > JAVA_PLATFORM="alpha" > ;; > esac > > if test "$OPENSSL_HOME" = "" > then > OPENSSL_HOME=. > fi > > if test "$JAVA_HOME" = "" > then > JAVA_HOME=. > fi > > dnl AC_SUBST(OPENSSL_HOME) > dnl AC_SUBST(JAVA_HOME) > AC_SUBST(JAVA_PLATFORM) > >fi > >OLDIFS="$IFS" >IFS="," > >set dummy $basedn >basednprefix=$2 > >IFS="=" > >set dummy $basednprefix >basedc=$3 > >IFS=$OLDIFS > >AC_SUBST(basedc) > > >dnl check prefix >if test "IS$prefix" = "ISNONE"; then > prefix=$ac_default_prefix > oxprefix=${prefix} > AC_SUBST(prefix) > AC_SUBST(oxprefix) >fi > >prefix=`echo $prefix | sed -e 's:\(.\)/*$:\1:'` >oxprefix=`echo $oxprefix | sed -e 's:\(.\)/*$:\1:'` > >dnl check exec_prefix >if test "IS$exec_prefix" = "ISNONE"; then > exec_prefix='${prefix}' > oxexec_prefix=${prefix} > AC_SUBST(exec_prefix) > AC_SUBST(oxexec_prefix) >fi > >exec_prefix=`echo $exec_prefix | sed -e 's:\(.\)/*$:\1:'` >oxexec_prefix=`echo $oxexec_prefix | sed -e 's:\(.\)/*$:\1:'` > >ox_major=0 >ox_minor=8 >ox_patch=2 >ox_descr= >ox_codename=hymalia >ox_name=OPEN-XCHANGE >ox_webmail_signature="Powered by Open-Xchange.com" >ox_buildnumber=0.8.2 > >AC_SUBST(ox_major) >AC_SUBST(ox_minor) >AC_SUBST(ox_patch) >AC_SUBST(ox_descr) >AC_SUBST(ox_codename) >AC_SUBST(ox_name) >AC_SUBST(ox_webmail_signature) >AC_SUBST(ox_buildnumber) > >dnl checks path settings >TMPPREFIX='${prefix}' >TMPEXECPREFIX='${exec_prefix}' > >dnl # bindir >if test "IS$bindir" = "IS${TMPEXECPREFIX}/bin" ; then > oxbindir=$prefix/bin >else > oxbindir=$bindir >fi > >oxbindir=`echo $oxbindir | sed -e 's:\(.\)/*$:\1:'` > >dnl # sbindir >if test "IS$sbindir" = "IS${TMPEXECPREFIX}/sbin" ; then > oxsbindir=$prefix/sbin >else > oxsbindir=$sbindir >fi > >oxsbindir=`echo $oxsbindir | sed -e 's:\(.\)/*$:\1:'` > >dnl # libexecdir >if test "IS$libexecdir" = "IS${TMPEXECPREFIX}/libexec" ; then > oxlibexecdir=$prefix/libexec >else > oxlibexecdir=$libexecdir >fi > >oxlibexecdir=`echo $oxlibexecdir | sed -e 's:\(.\)/*$:\1:'` > >dnl # datadir >if test "IS$datadir" = "IS${TMPPREFIX}/share" ; then > oxdatadir=$prefix/share >else > oxdatadir=$datadir >fi > >oxdatadir=`echo $oxdatadir | sed -e 's:\(.\)/*$:\1:'` > >dnl # sysconfdir >if test "IS$sysconfdir" = "IS${TMPPREFIX}/etc" ; then > oxsysconfdir=$prefix/etc >else > oxsysconfdir=$sysconfdir >fi > >oxsysconfdir=`echo $oxsysconfdir | sed -e 's:\(.\)/*$:\1:'` > >dnl # sharedstatedir >if test "IS$sharedstatedir" = "IS${TMPPREFIX}/com" ; then > oxsharedstatedir=$prefix/com >else > oxsharedstatedir=$sharedstatedir >fi > >oxsharedstatedir=`echo $oxsharedstatedir | sed -e 's:\(.\)/*$:\1:'` > >dnl # localstatedir >if test "IS$localstatedir" = "IS${TMPPREFIX}/var" ; then > oxlocalstatedir=$prefix/var >else > oxlocalstatedir=$localstatedir >fi > >oxlocalstatedir=`echo $oxlocalstatedir | sed -e 's:\(.\)/*$:\1:'` > >dnl # libdir >if test "IS$libdir" = "IS${TMPEXECPREFIX}/lib" ; then > oxlibdir=$prefix/lib >else > oxlibdir=$libdir >fi > >oxlibdir=`echo $oxlibdir | sed -e 's:\(.\)/*$:\1:'` > >dnl # includedir >if test "IS$includedir" = "IS${TMPPREFIX}/include" ; then > oxincludedir=$prefix/include >else > oxincludedir=$includedir >fi > >oxincludedir=`echo $oxincludedir | sed -e 's:\(.\)/*$:\1:'` > >dnl # infodir >if test "IS$infodir" = "IS${TMPPREFIX}/info" ; then > oxinfodir=$prefix/info >else > oxinfodir=$infodir >fi > >oxinfodir=`echo $oxinfodir | sed -e 's:\(.\)/*$:\1:'` > >dnl # mandir >if test "IS$mandir" = "IS${TMPPREFIX}/man" ; then > oxmandir=$prefix/man >else > oxmandir=$mandir >fi > >oxmandir=`echo $oxmandir | sed -e 's:\(.\)/*$:\1:'` > >dnl # cgibindir >if test "IS$cgibindir" = "IS${oxdatadir}/perl" ; then > oxcgibindir=$oxdatadir/perl >else > oxcgibindir=$cgibindir >fi > >oxcgibindir=`echo $oxcgibindir | sed -e 's:\(.\)/*$:\1:'` > >dnl # htdocsdir >if test "IS$htdocsdir" = "IS${oxdatadir}/data/" ; then > oxhtdocsdir=$oxdatadir/data >else > oxhtdocsdir=$htdocsdir >fi > >oxhtdocsdir=`echo $oxhtdocsdir | sed -e 's:\(.\)/*$:\1:'` > > >oxgroupwarehtmldir=$oxdatadir/groupware/data/templates >oxwebmailhtmldir=$oxdatadir/webmail/data/templates >oxgroupwaresysconfdir=$oxsysconfdir/groupware >oxgroupwarenasiconfdir=$oxsysconfdir/groupware >oxwebmailsysconfdir=$oxsysconfdir/webmail >oxwebmailnasiconfdir=$oxsysconfdir/webmail >oxgroupwarelibdir=$oxlibdir >oxwebmaillibdir=$oxlibdir > >webdavlogfile=$oxlocalstatedir/log/jserv.log > > > >AC_SUBST(oxbindir) >AC_SUBST(oxsbindir) >AC_SUBST(oxlibexecdir) >AC_SUBST(oxdatadir) >AC_SUBST(oxgroupwarehtmldir) >AC_SUBST(oxwebmailhtmldir) >AC_SUBST(oxsysconfdir) >AC_SUBST(oxgroupwaresysconfdir) >AC_SUBST(oxwebmailsysconfdir) >AC_SUBST(oxgroupwarenasiconfdir) >AC_SUBST(oxwebmailnasiconfdir) >AC_SUBST(oxsharedstatedir) >AC_SUBST(oxlocalstatedir) >AC_SUBST(oxlibdir) >AC_SUBST(oxgroupwarelibdir) >AC_SUBST(oxwebmaillibdir) >AC_SUBST(oxincludedir) >AC_SUBST(oxoldincludedir) >AC_SUBST(oxinfodir) >AC_SUBST(oxmandir) > >AC_SUBST(oxhtdocsdir) >AC_SUBST(oxcgibindir) >AC_SUBST(oxservletdir) > >AC_SUBST(webdavlogfile) > > >dnl #checks for compiler characteristics >OX_COMPLETE_BUILD_CHECK() > > >dnl #AC_CONFIG_FILES([Makefile]) >AC_OUTPUT( >build.xml >tomcat.xml >Makefile >src/Makefile >src/intranet.java >src/webmail.java >src/misc/Makefile >src/misc/login/login.pm >src/misc/ssl/Makefile >javabuild/Makefile >bin/groupware/openexchange-groupware >bin/webmail/openexchange-webmail >bin/groupware/openexchange-sessiond >sbin/addgroup_ox >sbin/addresource_ox >sbin/addresourcegroup_ox >sbin/addresourcetogroup_ox >sbin/adduser_ox >sbin/addusersql_ox >sbin/addusertogroup_ox >sbin/changeuserattr_ox >sbin/changecyruspass_ox >sbin/delgroup_ox >sbin/delresource_ox >sbin/delresourcefromgroup_ox >sbin/delresourcegroup_ox >sbin/deluser_ox >sbin/deluserfromgroup_ox >sbin/correctfilespool >sbin/dbinit_ox >system/etc/init.d/groupware >system/etc/init.d/webmail >system/etc/init.d/sessiond >system/etc/init.d/openexchange >system/servlet/web.xml >system/umin/oxuserminconfig.properties >conf/groupware/system.properties >conf/groupware/server.conf >conf/webmail/server.conf >conf/webmail/system.properties >conf/admintools.conf >system/setup/init_ldap.ldif >src/com/openexchange/server/Version.java ) > >dnl here we should be able to build the complete ox solution ... > >rm OX_COMPILE_CHECK.class >rm OX_COMPILE_CHECK.java >rm OX_COMPILE_CHECK.xml
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 238173
:
153648
| 153691 |
153692