~ubuntu-branches/ubuntu/saucy/stalonetray/saucy

« back to all changes in this revision

Viewing changes to configure

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2009-10-10 02:05:20 UTC
  • mfrom: (1.1.7 upstream) (3.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091010020520-adj6s9i1ujpvzapo
Tags: 0.8.0~beta1-1
* New upstream release
* bump Standards-Version to 3.8.3
* Remove Torsten from Uploaders as requested

Show diffs side-by-side

added added

removed removed

Lines of Context:
653
653
INSTALL_PROGRAM
654
654
INSTALL_SCRIPT
655
655
INSTALL_DATA
 
656
am__isrc
656
657
CYGPATH_W
657
658
PACKAGE
658
659
VERSION
1736
1737
ac_config_headers="$ac_config_headers src/config.h"
1737
1738
 
1738
1739
 
1739
 
am__api_version="1.9"
 
1740
am__api_version='1.10'
 
1741
 
1740
1742
ac_aux_dir=
1741
1743
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
1742
1744
  if test -f "$ac_dir/install-sh"; then
1919
1921
echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
1920
1922
fi
1921
1923
 
1922
 
if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
1923
 
  # We used to keeping the `.' as first argument, in order to
1924
 
  # allow $(mkdir_p) to be used without argument.  As in
1925
 
  #   $(mkdir_p) $(somedir)
1926
 
  # where $(somedir) is conditionally defined.  However this is wrong
1927
 
  # for two reasons:
1928
 
  #  1. if the package is installed by a user who cannot write `.'
1929
 
  #     make install will fail,
1930
 
  #  2. the above comment should most certainly read
1931
 
  #     $(mkdir_p) $(DESTDIR)$(somedir)
1932
 
  #     so it does not work when $(somedir) is undefined and
1933
 
  #     $(DESTDIR) is not.
1934
 
  #  To support the latter case, we have to write
1935
 
  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
1936
 
  #  so the `.' trick is pointless.
1937
 
  mkdir_p='mkdir -p --'
 
1924
{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5
 
1925
echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; }
 
1926
if test -z "$MKDIR_P"; then
 
1927
  if test "${ac_cv_path_mkdir+set}" = set; then
 
1928
  echo $ECHO_N "(cached) $ECHO_C" >&6
1938
1929
else
1939
 
  # On NextStep and OpenStep, the `mkdir' command does not
1940
 
  # recognize any option.  It will interpret all options as
1941
 
  # directories to create, and then abort because `.' already
1942
 
  # exists.
1943
 
  for d in ./-p ./--version;
1944
 
  do
1945
 
    test -d $d && rmdir $d
1946
 
  done
1947
 
  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
1948
 
  if test -f "$ac_aux_dir/mkinstalldirs"; then
1949
 
    mkdir_p='$(mkinstalldirs)'
 
1930
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
1931
for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
 
1932
do
 
1933
  IFS=$as_save_IFS
 
1934
  test -z "$as_dir" && as_dir=.
 
1935
  for ac_prog in mkdir gmkdir; do
 
1936
         for ac_exec_ext in '' $ac_executable_extensions; do
 
1937
           { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
 
1938
           case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
 
1939
             'mkdir (GNU coreutils) '* | \
 
1940
             'mkdir (coreutils) '* | \
 
1941
             'mkdir (fileutils) '4.1*)
 
1942
               ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
 
1943
               break 3;;
 
1944
           esac
 
1945
         done
 
1946
       done
 
1947
done
 
1948
IFS=$as_save_IFS
 
1949
 
 
1950
fi
 
1951
 
 
1952
  if test "${ac_cv_path_mkdir+set}" = set; then
 
1953
    MKDIR_P="$ac_cv_path_mkdir -p"
1950
1954
  else
1951
 
    mkdir_p='$(install_sh) -d'
 
1955
    # As a last resort, use the slow shell script.  Don't cache a
 
1956
    # value for MKDIR_P within a source directory, because that will
 
1957
    # break other packages using the cache if that directory is
 
1958
    # removed, or if the value is a relative name.
 
1959
    test -d ./--version && rmdir ./--version
 
1960
    MKDIR_P="$ac_install_sh -d"
1952
1961
  fi
1953
1962
fi
 
1963
{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5
 
1964
echo "${ECHO_T}$MKDIR_P" >&6; }
 
1965
 
 
1966
mkdir_p="$MKDIR_P"
 
1967
case $mkdir_p in
 
1968
  [\\/$]* | ?:[\\/]*) ;;
 
