~ubuntu-branches/ubuntu/saucy/gparted/saucy

« back to all changes in this revision

Viewing changes to configure

  • Committer: Package Import Robot
  • Author(s): Anibal Monsalve Salazar
  • Date: 2011-11-13 09:45:30 UTC
  • mfrom: (6.3.18)
  • Revision ID: package-import@ubuntu.com-20111113094530-bpv6kjk4rwozc1jf
Tags: 0.10.0-1
* New upstream release

  GParted 0.10.0  (2011-11-01)

  * Merge overlapping operations
  * Add ability to resize btrfs file systems
  * Add detection of exfat file systems

  GParted 0.9.1   (2011-09-19)

  * Fix NTFS partition resize fail problem
  * Fix some compiler warnings

  GParted 0.9.0   (2011-07-18)

  * Fix size off by one sector with unrecognized disk label
  * Fix GParted crashes with assertion (head_size <= 63)
    - Requires libparted-2.4 or higher
    - LP: #545911

* Fix out-of-date-standards-version
* Fix debian-rules-missing-recommended-target

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh
2
2
# Guess values for system-dependent variables and create Makefiles.
3
 
# Generated by GNU Autoconf 2.67 for gparted 0.8.1.
 
3
# Generated by GNU Autoconf 2.67 for gparted 0.10.0.
4
4
#
5
5
# Report bugs to <https://bugzilla.gnome.org/enter_bug.cgi?product=gparted>.
6
6
#
702
702
# Identity of this package.
703
703
PACKAGE_NAME='gparted'
704
704
PACKAGE_TARNAME='gparted'
705
 
PACKAGE_VERSION='0.8.1'
706
 
PACKAGE_STRING='gparted 0.8.1'
 
705
PACKAGE_VERSION='0.10.0'
 
706
PACKAGE_STRING='gparted 0.10.0'
707
707
PACKAGE_BUGREPORT='https://bugzilla.gnome.org/enter_bug.cgi?product=gparted'
708
708
PACKAGE_URL=''
709
709
 
1500
1500
  # Omit some internal or obsolete options to make the list less imposing.
1501
1501
  # This message is too long to be a string in the A/UX 3.1 sh.
1502
1502
  cat <<_ACEOF
1503
 
