Skip to content
Snippets Groups Projects
Select Git revision
  • 5fd9cd738f26797cf16576bf4011852c9f3052a8
  • master default
  • remove_custom_provider2
  • reduce_apk_size
  • improved_shapeshifter_errorhandler
  • pluggableTransports2
  • pluggableTransoprts
  • feature/gatewayselection
  • #8896_skip_onboarding
  • #6564_GSON_for_provider_api_models
  • #8886_add_provider
  • #8889_revise_NavigationDrawer
  • #8885_testing_ProviderManager
  • #8797_certificate_expiration
  • #8818_tests_for_drawer
  • develop
  • 0.9.9
  • 0.9.9RC1
  • 0.9.8
  • 0.9.8RC2
  • 0.9.8RC1
  • 0.9.7
  • 0.9.7RC2
  • 0.9.7RC1
  • 0.9.4_FDROID
  • 0.9.4
  • 0.9.3
  • 0.9.2
  • 0.9.2RC3
  • 0.9.2RC2
  • 0.9.2RC1
  • 0.9.1
  • 0.9.0
  • 0.8.2
  • 0.8.1
  • 0.8.0
36 results

ProviderApiManagerBase.java

Blame
  • Forked from leap / bitmask_android
    Source project has a limited visibility.
    configure.in 2.26 KiB
    #                                               -*- Autoconf -*-
    # Process this file with autoconf to produce a configure script.
    
    # The maintainer mode is causing me grief with newest versions of autotools
    #AM_MAINTAINER_MODE
    AC_INIT([backupninja],[0.9.10],[backupninja@lists.riseup.net])
    AC_CONFIG_SRCDIR([src/backupninja.in])
    AM_INIT_AUTOMAKE
    
    # Checks for programs.
    
    # BASH may already be set in the shell, if the admin then changes the
    # the /bin/sh symlink to a non-bash shell, all hell will break lose.
    unset BASH
    AC_PATH_PROGS(BASH, bash, "no", [$PATH:/bin:/usr/bin:/usr/sbin])
    if test x$BASH = "xno"; then
        AC_MSG_ERROR([bash is required])
    fi
    
    AC_PATH_PROGS(SED, sed, "no")
    if test x$SED = "xno"; then
        AC_MSG_ERROR([sed is required])
    else
       export SED
    fi
    
    AC_PATH_PROGS(AWK, awk, "no")
    if test x$AWK = "xno"; then
        AC_MSG_ERROR([awk is required])
    else
       export AWK
    fi
    
    AC_PATH_PROGS(MKTEMP, mktemp, "no")
    if test x$MKTEMPT = "xno"; then
        AC_MSG_ERROR([mktemp is required])
    fi
    
    AC_PATH_PROGS(STAT, stat, "no")
    if test x$STAT = "xno"; then
        AC_MSG_ERROR([stat is required])
    else
       export STAT
    fi
    
    AC_CHECK_PROG(ac_cv_have_rpm, rpm, "yes", "no")
    if test "x$ac_cv_have_rpm" = "xyes"; then
            rpm --define '_topdir /tmp' > /dev/null 2>&1
            AC_MSG_CHECKING(to see if we can redefine _topdir)
            if test $? -eq 0 ; then
                    AC_MSG_RESULT(yes)
                    HAVE_RPM=yes
            else
                    AC_MSG_RESULT(no.  You'll have to build packages manually.)
                    HAVE_RPM=no
            fi
    fi
    AC_SUBST(HAVE_RPM)
    
    AC_CHECK_PROG(ac_cv_have_rpm, rpm, "yes", "no")
    if test "x$ac_cv_have_rpm" = "xyes"; then
            rpm --define '_topdir /tmp' > /dev/null 2>&1
            AC_MSG_CHECKING(to see if we can redefine _topdir)
            if test $? -eq 0 ; then
                    AC_MSG_RESULT(yes)
                    HAVE_RPM=yes
            else
                    AC_MSG_RESULT(no.  You'll have to build packages manually.)
                    HAVE_RPM=no
            fi
    fi
    AC_SUBST(HAVE_RPM)
    
    AC_PROG_LN_S
    
    AC_SUBST([CFGDIR], "${sysconfdir}")
    
    AC_CONFIG_FILES([Makefile
                    etc/Makefile
                    examples/Makefile
                    handlers/Makefile
                    lib/Makefile
                    man/Makefile
                    src/Makefile])
    
    AC_OUTPUT([ backupninja.spec])