1969
  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
 
1970
esac
1954
1971
 
1955
1972
for ac_prog in gawk mawk nawk awk
1956
1973
do
2033
2050
fi
2034
2051
rmdir .tst 2>/dev/null
2035
2052
 
2036
 
# test to see if srcdir already configured
2037
 
if test "`cd $srcdir && pwd`" != "`pwd`" &&
2038
 
   test -f $srcdir/config.status; then
2039
 
  { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
 
2053
if test "`cd $srcdir && pwd`" != "`pwd`"; then
 
2054
  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
 
2055
  # is not polluted with repeated "-I."
 
2056
  am__isrc=' -I$(srcdir)'
 
2057
  # test to see if srcdir already configured
 
2058
  if test -f $srcdir/config.status; then
 
2059
    { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
2040
2060
echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
2041
2061
   { (exit 1); exit 1; }; }
 
2062
  fi
2042
2063
fi
2043
2064
 
2044
2065
# test whether we have cygpath
2053
2074
 
2054
2075
# Define the identity of the package.
2055
2076
 PACKAGE=stalonetray
2056
 
 VERSION=0.7.6
 
2077
 VERSION=0.8.0beta1
2057
2078
 
2058
2079
 
2059
2080
cat >>confdefs.h <<_ACEOF
2081
2102
 
2082
2103
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
2083
2104
 
2084
 
install_sh=${install_sh-"$am_aux_dir/install-sh"}
 
2105
install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
2085
2106
 
2086
2107
# Installed binaries are usually stripped using `strip' when the user
2087
2108
# run `make install-strip'.  However `strip' might not be the right
2185
2206
fi
2186
2207
 
2187
2208
fi
2188
 
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
 
2209
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2189
2210
 
2190
2211
# We need awk for the "check" target.  The system "awk" is bad on
2191
2212
# some platforms.
3172
3193
  am_depcomp="$ac_aux_dir/depcomp"
3173
3194
  AMDEPBACKSLASH='\'
3174
3195
fi
3175
 
 
3176
 
 
3177
 
if test "x$enable_dependency_tracking" != xno; then
 
3196
 if test "x$enable_dependency_tracking" != xno; then
3178
3197
  AMDEP_TRUE=
3179
3198
  AMDEP_FALSE='#'
3180
3199
else
3184
3203
 
3185
3204
 
3186
3205
 
3187
 
 
3188
3206
depcc="$CC"   am_compiler_list=
3189
3207
 
3190
3208
{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
3252
3270
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
3253
3271
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
3254
3272
         >/dev/null 2>conftest.err &&
 
3273
       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
3255
3274
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
3256
3275
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
3257
3276
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
3281
3300
echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
3282
3301
CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
3283
3302
 
3284
 
 
3285
 
 
3286
 
if
 
3303
 if
3287
3304
  test "x$enable_dependency_tracking" != xno \
3288
3305
  && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
3289
3306
  am__fastdepCC_TRUE=
6826
6843
_ACEOF
6827
6844
 
6828
6845
                if test "x$GCC" = "xyes"; then
6829
 
                        CFLAGS="$CFLAGS -g -ggdb -pedantic -Wall -fno-strict-aliasing"
6830
 
                        LDFLAGS="$LDFLAGS -rdynamic"
 
6846
                        CFLAGS="$CFLAGS -g"
6831
6847
                else
6832
6848
                        echo "INFO: Since you use non-gcc compiler, please enable generation of debug info"
6833
6849
                        echo "      for your compiler manually (via CFLAGS shell variable)"
7358
7374
ac_pwd='$ac_pwd'
7359
7375
srcdir='$srcdir'
7360
7376
INSTALL='$INSTALL'
 
7377
MKDIR_P='$MKDIR_P'
7361
7378
_ACEOF
7362
7379
 
7363
7380
cat >>$CONFIG_STATUS <<\_ACEOF
7566
7583
INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
7567
7584
INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
7568
7585
INSTALL_DATA!$INSTALL_DATA$ac_delim
 
7586
am__isrc!$am__isrc$ac_delim
7569
7587
CYGPATH_W!$CYGPATH_W$ac_delim
7570
7588
PACKAGE!$PACKAGE$ac_delim
7571
7589
VERSION!$VERSION$ac_delim
7613
7631
LTLIBOBJS!$LTLIBOBJS$ac_delim
7614
7632
_ACEOF
7615
7633
 
7616
 
  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 85; then
 
7634
  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 86; then
7617
7635
    break
7618
7636
  elif $ac_last_try; then
7619
7637
    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
7840
7858
  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
7841
7859
  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
7842
7860
  esac
 
7861
  ac_MKDIR_P=$MKDIR_P
 
7862
  case $MKDIR_P in
 
7863
  [\\/$]* | ?:[\\/]* ) ;;
 
7864
  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
 
7865
  esac
7843
7866
_ACEOF
7844
7867
 
7845
7868
cat >>$CONFIG_STATUS <<\_ACEOF
7893
7916
s&@abs_builddir@&$ac_abs_builddir&;t t
7894
7917
s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
7895
7918
s&@INSTALL@&$ac_INSTALL&;t t
 
7919
s&@MKDIR_P@&$ac_MKDIR_P&;t t
7896
7920
$ac_datarootdir_hack
7897
7921
" $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out
7898
7922
 
8008
8032
  fi
8009
8033
  rm -f "$tmp/out12"
8010
8034
# Compute $ac_file's index in $config_headers.
 
8035
_am_arg=$ac_file
8011
8036
_am_stamp_count=1
8012
8037
for _am_header in $config_headers :; do
8013
8038
  case $_am_header in
8014
 
    $ac_file | $ac_file:* )
 
8039
    $_am_arg | $_am_arg:* )
8015
8040
      break ;;
8016
8041
    * )
8017
8042
      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
8018
8043
  esac
8019
8044
done
8020
 
echo "timestamp for $ac_file" >`$as_dirname -- $ac_file ||
8021
 
$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
8022
 
         X$ac_file : 'X\(//\)[^/]' \| \
8023
 
         X$ac_file : 'X\(//\)$' \| \
8024
 
         X$ac_file : 'X\(/\)' \| . 2>/dev/null ||
8025
 
echo X$ac_file |
 
8045
echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
 
8046
$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
8047
         X"$_am_arg" : 'X\(//\)[^/]' \| \
 
8048
         X"$_am_arg" : 'X\(//\)$' \| \
 
8049
         X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
 
8050
echo X"$_am_arg" |
8026
8051
    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
8027
8052
            s//\1/
8028
8053
            q
8057
8082
  # some people rename them; so instead we look at the file content.
8058
8083
  # Grep'ing the first line is not enough: some people post-process
8059
8084
  # each Makefile.in and add a new line on top of each file to say so.
8060
 
  # So let's grep whole file.
8061
 
  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
 
8085
  # Grep'ing the whole file is not good either: AIX grep has a line
 
8086
  # limit of 2048, but all sed's we know have understand at least 4000.
 
8087
  if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
8062
8088
    dirpart=`$as_dirname -- "$mf" ||
8063
8089
$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
8064
8090
         X"$mf" : 'X\(//\)[^/]' \| \
8208
8234
echo "*"
8209
8235
echo "* Debug                  : $ac_cv_debug"
8210
8236
if test "x$ac_cv_debug" = "xyes" -a "x$GCC" != "xyes"; then
8211
 
        echo "*                          Since you use non-gcc compiler, please"
8212
 
        echo "*                          set debug CFLAGS manually(if you want to)"
 
8237
        echo "*                          Since you are not using gcc compatible compiler, please"
 
8238
        echo "*                          set debug CFLAGS manually (if you want to)"
8213
8239
fi
8214
8240
echo "* Native KDE support     : $ac_cv_no_native_kde"
8215
8241
echo "* XPM background support : $ac_cv_xpm_supported"