blob: 4838f54cd35d59b73e034e2bd83492662819b481 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
diff -Naur check-0.9.3/configure.in check/configure.in
--- check-0.9.3/configure.in 2005-07-18 12:32:53.000000000 +0200
+++ check/configure.in 2006-01-15 21:57:26.000000000 +0100
@@ -28,7 +28,7 @@
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
-AC_PROG_RANLIB
+AC_PROG_LIBTOOL
if test -n "$GCC"; then
CFLAGS="$CFLAGS -Wall -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings"
fi
diff -Naur check-0.9.3/src/Makefile.am check/src/Makefile.am
--- check-0.9.3/src/Makefile.am 2002-05-03 13:58:01.000000000 +0200
+++ check/src/Makefile.am 2006-01-15 21:57:26.000000000 +0100
@@ -1,8 +1,8 @@
-lib_LIBRARIES=libcheck.a
+lib_LTLIBRARIES=libcheck.la
include_HEADERS=check.h
-libcheck_a_SOURCES=\
+libcheck_la_SOURCES=\
check_impl.h \
check.h \
check.c \
diff -Naur check-0.9.3/tests/Makefile.am check/tests/Makefile.am
--- check-0.9.3/tests/Makefile.am 2005-07-18 15:50:11.000000000 +0200
+++ check/tests/Makefile.am 2006-01-15 21:57:26.000000000 +0100
@@ -36,6 +36,6 @@
INCLUDES = -I$(srcdir)/../src
-LDADD = ../src/libcheck.a
+LDADD = ../src/libcheck.la
CLEANFILES = *.log test_logfile
|