diff options
author | unknown <jimw@mysql.com> | 2006-04-13 13:01:57 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2006-04-13 13:01:57 -0700 |
commit | d23064a668e555c7b87c526b2e2bd76dd6f9d83a (patch) | |
tree | c1e9f2b1d43080af258cb346f4df22c09ced3b56 /unittest/mytap/t | |
parent | c323e60c46c73efde0efea3ff056f83e17cb9009 (diff) | |
download | mariadb-git-d23064a668e555c7b87c526b2e2bd76dd6f9d83a.tar.gz |
Fix 'make distcheck' problems with new unittest code, and a small
portability problem.
BitKeeper/etc/ignore:
Use a wildcard to ignore all unittest *.t files
unittest/Makefile.am:
Add unit to DISTCLEANFILES, and make sure to copy it from srcdir
unittest/examples/Makefile.am:
Use srcdir to find mytap header
unittest/mysys/Makefile.am:
Use srcdir to find mytap header
unittest/mytap/t/Makefile.am:
Use builddir for finding mytap library
unittest/mytap/tap.c:
Fix portability problem (declarations after code in C code)
Diffstat (limited to 'unittest/mytap/t')
-rw-r--r-- | unittest/mytap/t/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittest/mytap/t/Makefile.am b/unittest/mytap/t/Makefile.am index 88f663c2a9e..b8e140832a6 100644 --- a/unittest/mytap/t/Makefile.am +++ b/unittest/mytap/t/Makefile.am @@ -2,7 +2,7 @@ AM_CPPFLAGS = -I$(srcdir) -I$(top_builddir)/include AM_CPPFLAGS += -I$(srcdir)/.. -AM_LDFLAGS = -L$(srcdir)/.. +AM_LDFLAGS = -L$(top_builddir)/unittest/mytap AM_CFLAGS = -Wall -ansi -pedantic |