Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
csst-pipeline
msc
sextractor
Commits
22c7e544
Commit
22c7e544
authored
Aug 17, 2013
by
Chiara Marmo
Browse files
Solved issue with --disable-model-fitting configuration option. Pushed version number to 2.19.2
parent
a3e5e107
Changes
12
Hide whitespace changes
Inline
Side-by-side
Makefile.in
View file @
22c7e544
# Makefile.in generated by automake 1.1
2.2
from Makefile.am.
# Makefile.in generated by automake 1.1
1.6
from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
# Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
...
...
@@ -82,15 +83,10 @@ subdir = .
DIST_COMMON
=
README
$(am__configure_deps)
$(dist_pkgdata_DATA)
\
$(srcdir)
/Makefile.am
$(srcdir)
/Makefile.in
\
$(srcdir)
/config.h.in
$(srcdir)
/sextractor.spec.in
\
$(top_srcdir)
/autoconf/config.guess
\
$(top_srcdir)
/autoconf/config.sub
\
$(top_srcdir)
/autoconf/install-sh
\
$(top_srcdir)
/autoconf/ltmain.sh
\
$(top_srcdir)
/autoconf/missing
\
$(top_srcdir)
/autoconf/mkinstalldirs
$(top_srcdir)
/configure
\
AUTHORS ChangeLog INSTALL THANKS autoconf/config.guess
\
autoconf/config.sub autoconf/depcomp autoconf/install-sh
\
autoconf/ltmain.sh autoconf/missing autoconf/mkinstalldirs
$(top_srcdir)
/configure AUTHORS ChangeLog INSTALL THANKS
\
autoconf/config.guess autoconf/config.sub autoconf/depcomp
\
autoconf/install-sh autoconf/ltmain.sh autoconf/missing
\
autoconf/mkinstalldirs
ACLOCAL_M4
=
$(top_srcdir)
/aclocal.m4
am__aclocal_m4_deps
=
$(top_srcdir)
/acx_atlas.m4
\
$(top_srcdir)
/acx_fftw.m4
$(top_srcdir)
/acx_mkl.m4
\
...
...
@@ -155,10 +151,9 @@ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
AM_RECURSIVE_TARGETS
=
$
(
RECURSIVE_TARGETS:-recursive
=)
\
$
(
RECURSIVE_CLEAN_TARGETS:-recursive
=)
tags TAGS ctags CTAGS
\
cscope
distdir dist dist-all distcheck
distdir dist dist-all distcheck
ETAGS
=
etags
CTAGS
=
ctags
CSCOPE
=
cscope
DIST_SUBDIRS
=
$(SUBDIRS)
DISTFILES
=
$(DIST_COMMON)
$(DIST_SOURCES)
$(TEXINFOS)
$(EXTRA_DIST)
distdir
=
$(PACKAGE)
-
$(VERSION)
...
...
@@ -169,7 +164,6 @@ am__remove_distdir = \
&&
rm
-rf
"
$(distdir)
"
\
||
{
sleep
5
&&
rm
-rf
"
$(distdir)
"
;
}
;
\
else
:
;
fi
am__post_remove_distdir
=
$(am__remove_distdir)
am__relativize
=
\
dir0
=
`
pwd
`
;
\
sed_first
=
's,^\([^/]*\)/.*$$,\1,'
;
\
...
...
@@ -197,7 +191,6 @@ am__relativize = \
reldir
=
"
$$
dir2"
DIST_ARCHIVES
=
$(distdir)
.tar.gz
GZIP_ENV
=
--best
DIST_TARGETS
=
dist-gzip
distuninstallcheck_listfiles
=
find
.
-type
f
-print
am__distuninstallcheck_listfiles
=
$(distuninstallcheck_listfiles)
\
|
sed
's|^\./|
$(prefix)
/|'
|
grep
-v
'
$(infodir)
/dir$$'
...
...
@@ -433,12 +426,12 @@ uninstall-dist_pkgdataDATA:
dir
=
'
$(DESTDIR)$(pkgdatadir)
'
;
$(am__uninstall_files_from_dir)
# This directory's subdirectories are mostly independent; you can cd
# into them and run
'
make' without going through this Makefile.
# To change the values of
'
make' variables: instead of editing Makefiles,
# (1) if the variable is set in
'
config.status', edit
'
config.status'
# (which will cause the Makefiles to be regenerated when you run
'
make');
# (2) otherwise, pass the desired values on the
'
make' command line.
$(RECURSIVE_TARGETS)
$(RECURSIVE_CLEAN_TARGETS)
:
# into them and run
`
make' without going through this Makefile.
# To change the values of
`
make' variables: instead of editing Makefiles,
# (1) if the variable is set in
`
config.status', edit
`
config.status'
# (which will cause the Makefiles to be regenerated when you run
`
make');
# (2) otherwise, pass the desired values on the
`
make' command line.
$(RECURSIVE_TARGETS)
:
@
fail
=
failcom
=
'exit 1'
;
\
for
f
in
x
$$
MAKEFLAGS
;
do
\
case
$$
f
in
\
...
...
@@ -448,11 +441,7 @@ $(RECURSIVE_TARGETS) $(RECURSIVE_CLEAN_TARGETS):
done
;
\
dot_seen
=
no
;
\
target
=
`
echo
$@
|
sed
s/-recursive//
`
;
\
case
"
$@
"
in
\
distclean-
*
|
maintainer-clean-
*
)
list
=
'
$(DIST_SUBDIRS)
'
;;
\
*
)
list
=
'
$(SUBDIRS)
'
;;
\
esac
;
\
for
subdir
in
$$
list
;
do
\
list
=
'
$(SUBDIRS)
'
;
for
subdir
in
$$
list
;
do
\
echo
"Making
$$
target in
$$
subdir"
;
\
if
test
"
$$
subdir"
=
"."
;
then
\
dot_seen
=
yes
;
\
...
...
@@ -466,6 +455,37 @@ $(RECURSIVE_TARGETS) $(RECURSIVE_CLEAN_TARGETS):
if
test
"
$$
dot_seen"
=
"no"
;
then
\
$(MAKE)
$(AM_MAKEFLAGS)
"
$$
target-am"
||
exit
1
;
\
fi
;
test
-z
"
$$
fail"
$(RECURSIVE_CLEAN_TARGETS)
:
@
fail
=
failcom
=
'exit 1'
;
\
for
f
in
x
$$
MAKEFLAGS
;
do
\
case
$$
f
in
\
*
=
*
|
--
[!
k]
*
);;
\
*
k
*
)
failcom
=
'fail=yes'
;;
\
esac
;
\
done
;
\
dot_seen
=
no
;
\
case
"
$@
"
in
\
distclean-
*
|
maintainer-clean-
*
)
list
=
'
$(DIST_SUBDIRS)
'
;;
\
*
)
list
=
'
$(SUBDIRS)
'
;;
\
esac
;
\
rev
=
''
;
for
subdir
in
$$
list
;
do
\
if
test
"
$$
subdir"
=
"."
;
then
:
;
else
\
rev
=
"
$$
subdir
$$
rev"
;
\
fi
;
\
done
;
\
rev
=
"
$$
rev ."
;
\
target
=
`
echo
$@
|
sed
s/-recursive//
`
;
\
for
subdir
in
$$
rev
;
do
\
echo
"Making
$$
target in
$$
subdir"
;
\
if
test
"
$$
subdir"
=
"."
;
then
\
local_target
=
"
$$
target-am"
;
\
else
\
local_target
=
"
$$
target"
;
\
fi
;
\
(
$(am__cd)
$$
subdir
&&
$(MAKE)
$(AM_MAKEFLAGS)
$$
local_target
)
\
||
eval
$$
failcom
;
\
done
&&
test
-z
"
$$
fail"
tags-recursive
:
list
=
'
$(SUBDIRS)
'
;
for
subdir
in
$$
list
;
do
\
test
"
$$
subdir"
=
.
||
(
$(am__cd)
$$
subdir
&&
$(MAKE)
$(AM_MAKEFLAGS)
tags
)
;
\
...
...
@@ -474,10 +494,6 @@ ctags-recursive:
list
=
'
$(SUBDIRS)
'
;
for
subdir
in
$$
list
;
do
\
test
"
$$
subdir"
=
.
||
(
$(am__cd)
$$
subdir
&&
$(MAKE)
$(AM_MAKEFLAGS)
ctags
)
;
\
done
cscopelist-recursive
:
list
=
'
$(SUBDIRS)
'
;
for
subdir
in
$$
list
;
do
\
test
"
$$
subdir"
=
.
||
(
$(am__cd)
$$
subdir
&&
$(MAKE)
$(AM_MAKEFLAGS)
cscopelist
)
;
\
done
ID
:
$(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list
=
'
$(SOURCES)
$(HEADERS)
$(LISP)
$(TAGS_FILES)
'
;
\
...
...
@@ -541,32 +557,8 @@ GTAGS:
&&
$(am__cd)
$(top_srcdir)
\
&&
gtags
-i
$(GTAGS_ARGS)
"
$$
here"
cscope
:
cscope.files
test
!
-s
cscope.files
\
||
$(CSCOPE)
-b
-q
$(AM_CSCOPEFLAGS)
$(CSCOPEFLAGS)
-i
cscope.files
$(CSCOPE_ARGS)
clean-cscope
:
-
rm
-f
cscope.files
cscope.files
:
clean-cscope cscopelist-recursive cscopelist
cscopelist
:
cscopelist-recursive $(HEADERS) $(SOURCES) $(LISP)
list
=
'
$(SOURCES)
$(HEADERS)
$(LISP)
'
;
\
case
"
$(srcdir)
"
in
\
[
\\
/]
*
|
?:[
\\
/]
*
)
sdir
=
"
$(srcdir)
"
;;
\
*
)
sdir
=
$(subdir)
/
$(srcdir)
;;
\
esac
;
\
for
i
in
$$
list
;
do
\
if
test
-f
"
$$
i"
;
then
\
echo
"
$(subdir)
/
$$
i"
;
\
else
\
echo
"
$$
sdir/
$$
i"
;
\
fi
;
\
done
>>
$(top_builddir)
/cscope.files
distclean-tags
:
-
rm
-f
TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-
rm
-f
cscope.out cscope.in.out cscope.po.out cscope.files
distdir
:
$(DISTFILES)
$(am__remove_distdir)
...
...
@@ -637,36 +629,40 @@ distdir: $(DISTFILES)
||
chmod
-R
a+r
"
$(distdir)
"
dist-gzip
:
distdir
tardir
=
$(distdir)
&&
$(am__tar)
|
GZIP
=
$(GZIP_ENV)
gzip
-c
>
$(distdir)
.tar.gz
$(am__
post_
remove_distdir)
$(am__remove_distdir)
dist-bzip2
:
distdir
tardir
=
$(distdir)
&&
$(am__tar)
|
BZIP2
=
$
${
BZIP2
--9
}
bzip2
-c
>
$(distdir)
.tar.bz2
$(am__
post_
remove_distdir)
$(am__remove_distdir)
dist-lzip
:
distdir
tardir
=
$(distdir)
&&
$(am__tar)
| lzip
-c
$
${
LZIP_OPT
--9
}
>
$(distdir)
.tar.lz
$(am__post_remove_distdir)
$(am__remove_distdir)
dist-lzma
:
distdir
tardir
=
$(distdir)
&&
$(am__tar)
| lzma
-9
-c
>
$(distdir)
.tar.lzma
$(am__remove_distdir)
dist-xz
:
distdir
tardir
=
$(distdir)
&&
$(am__tar)
|
XZ_OPT
=
$
${
XZ_OPT
--e
}
xz
-c
>
$(distdir)
.tar.xz
$(am__
post_
remove_distdir)
$(am__remove_distdir)
dist-tarZ
:
distdir
tardir
=
$(distdir)
&&
$(am__tar)
| compress
-c
>
$(distdir)
.tar.Z
$(am__
post_
remove_distdir)
$(am__remove_distdir)
dist-shar
:
distdir
shar
$(distdir)
|
GZIP
=
$(GZIP_ENV)
gzip
-c
>
$(distdir)
.shar.gz
$(am__
post_
remove_distdir)
$(am__remove_distdir)
dist-zip
:
distdir
-
rm
-f
$(distdir)
.zip
zip
-rq
$(distdir)
.zip
$(distdir)
$(am__
post_
remove_distdir)
$(am__remove_distdir)
dist dist-all
:
$(MAKE)
$(AM_MAKEFLAGS)
$(DIST_TARGETS)
am__post_remove_distdir
=
'@:'
$(am__
post_
remove_distdir)
dist dist-all
:
distdir
tardir
=
$(distdir)
&&
$(am__tar)
|
GZIP
=
$(GZIP_ENV)
gzip
-c
>
$(distdir)
.tar.gz
$(am__remove_distdir)
# This target untars the dist file and tries a VPATH configuration. Then
# it guarantees that the distribution is self-contained by making another
...
...
@@ -677,6 +673,8 @@ distcheck: dist
GZIP
=
$(GZIP_ENV)
gzip
-dc
$(distdir)
.tar.gz |
$(am__untar)
;;
\
*
.tar.bz2
*
)
\
bzip2
-dc
$(distdir)
.tar.bz2 |
$(am__untar)
;;
\
*
.tar.lzma
*
)
\
lzma
-dc
$(distdir)
.tar.lzma |
$(am__untar)
;;
\
*
.tar.lz
*
)
\
lzip
-dc
$(distdir)
.tar.lz |
$(am__untar)
;;
\
*
.tar.xz
*
)
\
...
...
@@ -722,7 +720,7 @@ distcheck: dist
&&
$(MAKE)
$(AM_MAKEFLAGS)
distcleancheck
\
&&
cd
"
$$
am__cwd"
\
||
exit
1
$(am__
post_
remove_distdir)
$(am__remove_distdir)
@
(
echo
"
$(distdir)
archives ready for distribution: "
;
\
list
=
'
$(DIST_ARCHIVES)
'
;
for
i
in
$$
list
;
do
echo
$$
i
;
done
)
|
\
sed
-e
1h
-e
1s/./
=
/g
-e
1p
-e
1x
-e
'$$p'
-e
'$$x'
...
...
@@ -861,14 +859,12 @@ ps-am:
uninstall-am
:
uninstall-dist_pkgdataDATA
.MAKE
:
$(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all
\
cscopelist-recursive ctags-recursive install-am install-strip
\
tags-recursive
ctags-recursive install-am install-strip tags-recursive
.PHONY
:
$(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS
\
all all-am am--refresh check check-am clean clean-cscope
\
clean-generic clean-libtool cscope cscopelist
\
cscopelist-recursive ctags ctags-recursive dist dist-all
\
dist-bzip2 dist-gzip dist-hook dist-lzip dist-shar dist-tarZ
\
all all-am am--refresh check check-am clean clean-generic
\
clean-libtool ctags ctags-recursive dist dist-all dist-bzip2
\
dist-gzip dist-hook dist-lzip dist-lzma dist-shar dist-tarZ
\
dist-xz dist-zip distcheck distclean distclean-generic
\
distclean-hdr distclean-libtool distclean-tags distcleancheck
\
distdir distuninstallcheck dvi dvi-am html html-am info
\
...
...
aclocal.m4
View file @
22c7e544
#
generated
automatically
by
aclocal
1.12.2
-*-
Autoconf
-*-
#
Copyright
(
C
)
1996
-
2012
Free
Software
Foundation
,
Inc
.
#
generated
automatically
by
aclocal
1.11.6
-*-
Autoconf
-*-
#
Copyright
(
C
)
1996
,
1997
,
1998
,
1999
,
2000
,
2001
,
2002
,
2003
,
2004
,
#
2005
,
2006
,
2007
,
2008
,
2009
,
2010
,
2011
Free
Software
Foundation
,
#
Inc
.
#
This
file
is
free
software
;
the
Free
Software
Foundation
#
gives
unlimited
permission
to
copy
and
/
or
distribute
it
,
#
with
or
without
modifications
,
as
long
as
this
notice
is
preserved
.
...
...
@@ -17,7 +18,7 @@ m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
[
m4_warning
([
this
file
was
generated
for
autoconf
2.69
.
You
have
another
version
of
autoconf
.
It
may
work
,
but
is
not
guaranteed
to
.
If
you
have
problems
,
you
may
need
to
regenerate
the
build
system
entirely
.
To
do
so
,
use
the
procedure
documented
by
the
package
,
typically
'
autoreconf'
.])])
To
do
so
,
use
the
procedure
documented
by
the
package
,
typically
`
autoreconf
'.])])
# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
#
...
...
@@ -2525,17 +2526,6 @@ freebsd* | dragonfly*)
esac
;;
gnu*)
version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='
${
libname
}${
release
}${
shared_ext
}$
versuffix
${
libname
}${
release
}${
shared_ext
}${
major
}
${
libname
}${
shared_ext
}
'
soname_spec='
${
libname
}${
release
}${
shared_ext
}$
major
'
shlibpath_var=LD_LIBRARY_PATH
shlibpath_overrides_runpath=no
hardcode_into_libs=yes
;;
haiku*)
version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
...
...
@@ -2652,7 +2642,7 @@ linux*oldld* | linux*aout* | linux*coff*)
;;
# This must be glibc/ELF.
linux* | k*bsd*-gnu | kopensolaris*-gnu)
linux* | k*bsd*-gnu | kopensolaris*-gnu
| gnu*
)
version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
...
...
@@ -2682,14 +2672,10 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu)
# before this can be enabled.
hardcode_into_libs=yes
# Add ABI-specific directories to the system library path.
sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib"
# Append ld.so.conf contents to the search path
if test -f /etc/ld.so.conf; then
lt_ld_extra=`awk '
/^
include
/
{
system
(
sprintf
(
"cd /etc; cat %s 2>/dev/null"
,
\[$]
2
));
skip
=
1
;
}
{
if
(
!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '`
sys_lib_dlsearch_path_spec
=
"$sys_lib_dlsearch_path_spec $lt_ld_extra"
sys_lib_dlsearch_path_spec
=
"/lib /usr/lib $lt_ld_extra"
fi
#
We
used
to
test
for
/
lib
/
ld
.
so
.1
and
disable
shared
libraries
on
...
...
@@ -2701,6 +2687,18 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu)
dynamic_linker
=
'GNU/Linux ld.so'
;;
netbsdelf
*-
gnu
)
version_type
=
linux
need_lib_prefix
=
no
need_version
=
no
library_names_spec
=
'${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
soname_spec
=
'${libname}${release}${shared_ext}$major'
shlibpath_var
=
LD_LIBRARY_PATH
shlibpath_overrides_runpath
=
no
hardcode_into_libs
=
yes
dynamic_linker
=
'NetBSD ld.elf_so'
;;
netbsd
*)
version_type
=
sunos
need_lib_prefix
=
no
...
...
@@ -3260,10 +3258,6 @@ freebsd* | dragonfly*)
fi
;;
gnu*)
lt_cv_deplibs_check_method=pass_all
;;
haiku*)
lt_cv_deplibs_check_method=pass_all
;;
...
...
@@ -3302,11 +3296,11 @@ irix5* | irix6* | nonstopux*)
;;
#
This
must
be
glibc
/
ELF
.
linux
*
|
k
*
bsd
*-
gnu
|
kopensolaris
*-
gnu
)
linux
*
|
k
*
bsd
*-
gnu
|
kopensolaris
*-
gnu
|
gnu
*
)
lt_cv_deplibs_check_method
=
pass_all
;;
netbsd
*)
netbsd
*
|
netbsdelf
*-
gnu
)
if
echo
__ELF__
|
$
CC
-
E
-
|
$
GREP
__ELF__
>
/
dev
/
null
;
then
lt_cv_deplibs_check_method
=
'match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
else
...
...
@@ -4054,7 +4048,7 @@ m4_if([$1], [CXX], [
;;
esac
;;
linux* | k*bsd*-gnu | kopensolaris*-gnu)
linux* | k*bsd*-gnu | kopensolaris*-gnu
| gnu*
)
case $cc_basename in
KCC*)
# KAI C++ Compiler
...
...
@@ -4118,7 +4112,7 @@ m4_if([$1], [CXX], [
;;
esac
;;
netbsd*)
netbsd*
| netbsdelf*-gnu
)
;;
*qnx* | *nto*)
# QNX uses GNU C++, but need to define -shared option too, otherwise
...
...
@@ -4353,7 +4347,7 @@ m4_if([$1], [CXX], [
_LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
;;
linux* | k*bsd*-gnu | kopensolaris*-gnu)
linux* | k*bsd*-gnu | kopensolaris*-gnu
| gnu*
)
case $cc_basename in
# old Intel for x86_64 which still supported -KPIC.
ecc*)
...
...
@@ -4595,6 +4589,9 @@ m4_if([$1], [CXX], [
;;
esac
;;
linux* | k*bsd*-gnu | gnu*)
_LT_TAGVAR(link_all_deplibs, $1)=no
;;
*)
_LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
;;
...
...
@@ -4657,6 +4654,9 @@ dnl Note also adjust exclude_expsyms for C++ above.
openbsd*)
with_gnu_ld=no
;;
linux* | k*bsd*-gnu | gnu*)
_LT_TAGVAR(link_all_deplibs, $1)=no
;;
esac
_LT_TAGVAR(ld_shlibs, $1)=yes
...
...
@@ -4878,7 +4878,7 @@ _LT_EOF
fi
;;
netbsd*)
netbsd*
| netbsdelf*-gnu
)
if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
_LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
wlarc=
...
...
@@ -5055,6 +5055,7 @@ _LT_EOF
if test "
$
aix_use_runtimelinking
" = yes; then
shared_flag="
$
shared_flag
"'${wl}-G'
fi
_LT_TAGVAR(link_all_deplibs, $1)=no
else
# not using gcc
if test "
$
host_cpu
" = ia64; then
...
...
@@ -5359,7 +5360,7 @@ _LT_EOF
_LT_TAGVAR(link_all_deplibs, $1)=yes
;;
netbsd*)
netbsd*
| netbsdelf*-gnu
)
if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
_LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out
else
...
...
@@ -6235,9 +6236,6 @@ if test "$_lt_caught_CXX_error" != yes; then
_LT_TAGVAR(ld_shlibs, $1)=yes
;;
gnu*)
;;
haiku*)
_LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
_LT_TAGVAR(link_all_deplibs, $1)=yes
...
...
@@ -6399,7 +6397,7 @@ if test "$_lt_caught_CXX_error" != yes; then
_LT_TAGVAR(inherit_rpath, $1)=yes
;;
linux* | k*bsd*-gnu | kopensolaris*-gnu)
linux* | k*bsd*-gnu | kopensolaris*-gnu
| gnu*
)
case $cc_basename in
KCC*)
# Kuck and Associates, Inc. (KAI) C++ Compiler
...
...
@@ -8717,13 +8715,14 @@ m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])])
m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])])
m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])])
# Copyright (C) 2002-2012 Free Software Foundation, Inc.
# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
# Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# serial
8
# serial
1
# AM_AUTOMAKE_VERSION(VERSION)
# ----------------------------
...
...
@@ -8731,10 +8730,10 @@ m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])])
# generated from the m4 files accompanying Automake X.Y.
# (This private macro should not be called outside this file.)
AC_DEFUN([AM_AUTOMAKE_VERSION],
[am__api_version='1.1
2
'
[am__api_version='1.1
1
'
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
dnl require some minimum version. Point them to the right macro.
m4_if([$1], [1.1
2.2
], [],
m4_if([$1], [1.1
1.6
], [],
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
])
...
...
@@ -8750,24 +8749,24 @@ m4_define([_AM_AUTOCONF_VERSION], [])
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
[AM_AUTOMAKE_VERSION([1.1
2.2
])dnl
[AM_AUTOMAKE_VERSION([1.1
1.6
])dnl
m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
# Copyright (C) 2001
-
201
2
Free Software Foundation, Inc.
# Copyright (C) 2001
, 2003, 2005,
201
1
Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# serial
2
# serial
1
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
# $ac_aux_dir to
'
$srcdir/foo'. In other projects, it is set to
#
'
$srcdir',
'
$srcdir/..', or
'
$srcdir/../..'.
# $ac_aux_dir to
`
$srcdir/foo'. In other projects, it is set to
#
`
$srcdir',
`
$srcdir/..', or
`
$srcdir/../..'.
#
# Of course, Automake must honor this variable whenever it calls a
# tool from the auxiliary directory. The problem is that $srcdir (and
...
...
@@ -8786,7 +8785,7 @@ _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
#
# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
# are both prefixed by $srcdir. In an in-source build this is usually
# harmless because $srcdir is
'
.', but things will broke when you
# harmless because $srcdir is
`
.', but things will broke when you
# start a VPATH build or use an absolute $srcdir.
#
# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
...
...
@@ -8812,21 +8811,22 @@ am_aux_dir=`cd $ac_aux_dir && pwd`
# AM_CONDITIONAL -*- Autoconf -*-
# Copyright (C) 1997-2012 Free Software Foundation, Inc.
# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
# Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# serial
10
# serial
9
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
# -------------------------------------
# Define a conditional.
AC_DEFUN([AM_CONDITIONAL],
[AC_PREREQ(
[
2.52
]
)dnl
m4_if
([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
[AC_PREREQ(2.52)dnl
ifelse
([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
AC_SUBST([$1_TRUE])dnl
AC_SUBST([$1_FALSE])dnl
_AM_SUBST_NOTMAKE([$1_TRUE])dnl
...
...
@@ -8845,15 +8845,16 @@ AC_CONFIG_COMMANDS_PRE(
Usually this means the macro was only invoked conditionally.]])
fi])])
# Copyright (C) 1999-2012 Free Software Foundation, Inc.
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009,
# 2010, 2011 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# serial 1
7
# serial 1
2
# There are a few dirty hacks below to avoid letting
'
AC_PROG_CC' be
# There are a few dirty hacks below to avoid letting
`
AC_PROG_CC' be
# written in clear, in which case automake, when reading aclocal.m4,
# will think it sees a *use*, and therefore will trigger all it's
# C support machinery. Also note that it means that autoscan, seeing
...
...
@@ -8863,7 +8864,7 @@ fi])])
# _AM_DEPENDENCIES(NAME)
# ----------------------
# See how the compiler implements dependency checking.
# NAME is "
CC
", "
CXX
", "
OBJC
", "
OBJCXX
", "
UPC
", or "
G
JC
".
# NAME is "
CC
", "
CXX
", "
GCJ
", or "
OB
JC
".
# We try a few techniques and use that to set a single cache variable.
#
# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
...
...
@@ -8876,13 +8877,12 @@ AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
AC_REQUIRE([AM_DEP_TRACK])dnl
m4_if([$1], [CC], [depcc="
$
CC
" am_compiler_list=],
[$1], [CXX], [depcc="
$
CXX
" am_compiler_list=],
[$1], [OBJC], [depcc="
$
OBJC
" am_compiler_list='gcc3 gcc'],
[$1], [OBJCXX], [depcc="
$
OBJCXX
" am_compiler_list='gcc3 gcc'],
[$1], [UPC], [depcc="
$
UPC
" am_compiler_list=],
[$1], [GCJ], [depcc="
$
GCJ
" am_compiler_list='gcc3 gcc'],
[depcc="
$$
1
" am_compiler_list=])
ifelse([$1], CC, [depcc="
$
CC
" am_compiler_list=],
[$1], CXX, [depcc="
$
CXX
" am_compiler_list=],
[$1], OBJC, [depcc="
$
OBJC
" am_compiler_list='gcc3 gcc'],
[$1], UPC, [depcc="
$
UPC
" am_compiler_list=],
[$1], GCJ, [depcc="
$
GCJ
" am_compiler_list='gcc3 gcc'],
[depcc="
$$
1
" am_compiler_list=])
AC_CACHE_CHECK([dependency style of $depcc],
[am_cv_$1_dependencies_compiler_type],
...
...
@@ -8890,8 +8890,8 @@ AC_CACHE_CHECK([dependency style of $depcc],
# We make a subdir and do the tests there. Otherwise we can end up
# making bogus files that we don't know about and never remove. For
# instance it was reported that on HP-UX the gcc test will end up
# making a dummy file named
'
D' -- because
'
-MD' means
"
put
the
output
#
in
D
"
.
# making a dummy file named
`
D' -- because
`
-MD' means
`
put the output
# in D
'
.
rm -rf conftest.dir
mkdir conftest.dir
# Copy depcomp to subdir because otherwise we won't find it if we're
...
...
@@ -8931,16 +8931,16 @@ AC_CACHE_CHECK([dependency style of $depcc],
: > sub/conftest.c
for i in 1 2 3 4 5 6; do
echo '#include "
conftst
'$i'
.
h
"' >> sub/conftest.c
# Using
"
:
>
sub
/
conftst
$
i
.
h
"
creates only sub/conftst1.h with
# Solaris
10
/bin/sh.
echo '/* dummy */' >
sub/conftst$i.h
# Using
`
: > sub/conftst$i.h
'
creates only sub/conftst1.h with
# Solaris
8's {/usr,}
/bin/sh.
touch
sub/conftst$i.h
done
echo "
${
am__include
}
${
am__quote
}
sub
/
conftest
.
Po
${
am__quote
}
" > confmf
# We check with
'
-c' and
'
-o' for the sake of the "
dashmstdout
"
# We check with
`
-c' and
`
-o' for the sake of the "
dashmstdout
"
# mode. It turns out that the SunPro C++ compiler does not properly
# handle
'
-M -o', and we need to detect this. Also, some Intel
# versions had trouble with output in subdirs
.
# handle
`
-M -o', and we need to detect this. Also, some Intel
# versions had trouble with output in subdirs
am__obj=sub/conftest.${OBJEXT-o}
am__minus_obj="
-
o
$
am__obj
"
case $depmode in
...
...
@@ -8949,8 +8949,8 @@ AC_CACHE_CHECK([dependency style of $depcc],
test "
$
am__universal
" = false || continue
;;
nosideeffect)
#
A
fter this tag, mechanisms are not by side-effect, so they'll
# only be used when explicitly requested
.
#
a
fter this tag, mechanisms are not by side-effect, so they'll
# only be used when explicitly requested
if test "
x
$
enable_dependency_tracking
" = xyes; then
continue
else
...
...
@@ -8958,7 +8958,7 @@ AC_CACHE_CHECK([dependency style of $depcc],
fi
;;
msvc7 | msvc7msys | msvisualcpp | msvcmsys)
# This compiler won't grok
'
-c -o', but also, the minuso test has
# This compiler won't grok
`
-c -o', but also, the minuso test has
# not run yet. These depmodes are late enough in the game, and
# so weak that their functioning should not be impacted.
am__obj=conftest.${OBJEXT-o}
...
...
@@ -9006,7 +9006,7 @@ AM_CONDITIONAL([am__fastdep$1], [
# AM_SET_DEPDIR
# -------------
# Choose a directory name for dependency files.
# This macro is AC_REQUIREd in _AM_DEPENDENCIES
.
# This macro is AC_REQUIREd in _AM_DEPENDENCIES
AC_DEFUN([AM_SET_DEPDIR],
[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
AC_SUBST([DEPDIR], ["
${
am__leading_dot
}
deps
"])dnl
...
...
@@ -9016,13 +9016,9 @@ AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
# AM_DEP_TRACK
# ------------
AC_DEFUN([AM_DEP_TRACK],
[AC_ARG_ENABLE([dependency-tracking], [dnl
AS_HELP_STRING(
[--enable-dependency-tracking],
[do not reject slow dependency extractors])
AS_HELP_STRING(
[--disable-dependency-tracking],
[speeds up one-time build])])
[AC_ARG_ENABLE(dependency-tracking,
[ --disable-dependency-tracking speeds up one-time build
--enable-dependency-tracking do not reject slow dependency extractors])
if test "
x
$
enable_dependency_tracking
" != xno; then
am_depcomp="
$
ac_aux_dir
/
depcomp
"
AMDEPBACKSLASH='\'
...
...
@@ -9037,13 +9033,14 @@ _AM_SUBST_NOTMAKE([am__nodep])dnl
# Generate code to set up dependency tracking. -*- Autoconf -*-
# Copyright (C) 1999-2012 Free Software Foundation, Inc.
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
# Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
#
serial
6
#serial
5
# _AM_OUTPUT_DEPENDENCY_COMMANDS
# ------------------------------
...
...
@@ -9062,7 +9059,7 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
# Strip MF so we end up with the name of the file.
mf=`echo "
$
mf
" | sed -e 's/:.*$//'`
# Check whether this is an Automake generated Makefile or not.
# We used to match only the files named
'
Makefile.in', but
# We used to match only the files named
`
Makefile.in', but
# some people rename them; so instead we look at the file content.
# Grep'ing the first line is not enough: some people post-process
# each Makefile.in and add a new line on top of each file to say so.
...
...
@@ -9074,19 +9071,21 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
continue
fi
# Extract the definition of DEPDIR, am__include, and am__quote
# from the Makefile without running
'
make'.
# from the Makefile without running
`
make'.
DEPDIR=`sed -n 's/^DEPDIR = //p' < "
$
mf
"`
test -z "
$
DEPDIR
" && continue
am__include=`sed -n 's/^am__include = //p' < "
$
mf
"`
test -z "
am__include
" && continue
am__quote=`sed -n 's/^am__quote = //p' < "
$
mf
"`
# When using ansi2knr, U may be empty or an underscore; expand it
U=`sed -n 's/^U = //p' < "
$
mf
"`
# Find all dependency output files, they are included files with
# $(DEPDIR) in their names. We invoke sed twice because it is the
# simplest approach to changing $(DEPDIR) to its actual value in the
# expansion.
for file in `sed -n "
s
/^$
am__include
$
am__quote
\(.*(
DEPDIR
).*\)$
am__quote
"'$/
\1/
p' <"
$
mf
" | \
sed -e 's/\$(DEPDIR)/'"
$
DEPDIR
"'/g'`; do
sed -e 's/\$(DEPDIR)/'"
$
DEPDIR
"'/g'
-e 's/\$U/'"
$
U
"'/g'
`; do
# Make sure the directory exists.
test -f "
$
dirpart
/$
file
" && continue
fdir=`AS_DIRNAME(["
$
file
"])`
...
...
@@ -9104,7 +9103,7 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
# This macro should only be invoked once -- use via AC_REQUIRE.
#
# This code is only required when automatic dependency tracking
# is enabled. FIXME. This creates each
'
.P' file that we will
# is enabled. FIXME. This creates each
`
.P' file that we will
# need in order to bootstrap the dependency handling code.
AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
[AC_CONFIG_COMMANDS([depfiles],
...
...
@@ -9114,13 +9113,14 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
# Do all the work for Automake. -*- Autoconf -*-
# Copyright (C) 1996-2012 Free Software Foundation, Inc.
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
# 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# serial 1
9
# serial 1
6
# This macro actually does too much. Some checks are only needed if
# your package does certain things. But this isn't really a big deal.
...
...
@@ -9166,41 +9166,31 @@ AC_SUBST([CYGPATH_W])
# Define the identity of the package.
dnl Distinguish between old-style and new-style calls.
m4_ifval([$2],
[AC_DIAGNOSE([obsolete],
[$0: two- and three-arguments forms are deprecated. For more info, see:
http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation])
m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
AC_SUBST([PACKAGE], [$1])dnl
AC_SUBST([VERSION], [$2])],
[_AM_SET_OPTIONS([$1])dnl
dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
m4_if(
m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
[ok:ok],,
m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
[m4_fatal([AC_INIT should be called with package and version arguments])])dnl
AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
_AM_IF_OPTION([no-define],,
[AC_DEFINE_UNQUOTED(
[
PACKAGE
]
,
[
"
$
PACKAGE
"
]
, [Name of package])
AC_DEFINE_UNQUOTED(
[
VERSION
]
,
[
"
$
VERSION
"
]
, [Version number of package])])dnl
[AC_DEFINE_UNQUOTED(PACKAGE, "
$
PACKAGE
", [Name of package])
AC_DEFINE_UNQUOTED(VERSION, "
$
VERSION
", [Version number of package])])dnl
# Some tools Automake needs.
AC_REQUIRE([AM_SANITY_CHECK])dnl
AC_REQUIRE([AC_ARG_PROGRAM])dnl
AM_MISSING_PROG(
[
ACLOCAL
]
,
[
aclocal-${am__api_version}
]
)
AM_MISSING_PROG(
[
AUTOCONF
]
,
[
autoconf
]
)
AM_MISSING_PROG(
[
AUTOMAKE
]
,
[
automake-${am__api_version}
]
)
AM_MISSING_PROG(
[
AUTOHEADER
]
,
[
autoheader
]
)
AM_MISSING_PROG(
[
MAKEINFO
]
,
[
makeinfo
]
)
AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
AM_MISSING_PROG(AUTOCONF, autoconf)
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
AM_MISSING_PROG(AUTOHEADER, autoheader)
AM_MISSING_PROG(MAKEINFO, makeinfo)
AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
# We need awk for the "
check
" target. The system "
awk
" is bad on
# some platforms.
AC_REQUIRE([AC_PROG_AWK])dnl
...
...
@@ -9211,35 +9201,28 @@ _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
[_AM_PROG_TAR([v7])])])
_AM_IF_OPTION([no-dependencies],,
[AC_PROVIDE_IFELSE([AC_PROG_CC],
[_AM_DEPENDENCIES(
[
CC
]
)],
[
m4_
define([AC_PROG_CC],
m4_
defn([AC_PROG_CC])[_AM_DEPENDENCIES(
[
CC
]
)])])dnl
[_AM_DEPENDENCIES(CC)],
[define([AC_PROG_CC],
defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
AC_PROVIDE_IFELSE([AC_PROG_CXX],
[_AM_DEPENDENCIES(
[
CXX
]
)],
[
m4_
define([AC_PROG_CXX],
m4_
defn([AC_PROG_CXX])[_AM_DEPENDENCIES(
[
CXX
]
)])])dnl
[_AM_DEPENDENCIES(CXX)],
[define([AC_PROG_CXX],
defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
[_AM_DEPENDENCIES([OBJC])],
[m4_define([AC_PROG_OBJC],
m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
dnl Support for Objective C++ was only introduced in Autoconf 2.65,
dnl but we still cater to Autoconf 2.62.
m4_ifdef([AC_PROG_OBJCXX],
[AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
[_AM_DEPENDENCIES([OBJCXX])],
[m4_define([AC_PROG_OBJCXX],
m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])])dnl
[_AM_DEPENDENCIES(OBJC)],
[define([AC_PROG_OBJC],
defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
])
_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
dnl The
'
parallel-tests' driver may need to know about EXEEXT, so add the
dnl
'
am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
dnl The
`
parallel-tests' driver may need to know about EXEEXT, so add the
dnl
`
am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
AC_CONFIG_COMMANDS_PRE(dnl
[m4_provide_if([_AM_COMPILER_EXEEXT],
[AM_CONDITIONAL([am__EXEEXT], [test -n "
$
EXEEXT
"])])])dnl
])
dnl Hook into
'
_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
dnl Hook into
`
_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
dnl mangled by Autoconf and run in a shell conditional statement.
m4_define([_AC_COMPILER_EXEEXT],
...
...
@@ -9267,13 +9250,14 @@ for _am_header in $config_headers :; do
done
echo "
timestamp
for
$
_am_arg
" >`AS_DIRNAME(["
$
_am_arg
"])`/stamp-h[]$_am_stamp_count])
# Copyright (C) 2001-2012 Free Software Foundation, Inc.
# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation,
# Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# serial
8
# serial
1
# AM_PROG_INSTALL_SH
# ------------------
...
...
@@ -9288,9 +9272,9 @@ if test x"${install_sh}" != xset; then
install_sh="
\${
SHELL
}
$
am_aux_dir
/
install
-
sh
"
esac
fi
AC_SUBST(
[
install_sh
]
)])
AC_SUBST(install_sh)])
# Copyright (C) 2003
-2012
Free Software Foundation, Inc.
# Copyright (C) 2003
, 2005
Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
...
...
@@ -9313,13 +9297,13 @@ AC_SUBST([am__leading_dot])])
# Check to see how 'make' treats includes. -*- Autoconf -*-
# Copyright (C) 2001
-2012
Free Software Foundation, Inc.
# Copyright (C) 2001
, 2002, 2003, 2005, 2009
Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# serial
5
# serial
4
# AM_MAKE_INCLUDE()
# -----------------
...
...
@@ -9338,7 +9322,7 @@ am__quote=
_am_result=none
# First try GNU make style include.
echo "
include
confinc
" > confmf
# Ignore all kinds of additional output from
'
make'.
# Ignore all kinds of additional output from
`
make'.
case `$am_make -s -f confmf 2> /dev/null` in #(
*the\ am__doit\ target*)
am__include=include
...
...
@@ -9365,13 +9349,14 @@ rm -f confinc confmf
#
Fake
the
existence
of
programs
that
GNU
maintainers
use
.
-*-
Autoconf
-*-
#
Copyright
(
C
)
1997
-
2012
Free
Software
Foundation
,
Inc
.
#
Copyright
(
C
)
1997
,
1999
,
2000
,
2001
,
2003
,
2004
,
2005
,
2008
#
Free
Software
Foundation
,
Inc
.
#
#
This
file
is
free
software
;
the
Free
Software
Foundation
#
gives
unlimited
permission
to
copy
and
/
or
distribute
it
,
#
with
or
without
modifications
,
as
long
as
this
notice
is
preserved
.
#
serial
7
#
serial
6
#
AM_MISSING_PROG
(
NAME
,
PROGRAM
)
#
------------------------------
...
...
@@ -9401,19 +9386,49 @@ if eval "$MISSING --run true"; then
am_missing_run
=
"$MISSING --run "
else
am_missing_run
=
AC_MSG_WARN
([
'
missing'
script
is
too
old
or
missing
])
AC_MSG_WARN
([
`
missing
' script is too old or missing])
fi
])
# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation,
# Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# serial 1
# AM_PROG_MKDIR_P
# ---------------
# Check for `mkdir -p'
.
AC_DEFUN
([
AM_PROG_MKDIR_P
],
[
AC_PREREQ
([
2.60
])
dnl
AC_REQUIRE
([
AC_PROG_MKDIR_P
])
dnl
dnl
Automake
1.8
to
1.9.6
used
to
define
mkdir_p
.
We
now
use
MKDIR_P
,
dnl
while
keeping
a
definition
of
mkdir_p
for
backward
compatibility
.
dnl
@
MKDIR_P
@
is
magic
:
AC_OUTPUT
adjusts
its
value
for
each
Makefile
.
dnl
However
we
cannot
define
mkdir_p
as
$(
MKDIR_P
)
for
the
sake
of
dnl
Makefile
.
ins
that
do
not
define
MKDIR_P
,
so
we
do
our
own
dnl
adjustment
using
top_builddir
(
which
is
defined
more
often
than
dnl
MKDIR_P
).
AC_SUBST
([
mkdir_p
],
[
"$MKDIR_P"
])
dnl
case
$
mkdir_p
in
[[\\/$]]*
|
?:[[\\/]]*)
;;
*/*)
mkdir_p
=
"\$(top_builddir)/$mkdir_p"
;;
esac
])
#
Helper
functions
for
option
handling
.
-*-
Autoconf
-*-
#
Copyright
(
C
)
2001
-
2012
Free
Software
Foundation
,
Inc
.
#
Copyright
(
C
)
2001
,
2002
,
2003
,
2005
,
2008
,
2010
Free
Software
#
Foundation
,
Inc
.
#
#
This
file
is
free
software
;
the
Free
Software
Foundation
#
gives
unlimited
permission
to
copy
and
/
or
distribute
it
,
#
with
or
without
modifications
,
as
long
as
this
notice
is
preserved
.
#
serial
6
#
serial
5
#
_AM_MANGLE_OPTION
(
NAME
)
#
-----------------------
...
...
@@ -9424,7 +9439,7 @@ AC_DEFUN([_AM_MANGLE_OPTION],
#
--------------------
#
Set
option
NAME
.
Presently
that
only
means
defining
a
flag
for
this
option
.
AC_DEFUN
([
_AM_SET_OPTION
],
[
m4_define
(
_AM_MANGLE_OPTION
([$
1
]),
[
1
]
)])
[
m4_define
(
_AM_MANGLE_OPTION
([$
1
]),
1
)])
#
_AM_SET_OPTIONS
(
OPTIONS
)
#
------------------------
...
...
@@ -9440,18 +9455,22 @@ AC_DEFUN([_AM_IF_OPTION],
#
Check
to
make
sure
that
the
build
environment
is
sane
.
-*-
Autoconf
-*-
#
Copyright
(
C
)
1996
-
2012
Free
Software
Foundation
,
Inc
.
#
Copyright
(
C
)
1996
,
1997
,
2000
,
2001
,
2003
,
2005
,
2008
#
Free
Software
Foundation
,
Inc
.
#
#
This
file
is
free
software
;
the
Free
Software
Foundation
#
gives
unlimited
permission
to
copy
and
/
or
distribute
it
,
#
with
or
without
modifications
,
as
long
as
this
notice
is
preserved
.
#
serial
9
#
serial
5
#
AM_SANITY_CHECK
#
---------------
AC_DEFUN
([
AM_SANITY_CHECK
],
[
AC_MSG_CHECKING
([
whether
build
environment
is
sane
])
#
Just
in
case
sleep
1
echo
timestamp
>
conftest
.
file
#
Reject
unsafe
characters
in
$
srcdir
or
the
absolute
working
directory
#
name
.
Accept
space
and
tab
only
in
the
latter
.
am_lf
=
'
...
...
@@ -9462,40 +9481,32 @@ case `pwd` in
esac
case $srcdir in
*[[
\\\"
\#\$\&\'\`$am_lf\ \ ]]*)
AC_MSG_ERROR([unsafe srcdir value:
'
$srcdir']);;
AC_MSG_ERROR([unsafe srcdir value:
`
$srcdir']);;
esac
# Do
'
set' in a subshell so we don't clobber the current shell's
# Do
`
set' in a subshell so we don't clobber the current shell's
# arguments. Must try -L first in case configure is actually a
# symlink; some systems play weird games with the mod time of symlinks
# (eg FreeBSD returns the mod time of the symlink's containing
# directory).
if (
am_has_slept=no
for am_try in 1 2; do
echo "
timestamp
,
slept
:
$
am_has_slept
" > conftest.file
set X `ls -Lt "
$
srcdir
/
configure
" conftest.file 2> /dev/null`
if test "
$[*]
" = "
X
"; then
# -L didn't work.
set X `ls -t "
$
srcdir
/
configure
" conftest.file`
fi
if test "
$[*]
" != "
X
$
srcdir
/
configure
conftest
.
file
" \
&& test "
$[*]
" != "
X
conftest
.
file
$
srcdir
/
configure
"; then
# If neither matched, then we have a broken ls. This can happen
# if, for instance, CONFIG_SHELL is bash and it inherits a
# broken ls alias from the environment. This has actually
# happened. Such a system could not be considered "
sane
".
AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
alias in your environment])
fi
if test "
$[
2
]
" = conftest.file || test $am_try -eq 2; then
break
fi
# Just in case.
sleep 1
am_has_slept=yes
done
set X `ls -Lt "
$
srcdir
/
configure
" conftest.file 2> /dev/null`
if test "
$[*]
" = "
X
"; then
# -L didn't work.
set X `ls -t "
$
srcdir
/
configure
" conftest.file`
fi
rm -f conftest.file
if test "
$[*]
" != "
X
$
srcdir
/
configure
conftest
.
file
" \
&& test "
$[*]
" != "
X
conftest
.
file
$
srcdir
/
configure
"; then
# If neither matched, then we have a broken ls. This can happen
# if, for instance, CONFIG_SHELL is bash and it inherits a
# broken ls alias from the environment. This has actually
# happened. Such a system could not be considered "
sane
".
AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
alias in your environment])
fi
test "
$[
2
]
" = conftest.file
)
then
...
...
@@ -9505,55 +9516,39 @@ else
AC_MSG_ERROR([newly created file is older than distributed files!
Check your system clock])
fi
AC_MSG_RESULT([yes])
# If we didn't sleep, we still need to ensure time stamps of config.status and
# generated files are strictly newer.
am_sleep_pid=
if grep 'slept: no' conftest.file >/dev/null 2>&1; then
( sleep 1 ) &
am_sleep_pid=$!
fi
AC_CONFIG_COMMANDS_PRE(
[AC_MSG_CHECKING([that generated files are newer than configure])
if test -n "
$
am_sleep_pid
"; then
# Hide warnings about reused PIDs.
wait $am_sleep_pid 2>/dev/null
fi
AC_MSG_RESULT([done])])
rm -f conftest.file
])
AC_MSG_RESULT(yes)])
# Copyright (C) 2001
-
201
2
Free Software Foundation, Inc.
# Copyright (C) 2001
, 2003, 2005,
201
1
Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# serial
2
# serial
1
# AM_PROG_INSTALL_STRIP
# ---------------------
# One issue with vendor
'
install' (even GNU) is that you can't
# One issue with vendor
`
install' (even GNU) is that you can't
# specify the program used to strip binaries. This is especially
# annoying in cross-compiling environments, where the build's strip
# is unlikely to handle the host's binaries.
# Fortunately install-sh will honor a STRIPPROG variable, so we
# always use install-sh in
"
make
install
-
strip
"
, and initialize
# always use install-sh in
`
make install-strip
'
, and initialize
# STRIPPROG with the value of the STRIP variable (set by the user).
AC_DEFUN([AM_PROG_INSTALL_STRIP],
[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
# Installed binaries are usually stripped using
'
strip' when the user
# run
"
make
install
-
strip
"
. However
'
strip' might not be the right
# Installed binaries are usually stripped using
`
strip' when the user
# run
`
make install-strip
'
. However
`
strip' might not be the right
# tool to use in cross-compilation environments, therefore Automake
# will honor the
'
STRIP' environment variable to overrule this program.
dnl Don't test for $cross_compiling = yes, because it might be
'
maybe'.
# will honor the
`
STRIP' environment variable to overrule this program.
dnl Don't test for $cross_compiling = yes, because it might be
`
maybe'.
if test "
$
cross_compiling
" != no; then
AC_CHECK_TOOL([STRIP], [strip], :)
fi
INSTALL_STRIP_PROGRAM="
\$(
install_sh
)
-
c
-
s
"
AC_SUBST([INSTALL_STRIP_PROGRAM])])
# Copyright (C) 2006
-
201
2
Free Software Foundation, Inc.
# Copyright (C) 2006
, 2008,
201
0
Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
...
...
@@ -9574,18 +9569,18 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
# Check how to create a tarball. -*- Autoconf -*-
# Copyright (C) 2004
-
2012 Free Software Foundation, Inc.
# Copyright (C) 2004
, 2005,
2012 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# serial
3
# serial
2
# _AM_PROG_TAR(FORMAT)
# --------------------
# Check how to create a tarball in format FORMAT.
# FORMAT should be one of
'
v7',
'
ustar', or
'
pax'.
# FORMAT should be one of
`
v7',
`
ustar', or
`
pax'.
#
# Substitute a variable $(am__tar) that is a command
# writing to stdout a FORMAT-tarball containing the directory
...
...
@@ -9608,7 +9603,7 @@ AC_MSG_CHECKING([how to create a $1 tar archive])
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
# Do not fold the above two line into one, because Tru64 sh and
# Solaris sh will not grok spaces in the rhs of
'
-'.
# Solaris sh will not grok spaces in the rhs of
`
-'.
for _am_tool in $_am_tools
do
case $_am_tool in
...
...
configure
View file @
22c7e544
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for sextractor 2.19.
1
.
# Generated by GNU Autoconf 2.69 for sextractor 2.19.
2
.
#
# Report bugs to <bertin@iap.fr>.
#
...
...
@@ -590,8 +590,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME
=
'sextractor'
PACKAGE_TARNAME
=
'sextractor'
PACKAGE_VERSION
=
'2.19.
1
'
PACKAGE_STRING
=
'sextractor 2.19.
1
'
PACKAGE_VERSION
=
'2.19.
2
'
PACKAGE_STRING
=
'sextractor 2.19.
2
'
PACKAGE_BUGREPORT
=
'bertin@iap.fr'
PACKAGE_URL
=
''
...
...
@@ -1345,7 +1345,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat
<<
_ACEOF
\`
configure' configures sextractor 2.19.
1
to adapt to many kinds of systems.
\`
configure' configures sextractor 2.19.
2
to adapt to many kinds of systems.
Usage:
$0
[OPTION]... [VAR=VALUE]...
...
...
@@ -1415,7 +1415,7 @@ fi
if
test
-n
"
$ac_init_help
"
;
then
case
$ac_init_help
in
short
|
recursive
)
echo
"Configuration of sextractor 2.19.
1
:"
;;
short
|
recursive
)
echo
"Configuration of sextractor 2.19.
2
:"
;;
esac
cat
<<
\
_ACEOF
...
...
@@ -1429,18 +1429,16 @@ Optional Features:
compiler (off by default)
--enable-mkl Use INTEL's MKL for solvers and FFTs (off by
default)
--enable-dependency-tracking
do not reject slow dependency extractors
--disable-dependency-tracking
speeds up one-time build
--disable-dependency-tracking speeds up one-time build
--enable-dependency-tracking do not reject slow dependency extractors
--enable-shared[=PKGS] build shared libraries [default=yes]
--enable-static[=PKGS] build static libraries [default=yes]
--enable-fast-install[=PKGS]
optimize for fast installation [default=yes]
--disable-libtool-lock avoid locking (might break parallel builds)
--disable-largefile omit support for large files
--
dis
able-model-fitting
Dis
able model-fitting and library dependencies
(
enabled by
default)
--
en
able-model-fitting
En
able model-fitting and library dependencies
(default
= yes
)
--enable-threads[=<max_number_of_threads>]
Enable multhreading (on with up to 16 threads by
default)
...
...
@@ -1549,7 +1547,7 @@ fi
test
-n
"
$ac_init_help
"
&&
exit
$ac_status
if
$ac_init_version
;
then
cat
<<
\
_ACEOF
sextractor configure 2.19.
1
sextractor configure 2.19.
2
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
...
...
@@ -1972,7 +1970,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by sextractor
$as_me
2.19.
1
, which was
It was created by sextractor
$as_me
2.19.
2
, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0
$@
...
...
@@ -2339,7 +2337,7 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
ac_config_headers
=
"
$ac_config_headers
config.h"
am__api_version
=
'1.1
2
'
am__api_version
=
'1.1
1
'
# Find a good install program. We prefer a C program (faster),
# so one script is as good as another. But avoid the broken or
...
...
@@ -2436,6 +2434,9 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking whether build environment is sane"
>
&5
$as_echo_n
"checking whether build environment is sane... "
>
&6
;
}
# Just in case
sleep
1
echo
timestamp
>
conftest.file
# Reject unsafe characters in $srcdir or the absolute working directory
# name. Accept space and tab only in the latter.
am_lf
=
'
...
...
@@ -2446,40 +2447,32 @@ case `pwd` in
esac
case
$srcdir
in
*
[
\\\"\#\$\&\'\`
$am_lf
\ \
]
*
)
as_fn_error
$?
"unsafe srcdir value:
'
$srcdir
'"
"
$LINENO
"
5
;;
as_fn_error
$?
"unsafe srcdir value:
\`
$srcdir
'"
"
$LINENO
"
5
;;
esac
# Do
'
set' in a subshell so we don't clobber the current shell's
# Do
`
set' in a subshell so we don't clobber the current shell's
# arguments. Must try -L first in case configure is actually a
# symlink; some systems play weird games with the mod time of symlinks
# (eg FreeBSD returns the mod time of the symlink's containing
# directory).
if
(
am_has_slept
=
no
for
am_try
in
1 2
;
do
echo
"timestamp, slept:
$am_has_slept
"
>
conftest.file
set
X
`
ls
-Lt
"
$srcdir
/configure"
conftest.file 2> /dev/null
`
if
test
"
$*
"
=
"X"
;
then
# -L didn't work.
set
X
`
ls
-t
"
$srcdir
/configure"
conftest.file
`
fi
if
test
"
$*
"
!=
"X
$srcdir
/configure conftest.file"
\
&&
test
"
$*
"
!=
"X conftest.file
$srcdir
/configure"
;
then
# If neither matched, then we have a broken ls. This can happen
# if, for instance, CONFIG_SHELL is bash and it inherits a
# broken ls alias from the environment. This has actually
# happened. Such a system could not be considered "sane".
as_fn_error
$?
"ls -t appears to fail. Make sure there is not a broken
alias in your environment"
"
$LINENO
"
5
fi
if
test
"
$2
"
=
conftest.file
||
test
$am_try
-eq
2
;
then
break
fi
# Just in case.
sleep
1
am_has_slept
=
yes
done
set
X
`
ls
-Lt
"
$srcdir
/configure"
conftest.file 2> /dev/null
`
if
test
"
$*
"
=
"X"
;
then
# -L didn't work.
set
X
`
ls
-t
"
$srcdir
/configure"
conftest.file
`
fi
rm
-f
conftest.file
if
test
"
$*
"
!=
"X
$srcdir
/configure conftest.file"
\
&&
test
"
$*
"
!=
"X conftest.file
$srcdir
/configure"
;
then
# If neither matched, then we have a broken ls. This can happen
# if, for instance, CONFIG_SHELL is bash and it inherits a
# broken ls alias from the environment. This has actually
# happened. Such a system could not be considered "sane".
as_fn_error
$?
"ls -t appears to fail. Make sure there is not a broken
alias in your environment"
"
$LINENO
"
5
fi
test
"
$2
"
=
conftest.file
)
then
...
...
@@ -2491,16 +2484,6 @@ Check your system clock" "$LINENO" 5
fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: yes"
>
&5
$as_echo
"yes"
>
&6
;
}
# If we didn't sleep, we still need to ensure time stamps of config.status and
# generated files are strictly newer.
am_sleep_pid
=
if
grep
'slept: no'
conftest.file
>
/dev/null 2>&1
;
then
(
sleep
1
)
&
am_sleep_pid
=
$!
fi
rm
-f
conftest.file
test
"
$program_prefix
"
!=
NONE
&&
program_transform_name
=
"s&^&
$program_prefix
&;
$program_transform_name
"
# Use a double $ so make ignores it.
...
...
@@ -2527,8 +2510,8 @@ if eval "$MISSING --run true"; then
am_missing_run
=
"
$MISSING
--run "
else
am_missing_run
=
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: WARNING:
'
missing' script is too old or missing"
>
&5
$as_echo
"
$as_me
: WARNING:
'
missing' script is too old or missing"
>
&2
;
}
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: WARNING:
\`
missing' script is too old or missing"
>
&5
$as_echo
"
$as_me
: WARNING:
\`
missing' script is too old or missing"
>
&2
;
}
fi
if
test
x
"
${
install_sh
}
"
!=
xset
;
then
...
...
@@ -2540,10 +2523,10 @@ if test x"${install_sh}" != xset; then
esac
fi
# Installed binaries are usually stripped using
'
strip' when the user
# run
"
make install-strip
"
. However
'
strip' might not be the right
# Installed binaries are usually stripped using
`
strip' when the user
# run
`
make install-strip
'
. However
`
strip' might not be the right
# tool to use in cross-compilation environments, therefore Automake
# will honor the
'
STRIP' environment variable to overrule this program.
# will honor the
`
STRIP' environment variable to overrule this program.
if
test
"
$cross_compiling
"
!=
no
;
then
if
test
-n
"
$ac_tool_prefix
"
;
then
# Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
...
...
@@ -2682,6 +2665,12 @@ fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$MKDIR_P
"
>
&5
$as_echo
"
$MKDIR_P
"
>
&6
;
}
mkdir_p
=
"
$MKDIR_P
"
case
$mkdir_p
in
[
\\
/
$]
*
|
?:[
\\
/]
*
)
;;
*
/
*
)
mkdir_p
=
"
\$
(top_builddir)/
$mkdir_p
"
;;
esac
for
ac_prog
in
gawk mawk nawk
awk
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
...
...
@@ -2786,7 +2775,7 @@ fi
# Define the identity of the package.
PACKAGE
=
'sextractor'
VERSION
=
'2.19.
1
'
VERSION
=
'2.19.
2
'
cat
>>
confdefs.h
<<
_ACEOF
...
...
@@ -2814,12 +2803,6 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
MAKEINFO
=
${
MAKEINFO
-
"
${
am_missing_run
}
makeinfo"
}
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
mkdir_p
=
'$(MKDIR_P)'
# We need awk for the "check" target. The system "awk" is bad on
# some platforms.
# Always define AMTAR for backward compatibility. Yes, it's still used
...
...
@@ -2951,7 +2934,7 @@ am__quote=
_am_result
=
none
# First try GNU make style include.
echo
"include confinc"
>
confmf
# Ignore all kinds of additional output from
'
make'.
# Ignore all kinds of additional output from
`
make'.
case
`
$am_make
-s
-f
confmf 2> /dev/null
`
in
#(
*
the
\
am__doit
\
target
*
)
am__include
=
include
...
...
@@ -3795,8 +3778,8 @@ else
# We make a subdir and do the tests there. Otherwise we can end up
# making bogus files that we don't know about and never remove. For
# instance it was reported that on HP-UX the gcc test will end up
# making a dummy file named
'
D' -- because
'
-MD' means
"
put the output
# in D
"
.
# making a dummy file named
`
D' -- because
`
-MD' means
`
put the output
# in D
'
.
rm
-rf
conftest.dir
mkdir
conftest.dir
# Copy depcomp to subdir because otherwise we won't find it if we're
...
...
@@ -3831,16 +3814,16 @@ else
:
>
sub/conftest.c
for
i
in
1 2 3 4 5 6
;
do
echo
'#include "conftst'
$i
'.h"'
>>
sub/conftest.c
# Using
"
: > sub/conftst$i.h
"
creates only sub/conftst1.h with
# Solaris
10
/bin/sh.
echo
'/* dummy */'
>
sub/conftst
$i
.h
# Using
`
: > sub/conftst$i.h
'
creates only sub/conftst1.h with
# Solaris
8's {/usr,}
/bin/sh.
touch
sub/conftst
$i
.h
done
echo
"
${
am__include
}
${
am__quote
}
sub/conftest.Po
${
am__quote
}
"
>
confmf
# We check with
'
-c' and
'
-o' for the sake of the "dashmstdout"
# We check with
`
-c' and
`
-o' for the sake of the "dashmstdout"
# mode. It turns out that the SunPro C++ compiler does not properly
# handle
'
-M -o', and we need to detect this. Also, some Intel
# versions had trouble with output in subdirs
.
# handle
`
-M -o', and we need to detect this. Also, some Intel
# versions had trouble with output in subdirs
am__obj
=
sub/conftest.
${
OBJEXT
-o
}
am__minus_obj
=
"-o
$am__obj
"
case
$depmode
in
...
...
@@ -3849,8 +3832,8 @@ else
test
"
$am__universal
"
=
false
||
continue
;;
nosideeffect
)
#
A
fter this tag, mechanisms are not by side-effect, so they'll
# only be used when explicitly requested
.
#
a
fter this tag, mechanisms are not by side-effect, so they'll
# only be used when explicitly requested
if
test
"x
$enable_dependency_tracking
"
=
xyes
;
then
continue
else
...
...
@@ -3858,7 +3841,7 @@ else
fi
;;
msvc7
|
msvc7msys
|
msvisualcpp
|
msvcmsys
)
# This compiler won't grok
'
-c -o', but also, the minuso test has
# This compiler won't grok
`
-c -o', but also, the minuso test has
# not run yet. These depmodes are late enough in the game, and
# so weak that their functioning should not be impacted.
am__obj
=
conftest.
${
OBJEXT
-o
}
...
...
@@ -5347,10 +5330,6 @@ freebsd* | dragonfly*)
fi
;;
gnu
*
)
lt_cv_deplibs_check_method
=
pass_all
;;
haiku
*
)
lt_cv_deplibs_check_method
=
pass_all
;;
...
...
@@ -5389,11 +5368,11 @@ irix5* | irix6* | nonstopux*)
;;
# This must be glibc/ELF.
linux
*
|
k
*
bsd
*
-gnu
|
kopensolaris
*
-gnu
)
linux
*
|
k
*
bsd
*
-gnu
|
kopensolaris
*
-gnu
|
gnu
*
)
lt_cv_deplibs_check_method
=
pass_all
;;
netbsd
*
)
netbsd
*
|
netbsdelf
*
-gnu
)
if
echo
__ELF__ |
$CC
-E
- |
$GREP
__ELF__
>
/dev/null
;
then
lt_cv_deplibs_check_method
=
'match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
else
...
...
@@ -8311,7 +8290,7 @@ lt_prog_compiler_static=
lt_prog_compiler_static
=
'-non_shared'
;;
linux
*
|
k
*
bsd
*
-gnu
|
kopensolaris
*
-gnu
)
linux
*
|
k
*
bsd
*
-gnu
|
kopensolaris
*
-gnu
|
gnu
*
)
case
$cc_basename
in
# old Intel for x86_64 which still supported -KPIC.
ecc
*
)
...
...
@@ -8789,6 +8768,9 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie
openbsd
*
)
with_gnu_ld
=
no
;;
linux
*
|
k
*
bsd
*
-gnu
|
gnu
*
)
link_all_deplibs
=
no
;;
esac
ld_shlibs
=
yes
...
...
@@ -9010,7 +8992,7 @@ _LT_EOF
fi
;;
netbsd
*
)
netbsd
*
|
netbsdelf
*
-gnu
)
if
echo
__ELF__ |
$CC
-E
- |
$GREP
__ELF__
>
/dev/null
;
then
archive_cmds
=
'$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
wlarc
=
...
...
@@ -9187,6 +9169,7 @@ _LT_EOF
if
test
"
$aix_use_runtimelinking
"
=
yes
;
then
shared_flag
=
"
$shared_flag
"
'${wl}-G'
fi
link_all_deplibs
=
no
else
# not using gcc
if
test
"
$host_cpu
"
=
ia64
;
then
...
...
@@ -9640,7 +9623,7 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; }
link_all_deplibs
=
yes
;;
netbsd
*
)
netbsd
*
|
netbsdelf
*
-gnu
)
if
echo
__ELF__ |
$CC
-E
- |
$GREP
__ELF__
>
/dev/null
;
then
archive_cmds
=
'$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
# a.out
else
...
...
@@ -10477,17 +10460,6 @@ freebsd* | dragonfly*)
esac
;;
gnu
*
)
version_type
=
linux
# correct to gnu/linux during the next big refactor
need_lib_prefix
=
no
need_version
=
no
library_names_spec
=
'${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
soname_spec
=
'${libname}${release}${shared_ext}$major'
shlibpath_var
=
LD_LIBRARY_PATH
shlibpath_overrides_runpath
=
no
hardcode_into_libs
=
yes
;;
haiku
*
)
version_type
=
linux
# correct to gnu/linux during the next big refactor
need_lib_prefix
=
no
...
...
@@ -10604,7 +10576,7 @@ linux*oldld* | linux*aout* | linux*coff*)
;;
# This must be glibc/ELF.
linux
*
|
k
*
bsd
*
-gnu
|
kopensolaris
*
-gnu
)
linux
*
|
k
*
bsd
*
-gnu
|
kopensolaris
*
-gnu
|
gnu
*
)
version_type
=
linux
# correct to gnu/linux during the next big refactor
need_lib_prefix
=
no
need_version
=
no
...
...
@@ -10653,14 +10625,10 @@ fi
# before this can be enabled.
hardcode_into_libs
=
yes
# Add ABI-specific directories to the system library path.
sys_lib_dlsearch_path_spec
=
"/lib64 /usr/lib64 /lib /usr/lib"
# Append ld.so.conf contents to the search path
if
test
-f
/etc/ld.so.conf
;
then
lt_ld_extra
=
`
awk
'/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }'
< /etc/ld.so.conf |
$SED
-e
's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d'
|
tr
'\n'
' '
`
sys_lib_dlsearch_path_spec
=
"
$sys_lib_dlsearch_path_spec
$lt_ld_extra
"
sys_lib_dlsearch_path_spec
=
"/lib /usr/lib
$lt_ld_extra
"
fi
# We used to test for /lib/ld.so.1 and disable shared libraries on
...
...
@@ -10672,6 +10640,18 @@ fi
dynamic_linker
=
'GNU/Linux ld.so'
;;
netbsdelf
*
-gnu
)
version_type
=
linux
need_lib_prefix
=
no
need_version
=
no
library_names_spec
=
'${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
soname_spec
=
'${libname}${release}${shared_ext}$major'
shlibpath_var
=
LD_LIBRARY_PATH
shlibpath_overrides_runpath
=
no
hardcode_into_libs
=
yes
dynamic_linker
=
'NetBSD ld.elf_so'
;;
netbsd
*
)
version_type
=
sunos
need_lib_prefix
=
no
...
...
@@ -12946,18 +12926,15 @@ _ACEOF
# Provide special option to disable model-fitting (enabled by default)
enable_model_fitting
=
"yes"
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking if model-fitting should be disabled"
>
&5
$as_echo_n
"checking if model-fitting should be disabled... "
>
&6
;
}
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking if model-fitting should be enabled"
>
&5
$as_echo_n
"checking if model-fitting should be enabled... "
>
&6
;
}
# Check whether --enable-model-fitting was given.
if
test
"
${
enable_model_fitting
+set
}
"
=
set
;
then
:
enableval
=
$enable_model_fitting
;
if
test
"
$enable_model_fitting
"
=
"no"
;
then
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: yes"
>
&5
enableval
=
$enable_model_fitting
;
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: yes"
>
&5
$as_echo
"yes"
>
&6
;
}
else
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: no"
>
&5
else
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: no"
>
&5
$as_echo
"no"
>
&6
;
}
fi
fi
...
...
@@ -15276,14 +15253,6 @@ LIBOBJS=$ac_libobjs
LTLIBOBJS
=
$ac_ltlibobjs
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking that generated files are newer than configure"
>
&5
$as_echo_n
"checking that generated files are newer than configure... "
>
&6
;
}
if
test
-n
"
$am_sleep_pid
"
;
then
# Hide warnings about reused PIDs.
wait
$am_sleep_pid
2>/dev/null
fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: done"
>
&5
$as_echo
"done"
>
&6
;
}
if
test
-n
"
$EXEEXT
"
;
then
am__EXEEXT_TRUE
=
am__EXEEXT_FALSE
=
'#'
...
...
@@ -15705,7 +15674,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by sextractor
$as_me
2.19.
1
, which was
This file was extended by sextractor
$as_me
2.19.
2
, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES =
$CONFIG_FILES
...
...
@@ -15771,7 +15740,7 @@ _ACEOF
cat
>>
$CONFIG_STATUS
<<
_ACEOF
|| ac_write_fail=1
ac_cs_config="`
$as_echo
"
$ac_configure_args
" | sed 's/^ //; s/[
\\
""
\`\$
]/
\\\\
&/g'`"
ac_cs_version="
\\
sextractor config.status 2.19.
1
sextractor config.status 2.19.
2
configured by
$0
, generated by GNU Autoconf 2.69,
with options
\\
"
\$
ac_cs_config
\\
"
...
...
@@ -16798,7 +16767,7 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
# Strip MF so we end up with the name of the file.
mf=`echo "
$mf
" | sed -e 's/:.*
$/
/'`
# Check whether this is an Automake generated Makefile or not.
# We used to match only the files named
'
Makefile.in', but
# We used to match only the files named
`
Makefile.in', but
# some people rename them; so instead we look at the file content.
# Grep'ing the first line is not enough: some people post-process
# each Makefile.in and add a new line on top of each file to say so.
...
...
@@ -16832,19 +16801,21 @@ $as_echo X"$mf" |
continue
fi
# Extract the definition of DEPDIR, am__include, and am__quote
# from the Makefile without running
'
make'.
# from the Makefile without running
`
make'.
DEPDIR=`sed -n 's/^DEPDIR = //p' < "
$mf
"`
test -z "
$DEPDIR
" && continue
am__include=`sed -n 's/^am__include = //p' < "
$mf
"`
test -z "am__include" && continue
am__quote=`sed -n 's/^am__quote = //p' < "
$mf
"`
# When using ansi2knr, U may be empty or an underscore; expand it
U=`sed -n 's/^U = //p' < "
$mf
"`
# Find all dependency output files, they are included files with
#
$(
DEPDIR
)
in their names. We invoke sed twice because it is the
# simplest approach to changing
$(
DEPDIR
)
to its actual value in the
# expansion.
for file in `sed -n "
s/^
$am__include
$am__quote
\(
.*(DEPDIR).*
\)
$am__quote
"'
$/
\1
/p' <"
$mf
" |
\
sed -e 's/
\$
(DEPDIR)/'"
$DEPDIR
"'/g'`; do
sed -e 's/
\$
(DEPDIR)/'"
$DEPDIR
"'/g'
-e 's/
\$
U/'"
$U
"'/g'
`; do
# Make sure the directory exists.
test -f "
$dirpart
/
$file
" && continue
fdir=`
$as_dirname
-- "
$file
" ||
...
...
configure.ac
View file @
22c7e544
...
...
@@ -22,7 +22,7 @@
# You should have received a copy of the GNU General Public License
# along with SExtractor. If not, see <http://www.gnu.org/licenses/>.
#
# Last modified: 17/0
7
/2013
# Last modified: 17/0
8
/2013
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
...
...
@@ -31,7 +31,7 @@ define([AC_CACHE_LOAD],)
define([AC_CACHE_SAVE],)
# This is your standard Bertin source code...
AC_INIT(sextractor, 2.19.
1
, [bertin@iap.fr])
AC_INIT(sextractor, 2.19.
2
, [bertin@iap.fr])
AC_CONFIG_SRCDIR(src/makeit.c)
AC_CONFIG_AUX_DIR(autoconf)
AC_CONFIG_HEADERS(config.h)
...
...
@@ -161,16 +161,12 @@ AC_ARG_WITH(xsl_url,
AC_DEFINE_UNQUOTED([XSL_URL], "$with_xsl_url",[Default URL of the XSLT filter])
# Provide special option to disable model-fitting (enabled by default)
enable_model_fitting="yes"
AC_MSG_CHECKING([if model-fitting should be disabled])
AC_MSG_CHECKING([if model-fitting should be enabled])
AC_ARG_ENABLE([model-fitting],
[AS_HELP_STRING([--disable-model-fitting],
[Disable model-fitting and library dependencies (enabled by default)])],
if test "$enable_model_fitting" = "no"; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi)
[AS_HELP_STRING([--enable-model-fitting],
[Enable model-fitting and library dependencies (default = yes)])],
AC_MSG_RESULT([yes]),
AC_MSG_RESULT([no]))
# Set flags for multithreading
n_pthreads=16
...
...
man/Makefile.in
View file @
22c7e544
# Makefile.in generated by automake 1.1
2.2
from Makefile.am.
# Makefile.in generated by automake 1.1
1.6
from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
# Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
...
...
@@ -79,8 +80,7 @@ build_triplet = @build@
host_triplet
=
@host@
subdir
=
man
DIST_COMMON
=
$(dist_man_MANS)
$(srcdir)
/Makefile.am
\
$(srcdir)
/Makefile.in
$(srcdir)
/sex.1.in
\
$(top_srcdir)
/autoconf/mkinstalldirs
$(srcdir)
/Makefile.in
$(srcdir)
/sex.1.in
ACLOCAL_M4
=
$(top_srcdir)
/aclocal.m4
am__aclocal_m4_deps
=
$(top_srcdir)
/acx_atlas.m4
\
$(top_srcdir)
/acx_fftw.m4
$(top_srcdir)
/acx_mkl.m4
\
...
...
@@ -402,8 +402,6 @@ TAGS:
ctags
:
CTAGS
CTAGS
:
cscope cscopelist
:
distdir
:
$(DISTFILES)
@
list
=
'
$(MANS)
'
;
if
test
-n
"
$$
list"
;
then
\
...
...
@@ -412,10 +410,10 @@ distdir: $(DISTFILES)
if
test
-f
"
$$
d
$$
p"
;
then
echo
"
$$
d
$$
p"
;
else
:
;
fi
;
done
`
;
\
if
test
-n
"
$$
list"
&&
\
grep
'ab help2man is required to generate this page'
$$
list
>
/dev/null
;
then
\
echo
"error: found man pages containing the
'
missing help2man' replacement text:"
>
&2
;
\
echo
"error: found man pages containing the
\`
missing help2man' replacement text:"
>
&2
;
\
grep
-l
'ab help2man is required to generate this page'
$$
list |
sed
's/^/ /'
>
&2
;
\
echo
" to fix them, install help2man, remove and regenerate the man pages;"
>
&2
;
\
echo
" typically
'
make maintainer-clean' will remove them"
>
&2
;
\
echo
" typically
\`
make maintainer-clean' will remove them"
>
&2
;
\
exit
1
;
\
else
:
;
fi
;
\
else
:
;
fi
...
...
man/sex.1
View file @
22c7e544
.TH SEXTRACTOR "1" "
July
2013" "SExtractor 2.19.
1
" "User Commands"
.TH SEXTRACTOR "1" "
August
2013" "SExtractor 2.19.
2
" "User Commands"
.SH NAME
sex \- extract a source catalogue from an astronomical FITS image
.SH SYNOPSIS
...
...
src/Makefile.in
View file @
22c7e544
# Makefile.in generated by automake 1.1
2.2
from Makefile.am.
# Makefile.in generated by automake 1.1
1.6
from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
# Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
...
...
@@ -81,9 +82,7 @@ host_triplet = @host@
bin_PROGRAMS
=
sex
$(EXEEXT)
ldactoasc
$(EXEEXT)
check_PROGRAMS
=
sex
$(EXEEXT)
subdir
=
src
DIST_COMMON
=
$(srcdir)
/Makefile.am
$(srcdir)
/Makefile.in
\
$(top_srcdir)
/autoconf/depcomp
\
$(top_srcdir)
/autoconf/mkinstalldirs
DIST_COMMON
=
$(srcdir)
/Makefile.am
$(srcdir)
/Makefile.in
ACLOCAL_M4
=
$(top_srcdir)
/aclocal.m4
am__aclocal_m4_deps
=
$(top_srcdir)
/acx_atlas.m4
\
$(top_srcdir)
/acx_fftw.m4
$(top_srcdir)
/acx_mkl.m4
\
...
...
@@ -528,12 +527,12 @@ clean-libtool:
-
rm
-rf
.libs _libs
# This directory's subdirectories are mostly independent; you can cd
# into them and run
'
make' without going through this Makefile.
# To change the values of
'
make' variables: instead of editing Makefiles,
# (1) if the variable is set in
'
config.status', edit
'
config.status'
# (which will cause the Makefiles to be regenerated when you run
'
make');
# (2) otherwise, pass the desired values on the
'
make' command line.
$(RECURSIVE_TARGETS)
$(RECURSIVE_CLEAN_TARGETS)
:
# into them and run
`
make' without going through this Makefile.
# To change the values of
`
make' variables: instead of editing Makefiles,
# (1) if the variable is set in
`
config.status', edit
`
config.status'
# (which will cause the Makefiles to be regenerated when you run
`
make');
# (2) otherwise, pass the desired values on the
`
make' command line.
$(RECURSIVE_TARGETS)
:
@
fail
=
failcom
=
'exit 1'
;
\
for
f
in
x
$$
MAKEFLAGS
;
do
\
case
$$
f
in
\
...
...
@@ -543,11 +542,7 @@ $(RECURSIVE_TARGETS) $(RECURSIVE_CLEAN_TARGETS):
done
;
\
dot_seen
=
no
;
\
target
=
`
echo
$@
|
sed
s/-recursive//
`
;
\
case
"
$@
"
in
\
distclean-
*
|
maintainer-clean-
*
)
list
=
'
$(DIST_SUBDIRS)
'
;;
\
*
)
list
=
'
$(SUBDIRS)
'
;;
\
esac
;
\
for
subdir
in
$$
list
;
do
\
list
=
'
$(SUBDIRS)
'
;
for
subdir
in
$$
list
;
do
\
echo
"Making
$$
target in
$$
subdir"
;
\
if
test
"
$$
subdir"
=
"."
;
then
\
dot_seen
=
yes
;
\
...
...
@@ -561,6 +556,37 @@ $(RECURSIVE_TARGETS) $(RECURSIVE_CLEAN_TARGETS):
if
test
"
$$
dot_seen"
=
"no"
;
then
\
$(MAKE)
$(AM_MAKEFLAGS)
"
$$
target-am"
||
exit
1
;
\
fi
;
test
-z
"
$$
fail"
$(RECURSIVE_CLEAN_TARGETS)
:
@
fail
=
failcom
=
'exit 1'
;
\
for
f
in
x
$$
MAKEFLAGS
;
do
\
case
$$
f
in
\
*
=
*
|
--
[!
k]
*
);;
\
*
k
*
)
failcom
=
'fail=yes'
;;
\
esac
;
\
done
;
\
dot_seen
=
no
;
\
case
"
$@
"
in
\
distclean-
*
|
maintainer-clean-
*
)
list
=
'
$(DIST_SUBDIRS)
'
;;
\
*
)
list
=
'
$(SUBDIRS)
'
;;
\
esac
;
\
rev
=
''
;
for
subdir
in
$$
list
;
do
\
if
test
"
$$
subdir"
=
"."
;
then
:
;
else
\
rev
=
"
$$
subdir
$$
rev"
;
\
fi
;
\
done
;
\
rev
=
"
$$
rev ."
;
\
target
=
`
echo
$@
|
sed
s/-recursive//
`
;
\
for
subdir
in
$$
rev
;
do
\
echo
"Making
$$
target in
$$
subdir"
;
\
if
test
"
$$
subdir"
=
"."
;
then
\
local_target
=
"
$$
target-am"
;
\
else
\
local_target
=
"
$$
target"
;
\
fi
;
\
(
$(am__cd)
$$
subdir
&&
$(MAKE)
$(AM_MAKEFLAGS)
$$
local_target
)
\
||
eval
$$
failcom
;
\
done
&&
test
-z
"
$$
fail"
tags-recursive
:
list
=
'
$(SUBDIRS)
'
;
for
subdir
in
$$
list
;
do
\
test
"
$$
subdir"
=
.
||
(
$(am__cd)
$$
subdir
&&
$(MAKE)
$(AM_MAKEFLAGS)
tags
)
;
\
...
...
@@ -569,10 +595,6 @@ ctags-recursive:
list
=
'
$(SUBDIRS)
'
;
for
subdir
in
$$
list
;
do
\
test
"
$$
subdir"
=
.
||
(
$(am__cd)
$$
subdir
&&
$(MAKE)
$(AM_MAKEFLAGS)
ctags
)
;
\
done
cscopelist-recursive
:
list
=
'
$(SUBDIRS)
'
;
for
subdir
in
$$
list
;
do
\
test
"
$$
subdir"
=
.
||
(
$(am__cd)
$$
subdir
&&
$(MAKE)
$(AM_MAKEFLAGS)
cscopelist
)
;
\
done
ID
:
$(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list
=
'
$(SOURCES)
$(HEADERS)
$(LISP)
$(TAGS_FILES)
'
;
\
...
...
@@ -636,20 +658,6 @@ GTAGS:
&&
$(am__cd)
$(top_srcdir)
\
&&
gtags
-i
$(GTAGS_ARGS)
"
$$
here"
cscopelist
:
cscopelist-recursive $(HEADERS) $(SOURCES) $(LISP)
list
=
'
$(SOURCES)
$(HEADERS)
$(LISP)
'
;
\
case
"
$(srcdir)
"
in
\
[
\\
/]
*
|
?:[
\\
/]
*
)
sdir
=
"
$(srcdir)
"
;;
\
*
)
sdir
=
$(subdir)
/
$(srcdir)
;;
\
esac
;
\
for
i
in
$$
list
;
do
\
if
test
-f
"
$$
i"
;
then
\
echo
"
$(subdir)
/
$$
i"
;
\
else
\
echo
"
$$
sdir/
$$
i"
;
\
fi
;
\
done
>>
$(top_builddir)
/cscope.files
distclean-tags
:
-
rm
-f
TAGS ID GTAGS GRTAGS GSYMS GPATH tags
...
...
@@ -819,24 +827,22 @@ ps-am:
uninstall-am
:
uninstall-binPROGRAMS
.MAKE
:
$(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am
\
cscopelist-recursive ctags-recursive install-am install-strip
\
tags-recursive
ctags-recursive install-am install-strip tags-recursive
.PHONY
:
$(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS
\
all all-am check check-am clean clean-binPROGRAMS
\
clean-checkPROGRAMS clean-generic clean-libtool cscopelist
\
cscopelist-recursive ctags ctags-recursive distclean
\
distclean-compile distclean-generic distclean-libtool
\
distclean-tags distdir dvi dvi-am html html-am info info-am
\
install install-am install-binPROGRAMS install-data
\
install-data-am install-dvi install-dvi-am install-exec
\
install-exec-am install-html install-html-am install-info
\
install-info-am install-man install-pdf install-pdf-am
\
install-ps install-ps-am install-strip installcheck
\
installcheck-am installdirs installdirs-am maintainer-clean
\
maintainer-clean-generic mostlyclean mostlyclean-compile
\
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am
\
tags tags-recursive uninstall uninstall-am
\
clean-checkPROGRAMS clean-generic clean-libtool ctags
\
ctags-recursive distclean distclean-compile distclean-generic
\
distclean-libtool distclean-tags distdir dvi dvi-am html
\
html-am info info-am install install-am install-binPROGRAMS
\
install-data install-data-am install-dvi install-dvi-am
\
install-exec install-exec-am install-html install-html-am
\
install-info install-info-am install-man install-pdf
\
install-pdf-am install-ps install-ps-am install-strip
\
installcheck installcheck-am installdirs installdirs-am
\
maintainer-clean maintainer-clean-generic mostlyclean
\
mostlyclean-compile mostlyclean-generic mostlyclean-libtool
\
pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am
\
uninstall-binPROGRAMS
...
...
src/fits/Makefile.in
View file @
22c7e544
# Makefile.in generated by automake 1.1
2.2
from Makefile.am.
# Makefile.in generated by automake 1.1
1.6
from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
# Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
...
...
@@ -80,9 +81,7 @@ POST_UNINSTALL = :
build_triplet
=
@build@
host_triplet
=
@host@
subdir
=
src/fits
DIST_COMMON
=
$(srcdir)
/Makefile.am
$(srcdir)
/Makefile.in
\
$(top_srcdir)
/autoconf/depcomp
\
$(top_srcdir)
/autoconf/mkinstalldirs
DIST_COMMON
=
$(srcdir)
/Makefile.am
$(srcdir)
/Makefile.in
ACLOCAL_M4
=
$(top_srcdir)
/aclocal.m4
am__aclocal_m4_deps
=
$(top_srcdir)
/acx_atlas.m4
\
$(top_srcdir)
/acx_fftw.m4
$(top_srcdir)
/acx_mkl.m4
\
...
...
@@ -406,20 +405,6 @@ GTAGS:
&&
$(am__cd)
$(top_srcdir)
\
&&
gtags
-i
$(GTAGS_ARGS)
"
$$
here"
cscopelist
:
$(HEADERS) $(SOURCES) $(LISP)
list
=
'
$(SOURCES)
$(HEADERS)
$(LISP)
'
;
\
case
"
$(srcdir)
"
in
\
[
\\
/]
*
|
?:[
\\
/]
*
)
sdir
=
"
$(srcdir)
"
;;
\
*
)
sdir
=
$(subdir)
/
$(srcdir)
;;
\
esac
;
\
for
i
in
$$
list
;
do
\
if
test
-f
"
$$
i"
;
then
\
echo
"
$(subdir)
/
$$
i"
;
\
else
\
echo
"
$$
sdir/
$$
i"
;
\
fi
;
\
done
>>
$(top_builddir)
/cscope.files
distclean-tags
:
-
rm
-f
TAGS ID GTAGS GRTAGS GSYMS GPATH tags
...
...
@@ -561,7 +546,7 @@ uninstall-am:
.MAKE
:
install-am install-strip
.PHONY
:
CTAGS GTAGS all all-am check check-am clean clean-generic
\
clean-libtool clean-noinstLIBRARIES
cscopelist
ctags distclean
\
clean-libtool clean-noinstLIBRARIES ctags distclean
\
distclean-compile distclean-generic distclean-libtool
\
distclean-tags distdir dvi dvi-am html html-am info info-am
\
install install-am install-data install-data-am install-dvi
\
...
...
src/levmar/Makefile.in
View file @
22c7e544
# Makefile.in generated by automake 1.1
2.2
from Makefile.am.
# Makefile.in generated by automake 1.1
1.6
from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
# Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
...
...
@@ -80,9 +81,7 @@ POST_UNINSTALL = :
build_triplet
=
@build@
host_triplet
=
@host@
subdir
=
src/levmar
DIST_COMMON
=
README
$(srcdir)
/Makefile.am
$(srcdir)
/Makefile.in
\
$(top_srcdir)
/autoconf/depcomp
\
$(top_srcdir)
/autoconf/mkinstalldirs
DIST_COMMON
=
README
$(srcdir)
/Makefile.am
$(srcdir)
/Makefile.in
ACLOCAL_M4
=
$(top_srcdir)
/aclocal.m4
am__aclocal_m4_deps
=
$(top_srcdir)
/acx_atlas.m4
\
$(top_srcdir)
/acx_fftw.m4
$(top_srcdir)
/acx_mkl.m4
\
...
...
@@ -413,20 +412,6 @@ GTAGS:
&&
$(am__cd)
$(top_srcdir)
\
&&
gtags
-i
$(GTAGS_ARGS)
"
$$
here"
cscopelist
:
$(HEADERS) $(SOURCES) $(LISP)
list
=
'
$(SOURCES)
$(HEADERS)
$(LISP)
'
;
\
case
"
$(srcdir)
"
in
\
[
\\
/]
*
|
?:[
\\
/]
*
)
sdir
=
"
$(srcdir)
"
;;
\
*
)
sdir
=
$(subdir)
/
$(srcdir)
;;
\
esac
;
\
for
i
in
$$
list
;
do
\
if
test
-f
"
$$
i"
;
then
\
echo
"
$(subdir)
/
$$
i"
;
\
else
\
echo
"
$$
sdir/
$$
i"
;
\
fi
;
\
done
>>
$(top_builddir)
/cscope.files
distclean-tags
:
-
rm
-f
TAGS ID GTAGS GRTAGS GSYMS GPATH tags
...
...
@@ -568,7 +553,7 @@ uninstall-am:
.MAKE
:
install-am install-strip
.PHONY
:
CTAGS GTAGS all all-am check check-am clean clean-generic
\
clean-libtool clean-noinstLIBRARIES
cscopelist
ctags distclean
\
clean-libtool clean-noinstLIBRARIES ctags distclean
\
distclean-compile distclean-generic distclean-libtool
\
distclean-tags distdir dvi dvi-am html html-am info info-am
\
install install-am install-data install-data-am install-dvi
\
...
...
src/makeit.c
View file @
22c7e544
...
...
@@ -22,7 +22,7 @@
* You should have received a copy of the GNU General Public License
* along with SExtractor. If not, see <http://www.gnu.org/licenses/>.
*
* Last modified: 1
3
/0
2
/2013
* Last modified: 1
7
/0
8
/2013
*
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
...
...
@@ -57,7 +57,11 @@
static
int
selectext
(
char
*
filename
);
time_t
thetimet
,
thetimet2
;
#ifdef USE_MODEL
extern
profitstruct
*
theprofit
,
*
thedprofit
,
*
thepprofit
,
*
theqprofit
;
#else
profitstruct
*
theprofit
,
*
thedprofit
,
*
thepprofit
,
*
theqprofit
;
#endif
extern
char
profname
[][
32
];
double
dtime
;
...
...
@@ -477,6 +481,7 @@ void makeit()
thepsf
=
psf_load
(
prefs
.
psf_name
[
0
],
nok
);
}
#ifdef USE_MODEL
if
(
prefs
.
prof_flag
)
{
/*------ Create profiles at full resolution */
...
...
@@ -500,6 +505,7 @@ void makeit()
theqprofit
=
profit_init
(
thepsf
,
MODEL_EXPONENTIAL
);
}
}
#endif
}
/*-- Initialize PSF contexts and workspace */
...
...
src/wcs/Makefile.in
View file @
22c7e544
# Makefile.in generated by automake 1.1
2.2
from Makefile.am.
# Makefile.in generated by automake 1.1
1.6
from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
# Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
...
...
@@ -82,9 +83,7 @@ POST_UNINSTALL = :
build_triplet
=
@build@
host_triplet
=
@host@
subdir
=
src/wcs
DIST_COMMON
=
README
$(srcdir)
/Makefile.am
$(srcdir)
/Makefile.in
\
$(top_srcdir)
/autoconf/depcomp
\
$(top_srcdir)
/autoconf/mkinstalldirs
DIST_COMMON
=
README
$(srcdir)
/Makefile.am
$(srcdir)
/Makefile.in
ACLOCAL_M4
=
$(top_srcdir)
/aclocal.m4
am__aclocal_m4_deps
=
$(top_srcdir)
/acx_atlas.m4
\
$(top_srcdir)
/acx_fftw.m4
$(top_srcdir)
/acx_mkl.m4
\
...
...
@@ -403,20 +402,6 @@ GTAGS:
&&
$(am__cd)
$(top_srcdir)
\
&&
gtags
-i
$(GTAGS_ARGS)
"
$$
here"
cscopelist
:
$(HEADERS) $(SOURCES) $(LISP)
list
=
'
$(SOURCES)
$(HEADERS)
$(LISP)
'
;
\
case
"
$(srcdir)
"
in
\
[
\\
/]
*
|
?:[
\\
/]
*
)
sdir
=
"
$(srcdir)
"
;;
\
*
)
sdir
=
$(subdir)
/
$(srcdir)
;;
\
esac
;
\
for
i
in
$$
list
;
do
\
if
test
-f
"
$$
i"
;
then
\
echo
"
$(subdir)
/
$$
i"
;
\
else
\
echo
"
$$
sdir/
$$
i"
;
\
fi
;
\
done
>>
$(top_builddir)
/cscope.files
distclean-tags
:
-
rm
-f
TAGS ID GTAGS GRTAGS GSYMS GPATH tags
...
...
@@ -558,7 +543,7 @@ uninstall-am:
.MAKE
:
install-am install-strip
.PHONY
:
CTAGS GTAGS all all-am check check-am clean clean-generic
\
clean-libtool clean-noinstLIBRARIES
cscopelist
ctags distclean
\
clean-libtool clean-noinstLIBRARIES ctags distclean
\
distclean-compile distclean-generic distclean-libtool
\
distclean-tags distdir dvi dvi-am html html-am info info-am
\
install install-am install-data install-data-am install-dvi
\
...
...
tests/Makefile.in
View file @
22c7e544
# Makefile.in generated by automake 1.1
2.2
from Makefile.am.
# Makefile.in generated by automake 1.1
1.6
from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
# Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
...
...
@@ -50,8 +51,7 @@ POST_UNINSTALL = :
build_triplet
=
@build@
host_triplet
=
@host@
subdir
=
tests
DIST_COMMON
=
$(srcdir)
/Makefile.am
$(srcdir)
/Makefile.in
\
$(top_srcdir)
/autoconf/mkinstalldirs
DIST_COMMON
=
$(srcdir)
/Makefile.am
$(srcdir)
/Makefile.in
ACLOCAL_M4
=
$(top_srcdir)
/aclocal.m4
am__aclocal_m4_deps
=
$(top_srcdir)
/acx_atlas.m4
\
$(top_srcdir)
/acx_fftw.m4
$(top_srcdir)
/acx_mkl.m4
\
...
...
@@ -72,10 +72,8 @@ am__can_run_installinfo = \
n|no|NO
)
false
;;
\
*
)
(
install-info
--version
)
>
/dev/null 2>&1
;;
\
esac
am__tty_colors_dummy
=
\
mgn
=
red
=
grn
=
lgn
=
blu
=
brg
=
std
=
;
\
am__color_tests
=
no
am__tty_colors
=
$(am__tty_colors_dummy)
am__tty_colors
=
\
red
=
;
grn
=
;
lgn
=
;
blu
=
;
std
=
DISTFILES
=
$(DIST_COMMON)
$(DIST_SOURCES)
$(TEXINFOS)
$(EXTRA_DIST)
ACLOCAL
=
@ACLOCAL@
AMTAR
=
@AMTAR@
...
...
@@ -264,8 +262,6 @@ TAGS:
ctags
:
CTAGS
CTAGS
:
cscope cscopelist
:
check-TESTS
:
$(TESTS)
@
failed
=
0
;
all
=
0
;
xfail
=
0
;
xpass
=
0
;
skip
=
0
;
\
...
...
@@ -277,7 +273,7 @@ check-TESTS: $(TESTS)
if
test
-f
./
$$
tst
;
then
dir
=
./
;
\
elif
test
-f
$$
tst
;
then
dir
=
;
\
else
dir
=
"
$(srcdir)
/"
;
fi
;
\
if
$(TESTS_ENVIRONMENT)
$
${dir}$$
tst
$(AM_TESTS_FD_REDIRECT)
;
then
\
if
$(TESTS_ENVIRONMENT)
$
${dir}$$
tst
;
then
\
all
=
`
expr
$$
all + 1
`
;
\
case
"
$(XFAIL_TESTS)
"
in
\
*
[
\ \
]
$$
tst[
\ \
]
*
)
\
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment