git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@946 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.3
Stéphane Fillod, F8CFE 2002-01-29 22:04:08 +00:00
rodzic 99b831683f
commit 4e0dc37371
6 zmienionych plików z 475 dodań i 491 usunięć

1
aclocal.m4 vendored
Wyświetl plik

@ -3592,7 +3592,6 @@ AC_DEFUN(SC_PATH_TCLCONFIG, [
if test x"${ac_cv_c_tclconfig}" = x ; then
TCL_BIN_DIR="# no Tcl configs found"
AC_MSG_WARN(Can't find Tcl configuration definitions)
exit 0
else
no_tcl=
TCL_BIN_DIR=${ac_cv_c_tclconfig}

941
configure vendored

Plik diff jest za duży Load Diff

Wyświetl plik

@ -13,17 +13,6 @@
@SET_MAKE@
#noinst_SCRIPTS = hamlib-doc split-man.pl
#EXTRA_DIST = hamlib-doc split-man.pl NOTES
# hamlib-doc -man $(find -name '*.c' '*.h') | split-man.pl /tmp/man
# FIXME: this might be broken with VPATH make
#hamlib-doc-man: ../src/rig.c hamlib-doc split-man.pl
# ./hamlib-doc -man ../src/rig.c | ./split-man.pl man/
#hamlib-doc-html: ../src/rig.c hamlib-doc
# ./hamlib-doc -html ../src/rig.c > html/hamlib.html
SHELL = @SHELL@
srcdir = @srcdir@
@ -238,7 +227,7 @@ uninstall-am: uninstall-info-am
mostlyclean-libtool uninstall uninstall-am uninstall-info-am
doc: hamlib.cfg ../src/rig.c
doc: hamlib.cfg ../src/rig.c ../src/rotator.c ../src/tones.c ../src/locator.c
doxygen hamlib.cfg
#man_MANS= man/man3/rig.c.3

Wyświetl plik

@ -53,6 +53,9 @@
/* Define if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Define if you have the `c' library (-lc). */
#undef HAVE_LIBC
/* Define if you have the `syslog' library (-lsyslog). */
#undef HAVE_LIBSYSLOG

Wyświetl plik

@ -125,7 +125,8 @@ CPPFLAGS = @CPPFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
depcomp = $(SHELL) $(top_srcdir)/depcomp
@AMDEP_TRUE@DEP_FILES = $(DEPDIR)/getopt_long.Plo $(DEPDIR)/usleep.Plo
@AMDEP_TRUE@DEP_FILES = $(DEPDIR)/getopt_long.Plo $(DEPDIR)/trunc.Plo \
@AMDEP_TRUE@ $(DEPDIR)/usleep.Plo
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \
@ -135,7 +136,7 @@ LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
CFLAGS = @CFLAGS@
DIST_SOURCES = $(libmisc_la_SOURCES)
DIST_COMMON = Makefile.am Makefile.in getopt_long.c usleep.c
DIST_COMMON = Makefile.am Makefile.in getopt_long.c trunc.c usleep.c
SOURCES = $(libmisc_la_SOURCES)
all: all-am
@ -171,6 +172,7 @@ distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getopt_long.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/trunc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/usleep.Plo@am__quote@
distclean-depend:

Wyświetl plik

@ -528,7 +528,7 @@ uninstall-man: uninstall-man1
rigmatrix.html: rigmatrix_head.html rigmatrix listrigs dumpcaps
mkdir -p html
( cd html && cat ../rigmatrix_head.html && ../rigmatrix ) > html/rigmatrix.html
for f in `./listrigs | tail +2 | cut -f1` ; do ./dumpcaps $$f > html/model$$f.txt ; done
for f in `./listrigs | tail +2 | cut -f1` ; do ( ./dumpcaps $$f > html/model$$f.txt || exit 0 ) ; done
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT: