summaryrefslogtreecommitdiff
path: root/comms/unixcw/files/patch-configure.ac
diff options
context:
space:
mode:
authorDiane Bruce <db@FreeBSD.org>2008-01-01 18:13:56 +0000
committerDiane Bruce <db@FreeBSD.org>2008-01-01 18:13:56 +0000
commit13966ac24edb9471341c156a6f03d85dccea7203 (patch)
tree5fa4620c4c0db567f5523ba46dff4a1479123d73 /comms/unixcw/files/patch-configure.ac
parentUpdate to 2.0 (diff)
The heart of the package is 'libcw'. This is a library which, when built,
offers the following basic CW services to a caller program: o Morse code character translation tables, and lookup functions o Morse code low-level timing calculations o A 'sidetone' generation and queueing system, using either the system sound card, the console speaker, or both o Optional keying control for an external device, say a transmitter, or an oscillator o CW character and string send routines, tied in with the character lookup o CW receive routines, also tied in to the character lookup o Adaptive speed tracking of received CW o An iambic keyer, with both Curtis 8044 types A and B timing o Straight key emulation Submitted by: self
Notes
Notes: svn path=/head/; revision=204824
Diffstat (limited to 'comms/unixcw/files/patch-configure.ac')
-rw-r--r--comms/unixcw/files/patch-configure.ac47
1 files changed, 47 insertions, 0 deletions
diff --git a/comms/unixcw/files/patch-configure.ac b/comms/unixcw/files/patch-configure.ac
new file mode 100644
index 000000000000..eb13422ec094
--- /dev/null
+++ b/comms/unixcw/files/patch-configure.ac
@@ -0,0 +1,47 @@
+--- configure.ac.orig 2006-07-13 01:31:21.000000000 -0400
++++ configure.ac 2007-12-28 15:31:58.000000000 -0500
+@@ -18,11 +18,10 @@
+ #
+
+ # General initializations.
+-AC_PREREQ(2.57)
++AC_PREREQ(2.61)
+ AC_INIT([UnixCW], 2.3, [simon_baldwin@yahoo.com])
+-
+ # Specify a configuration header.
+-AC_CONFIG_HEADERS(src/config.h)
++AC_CONFIG_HEADER(src/config.h)
+
+ # General checks for programs.
+ AC_PROG_CC
+@@ -48,6 +47,7 @@
+
+ # Checks for libraries.
+ AC_CHECK_LIB(curses, initscr)
++AC_CHECK_LIB(intl, gettext)
+
+ # Checks for header files, and refuse to go on if no KIOCSOUND is available.
+ AC_HEADER_STDC
+@@ -136,7 +136,12 @@
+ AC_MSG_WARN([Hint: try setting a value for the QTDIR variable])
+ fi
+ AC_SUBST(SUBDIRS)
+-
++if test -n "$QTLIB" ; then
++ QTLIBR=$QTLIB
++else
++ QTLIBR="qt"
++fi
++AC_SUBST(QTLIBR)
+ # Add -Wall, -W, -pedantic, and other paranoia to gcc command flags, and -Wall
+ # to with a few suppressions to icc command flags, then similarly, though less
+ # so, for g++ and icpc.
+@@ -200,6 +205,8 @@
+ fi
+ fi
+ rm -f conftest.so
++dnl fake it here for now
++ CC_LINKS_SO="yes"
+ if test $CC_LINKS_SO = "yes" ; then
+ AC_MSG_RESULT(yes)
+ else