kopia lustrzana https://github.com/Hamlib/Hamlib
regenerated
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@561 7ae35d74-ebe9-4afe-98af-79ac388436b8Hamlib-1.1.2
rodzic
cfdf0276ae
commit
eef2dca016
50
Makefile.in
50
Makefile.in
|
@ -68,11 +68,13 @@ DLL_PRELOAD = @DLL_PRELOAD@
|
||||||
ECHO = @ECHO@
|
ECHO = @ECHO@
|
||||||
EXEEXT = @EXEEXT@
|
EXEEXT = @EXEEXT@
|
||||||
INCLTDL = @INCLTDL@
|
INCLTDL = @INCLTDL@
|
||||||
|
LIBHAMLIBTCL = @LIBHAMLIBTCL@
|
||||||
LIBLTDL = @LIBLTDL@
|
LIBLTDL = @LIBLTDL@
|
||||||
LIBOBJS = @LIBOBJS@
|
LIBOBJS = @LIBOBJS@
|
||||||
LIBTOOL = @LIBTOOL@
|
LIBTOOL = @LIBTOOL@
|
||||||
LIBWINRADIO = @LIBWINRADIO@
|
LIBWINRADIO = @LIBWINRADIO@
|
||||||
LN_S = @LN_S@
|
LN_S = @LN_S@
|
||||||
|
LTHAMLIBTCL = @LTHAMLIBTCL@
|
||||||
LTLIBWINRADIO = @LTLIBWINRADIO@
|
LTLIBWINRADIO = @LTLIBWINRADIO@
|
||||||
MAKEINFO = @MAKEINFO@
|
MAKEINFO = @MAKEINFO@
|
||||||
NET = @NET@
|
NET = @NET@
|
||||||
|
@ -91,7 +93,7 @@ WINRADIOLNK = @WINRADIOLNK@
|
||||||
hamlibdocdir = @hamlibdocdir@
|
hamlibdocdir = @hamlibdocdir@
|
||||||
|
|
||||||
EXTRA_DIST = PLAN TODO LICENSE
|
EXTRA_DIST = PLAN TODO LICENSE
|
||||||
SUBDIRS = include lib libltdl src icom kenwood aor yaesu dummy pcr alinco winradio c++ tests doc
|
SUBDIRS = include lib libltdl src icom kenwood aor yaesu dummy pcr alinco winradio c++ tcl tests doc
|
||||||
|
|
||||||
INCLUDES = $(INCLTDL)
|
INCLUDES = $(INCLTDL)
|
||||||
hamlibdoc_DATA = ChangeLog COPYING NEWS THANKS INSTALL README LICENSE
|
hamlibdoc_DATA = ChangeLog COPYING NEWS THANKS INSTALL README LICENSE
|
||||||
|
@ -103,7 +105,8 @@ DATA = $(hamlibdoc_DATA)
|
||||||
|
|
||||||
DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \
|
DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \
|
||||||
Makefile.in NEWS THANKS TODO aclocal.m4 config.guess config.sub \
|
Makefile.in NEWS THANKS TODO aclocal.m4 config.guess config.sub \
|
||||||
configure configure.in install-sh ltmain.sh missing mkinstalldirs
|
configure configure.in include/config.h.in include/stamp-h.in \
|
||||||
|
install-sh ltmain.sh missing mkinstalldirs
|
||||||
|
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
@ -127,6 +130,34 @@ config.status: $(srcdir)/configure.in $(CONFIG_STATUS_DEPENDENCIES)
|
||||||
$(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
|
$(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
|
||||||
cd $(srcdir) && $(AUTOCONF)
|
cd $(srcdir) && $(AUTOCONF)
|
||||||
|
|
||||||
|
include/config.h: include/stamp-h
|
||||||
|
@if test ! -f $@; then \
|
||||||
|
rm -f include/stamp-h; \
|
||||||
|
$(MAKE) include/stamp-h; \
|
||||||
|
else :; fi
|
||||||
|
include/stamp-h: $(srcdir)/include/config.h.in $(top_builddir)/config.status
|
||||||
|
cd $(top_builddir) \
|
||||||
|
&& CONFIG_FILES= CONFIG_HEADERS=include/config.h \
|
||||||
|
$(SHELL) ./config.status
|
||||||
|
@echo timestamp > include/stamp-h 2> /dev/null
|
||||||
|
$(srcdir)/include/config.h.in: $(srcdir)/include/stamp-h.in
|
||||||
|
@if test ! -f $@; then \
|
||||||
|
rm -f $(srcdir)/include/stamp-h.in; \
|
||||||
|
$(MAKE) $(srcdir)/include/stamp-h.in; \
|
||||||
|
else :; fi
|
||||||
|
$(srcdir)/include/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
|
cd $(top_srcdir) && $(AUTOHEADER)
|
||||||
|
@echo timestamp > $(srcdir)/include/stamp-h.in 2> /dev/null
|
||||||
|
|
||||||
|
mostlyclean-hdr:
|
||||||
|
|
||||||
|
clean-hdr:
|
||||||
|
|
||||||
|
distclean-hdr:
|
||||||
|
-rm -f include/config.h
|
||||||
|
|
||||||
|
maintainer-clean-hdr:
|
||||||
|
|
||||||
install-hamlibdocDATA: $(hamlibdoc_DATA)
|
install-hamlibdocDATA: $(hamlibdoc_DATA)
|
||||||
@$(NORMAL_INSTALL)
|
@$(NORMAL_INSTALL)
|
||||||
$(mkinstalldirs) $(DESTDIR)$(hamlibdocdir)
|
$(mkinstalldirs) $(DESTDIR)$(hamlibdocdir)
|
||||||
|
@ -335,30 +366,31 @@ distclean-generic:
|
||||||
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
|
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
|
||||||
|
|
||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
mostlyclean-am: mostlyclean-tags mostlyclean-generic
|
mostlyclean-am: mostlyclean-hdr mostlyclean-tags mostlyclean-generic
|
||||||
|
|
||||||
mostlyclean: mostlyclean-recursive
|
mostlyclean: mostlyclean-recursive
|
||||||
|
|
||||||
clean-am: clean-tags clean-generic mostlyclean-am
|
clean-am: clean-hdr clean-tags clean-generic mostlyclean-am
|
||||||
|
|
||||||
clean: clean-recursive
|
clean: clean-recursive
|
||||||
|
|
||||||
distclean-am: distclean-tags distclean-generic clean-am
|
distclean-am: distclean-hdr distclean-tags distclean-generic clean-am
|
||||||
-rm -f libtool
|
-rm -f libtool
|
||||||
|
|
||||||
distclean: distclean-recursive
|
distclean: distclean-recursive
|
||||||
-rm -f config.status
|
-rm -f config.status
|
||||||
|
|
||||||
maintainer-clean-am: maintainer-clean-tags maintainer-clean-generic \
|
maintainer-clean-am: maintainer-clean-hdr maintainer-clean-tags \
|
||||||
distclean-am
|
maintainer-clean-generic distclean-am
|
||||||
@echo "This command is intended for maintainers to use;"
|
@echo "This command is intended for maintainers to use;"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-recursive
|
maintainer-clean: maintainer-clean-recursive
|
||||||
-rm -f config.status
|
-rm -f config.status
|
||||||
|
|
||||||
.PHONY: uninstall-hamlibdocDATA install-hamlibdocDATA \
|
.PHONY: mostlyclean-hdr distclean-hdr clean-hdr maintainer-clean-hdr \
|
||||||
install-data-recursive uninstall-data-recursive install-exec-recursive \
|
uninstall-hamlibdocDATA install-hamlibdocDATA install-data-recursive \
|
||||||
|
uninstall-data-recursive install-exec-recursive \
|
||||||
uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
|
uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
|
||||||
all-recursive check-recursive installcheck-recursive info-recursive \
|
all-recursive check-recursive installcheck-recursive info-recursive \
|
||||||
dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
|
dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
|
||||||
|
|
|
@ -7032,6 +7032,69 @@ fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
for ac_hdr in tcl8.2/tcl.h
|
||||||
|
do
|
||||||
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
||||||
|
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
||||||
|
echo "configure:7040: checking for $ac_hdr" >&5
|
||||||
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
||||||
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
|
else
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 7045 "configure"
|
||||||
|
#include "confdefs.h"
|
||||||
|
#include <$ac_hdr>
|
||||||
|
EOF
|
||||||
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
||||||
|
{ (eval echo configure:7050: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
||||||
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
||||||
|
if test -z "$ac_err"; then
|
||||||
|
rm -rf conftest*
|
||||||
|
eval "ac_cv_header_$ac_safe=yes"
|
||||||
|
else
|
||||||
|
echo "$ac_err" >&5
|
||||||
|
echo "configure: failed program was:" >&5
|
||||||
|
cat conftest.$ac_ext >&5
|
||||||
|
rm -rf conftest*
|
||||||
|
eval "ac_cv_header_$ac_safe=no"
|
||||||
|
fi
|
||||||
|
rm -f conftest*
|
||||||
|
fi
|
||||||
|
if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
|
||||||
|
echo "$ac_t""yes" 1>&6
|
||||||
|
ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
|
||||||
|
cat >> confdefs.h <<EOF
|
||||||
|
#define $ac_tr_hdr 1
|
||||||
|
EOF
|
||||||
|
|
||||||
|
else
|
||||||
|
echo "$ac_t""no" 1>&6
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if test "${ac_cv_header_tcl8_2_tcl_h}" = "no" ; then
|
||||||
|
echo "disabling HamlibTCL support"
|
||||||
|
LIBHAMLIBTCL=
|
||||||
|
LTHAMLIBTCL=
|
||||||
|
else
|
||||||
|
echo "enabling HamlibTCL support"
|
||||||
|
LIBHAMLIBTCL=libhamlibtcl.a
|
||||||
|
LTHAMLIBTCL=libhamlibtcl.la
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if test x$LTHAMLIBTCL != x; then
|
||||||
|
HAMLIBTCL_TRUE=
|
||||||
|
HAMLIBTCL_FALSE='#'
|
||||||
|
else
|
||||||
|
HAMLIBTCL_TRUE='#'
|
||||||
|
HAMLIBTCL_FALSE=
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if test "${ac_cv_header_sys_socket_h}" = "no"; then
|
if test "${ac_cv_header_sys_socket_h}" = "no"; then
|
||||||
|
@ -7172,6 +7235,7 @@ pcr/Makefile
|
||||||
alinco/Makefile
|
alinco/Makefile
|
||||||
src/Makefile
|
src/Makefile
|
||||||
c++/Makefile
|
c++/Makefile
|
||||||
|
tcl/Makefile
|
||||||
tests/Makefile
|
tests/Makefile
|
||||||
doc/Makefile include/config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
|
doc/Makefile include/config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
|
||||||
EOF
|
EOF
|
||||||
|
@ -7254,6 +7318,10 @@ s%@WINRADIOLNK@%$WINRADIOLNK%g
|
||||||
s%@WINRADIODEPS@%$WINRADIODEPS%g
|
s%@WINRADIODEPS@%$WINRADIODEPS%g
|
||||||
s%@LIBWINRADIO@%$LIBWINRADIO%g
|
s%@LIBWINRADIO@%$LIBWINRADIO%g
|
||||||
s%@LTLIBWINRADIO@%$LTLIBWINRADIO%g
|
s%@LTLIBWINRADIO@%$LTLIBWINRADIO%g
|
||||||
|
s%@HAMLIBTCL_TRUE@%$HAMLIBTCL_TRUE%g
|
||||||
|
s%@HAMLIBTCL_FALSE@%$HAMLIBTCL_FALSE%g
|
||||||
|
s%@LIBHAMLIBTCL@%$LIBHAMLIBTCL%g
|
||||||
|
s%@LTHAMLIBTCL@%$LTHAMLIBTCL%g
|
||||||
s%@INCLUDES@%$INCLUDES%g
|
s%@INCLUDES@%$INCLUDES%g
|
||||||
s%@NET@%$NET%g
|
s%@NET@%$NET%g
|
||||||
s%@V_MAJOR@%$V_MAJOR%g
|
s%@V_MAJOR@%$V_MAJOR%g
|
||||||
|
@ -7315,6 +7383,7 @@ pcr/Makefile
|
||||||
alinco/Makefile
|
alinco/Makefile
|
||||||
src/Makefile
|
src/Makefile
|
||||||
c++/Makefile
|
c++/Makefile
|
||||||
|
tcl/Makefile
|
||||||
tests/Makefile
|
tests/Makefile
|
||||||
doc/Makefile"}
|
doc/Makefile"}
|
||||||
EOF
|
EOF
|
||||||
|
|
Ładowanie…
Reference in New Issue