\`configure' configures gparted 0.8.1 to adapt to many kinds of systems.
 
1503
\`configure' configures gparted 0.10.0 to adapt to many kinds of systems.
1504
1504
 
1505
1505
Usage: $0 [OPTION]... [VAR=VALUE]...
1506
1506
 
1570
1570
 
1571
1571
if test -n "$ac_init_help"; then
1572
1572
  case $ac_init_help in
1573
 
     short | recursive ) echo "Configuration of gparted 0.8.1:";;
 
1573
     short | recursive ) echo "Configuration of gparted 0.10.0:";;
1574
1574
   esac
1575
1575
  cat <<\_ACEOF
1576
1576
 
1690
1690
test -n "$ac_init_help" && exit $ac_status
1691
1691
if $ac_init_version; then
1692
1692
  cat <<\_ACEOF
1693
 
gparted configure 0.8.1
 
1693
gparted configure 0.10.0
1694
1694
generated by GNU Autoconf 2.67
1695
1695
 
1696
1696
Copyright (C) 2010 Free Software Foundation, Inc.
2180
2180
This file contains any messages produced by compilers while
2181
2181
running configure, to aid debugging if configure makes a mistake.
2182
2182
 
2183
 
It was created by gparted $as_me 0.8.1, which was
 
2183
It was created by gparted $as_me 0.10.0, which was
2184
2184
generated by GNU Autoconf 2.67.  Invocation command line was
2185
2185
 
2186
2186
  $ $0 $@
3001
3001
 
3002
3002
# Define the identity of the package.
3003
3003
 PACKAGE='gparted'
3004
 
 VERSION='0.8.1'
 
3004
 VERSION='0.10.0'
3005
3005
 
3006
3006
 
3007
3007
cat >>confdefs.h <<_ACEOF
15969
15969
LIBS="$LIBS_save"
15970
15970
 
15971
15971
 
 
15972
LIBPARTED_VERSION=3.0
 
15973
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if libparted >= $LIBPARTED_VERSION (libparted is missing file system resizing API)" >&5
 
15974
$as_echo_n "checking if libparted >= $LIBPARTED_VERSION (libparted is missing file system resizing API)... " >&6; }
 
15975
LIBS_save="$LIBS"
 
15976
LIBS="-lparted -luuid -ldl"
 
15977
need_work_around=yes
 
15978
if test "$cross_compiling" = yes; then :
 
15979
  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
15980
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
15981
as_fn_error $? "cannot run test program while cross compiling
 
15982
See \`config.log' for more details" "$LINENO" 5 ; }
 
15983
else
 
15984
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
15985
/* end confdefs.h.  */
 
15986
 
 
15987
#include <stdio.h>
 
15988
#include <parted/parted.h>
 
15989
 
 
15990
int main ()
 
15991
{
 
15992
        int min_major = 0;
 
15993
        int min_minor = 0;
 
15994
        int min_micro = 0;
 
15995
        int major = 0;
 
15996
        int minor = 0;
 
15997
        int micro = 0;
 
15998
 
 
15999
        if ( ( sscanf( "$LIBPARTED_VERSION", "%d.%d.%d", &min_major, &min_minor, &min_micro ) == 3 ) ||
 
16000
             ( sscanf( "$LIBPARTED_VERSION", "%d.%d", &min_major, &min_minor ) == 2 ) ||
 
16001
             ( sscanf( "$LIBPARTED_VERSION", "%d", &min_major ) == 1 )
 
16002
           )
 
16003
        {
 
16004
                if ( ( sscanf( ped_get_version(), "%d.%d.%d", &major, &minor, &micro ) == 3 ) ||
 
16005
                     ( sscanf( ped_get_version(), "%d.%d", &major, &minor ) == 2 ) ||
 
16006
                     ( sscanf( ped_get_version(), "%d", &major ) == 1 )
 
16007
                   )
 
16008
                {
 
16009
                        return ! ( (major > min_major) ||
 
16010
                                   ( (major == min_major) && (minor > min_minor) ) ||
 
16011
                                   ( (major == min_major) && (minor == min_minor) && (micro >= min_micro) )
 
16012
                                 ) ;
 
16013
                }
 
16014
        }
 
16015
 
 
16016
        return 1 ;
 
16017
}
 
16018
 
 
16019
_ACEOF
 
16020
if ac_fn_c_try_run "$LINENO"; then :
 
16021
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
16022
$as_echo "yes" >&6; }
 
16023
 
 
16024
$as_echo "#define HAVE_LIBPARTED_3_0_0_PLUS 1" >>confdefs.h
 
16025
 
 
16026
  have_lp_fs_resize_api=no
 
16027
 
 
16028
else
 
16029
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
16030
$as_echo "no" >&6; }
 
16031
  have_lp_fs_resize_api=yes
 
16032
 
 
16033
fi
 
16034
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
 
16035
  conftest.$ac_objext conftest.beam conftest.$ac_ext
 
16036
fi
 
16037
 
 
16038
LIBS="$LIBS_save"
 
16039
 
 
16040
 
15972
16041
 
15973
16042
 
15974
16043
 
16991
17060
# report actual input values of CONFIG_FILES etc. instead of their
16992
17061
# values after options handling.
16993
17062
ac_log="
16994
 
This file was extended by gparted $as_me 0.8.1, which was
 
17063
This file was extended by gparted $as_me 0.10.0, which was
16995
17064
generated by GNU Autoconf 2.67.  Invocation command line was
16996
17065
 
16997
17066
  CONFIG_FILES    = $CONFIG_FILES
17057
17126
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
17058
17127
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
17059
17128
ac_cs_version="\\
17060
 
gparted config.status 0.8.1
 
17129
gparted config.status 0.10.0
17061
17130
configured by $0, generated by GNU Autoconf 2.67,
17062
17131
  with options \\"\$ac_cs_config\\"
17063
17132
 
19106
19175
 
19107
19176
 
19108
19177
echo ""
19109
 
echo "================ Final configuration ==================="
19110
 
echo "                 Installing into prefix  :  $prefix"
19111
 
echo ""
19112
 
echo "                   Build documentation?  :  $enable_doc"
19113
 
echo ""
19114
 
echo "   Need part table re-read work around?  :  $need_pt_reread_work_around"
19115
 
echo "     Supports sector sizes > 512 bytes?  :  $support_sector_size_gt_512"
19116
 
echo "   Use native libparted dmraid support?  :  $enable_libparted_dmraid"
 
19178
echo "===================== Final configuration ========================"
 
19179
echo "                      Installing into prefix  :  $prefix"
 
19180
echo ""
 
19181
echo "                        Build documentation?  :  $enable_doc"
 
19182
echo ""
 
19183
echo "        Use native libparted dmraid support?  :  $enable_libparted_dmraid"
 
19184
echo ""
 
19185
echo "    --- Features Based On Libparted Version ---"
 
19186
echo "   Need partition table re-read work around?  :  $need_pt_reread_work_around"
 
19187
echo "          Supports sector sizes > 512 bytes?  :  $support_sector_size_gt_512"
 
19188
echo "    Have libparted file system resizing API?  :  $have_lp_fs_resize_api"
19117
19189
echo ""
19118
19190
echo " If all settings are OK, type make and make install "
19119
 
echo "========================================================"
 
19191
echo "=================================================================="