summaryrefslogtreecommitdiffstats
path: root/libipq
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2009-12-28 02:46:27 +0100
committerJan Engelhardt <jengelh@medozas.de>2009-12-28 02:48:50 +0100
commit00294095405560855d0815a5c39e948d67bf798d (patch)
tree55f23b4056735d6878cb5133d9e8ef15d8eb881a /libipq
parent88bdf3cd2fbfad5ef24736ff7b14bea01a39c3ff (diff)
libipq: build as shared library
Antique software (see link) built as shared library requires objects compiled with -fPIC, so the standard archive won't do. References: http://bugs.debian.org/527733 Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'libipq')
-rw-r--r--libipq/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/libipq/Makefile.am b/libipq/Makefile.am
index f19950f4..556a17bd 100644
--- a/libipq/Makefile.am
+++ b/libipq/Makefile.am
@@ -2,8 +2,8 @@
AM_CFLAGS = ${regular_CFLAGS} -I${top_builddir}/include -I${top_srcdir}/include
-libipq_a_SOURCES = libipq.c
-lib_LIBRARIES = libipq.a
+libipq_la_SOURCES = libipq.c
+lib_LTLIBRARIES = libipq.la
man_MANS = ipq_create_handle.3 ipq_destroy_handle.3 ipq_errstr.3 \
ipq_get_msgerr.3 ipq_get_packet.3 ipq_message_type.3 \
ipq_perror.3 ipq_read.3 ipq_set_mode.3 ipq_set_verdict.3 \