Commit 97b4cf0e authored by unknown's avatar unknown
Browse files

Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-4.1

into mysql.com:/Users/kent/mysql/bk/mysql-4.1-distcheck

parents a27b5b31 b0a6a8e1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -17,8 +17,8 @@
# This file is public domain and comes with NO WARRANTY of any kind

#AUTOMAKE_OPTIONS =              nostdinc
INCLUDES =			-I$(top_srcdir)/include -I$(top_srcdir)/regex \
				$(openssl_includes)
INCLUDES =			-I$(top_builddir)/include -I$(top_srcdir)/include \
				-I$(top_srcdir)/regex $(openssl_includes)
LIBS =				@CLIENT_LIBS@
LDADD=				@CLIENT_EXTRA_LDFLAGS@ \
                                $(top_builddir)/libmysql/libmysqlclient.la
+2 −1
Original line number Diff line number Diff line
@@ -5,7 +5,8 @@
ASRC=vi.c emacs.c common.c
AHDR=vi.h emacs.h common.h

INCLUDES =		-I$(top_srcdir)/include -I$(srcdir)/../.. -I..
INCLUDES =		-I$(top_builddir)/include -I$(top_srcdir)/include \
			-I$(srcdir)/../.. -I..

noinst_LIBRARIES =	libedit.a

+2 −1
Original line number Diff line number Diff line
@@ -3,7 +3,8 @@
# Copyright (C) 1994,1996,1997 Free Software Foundation, Inc.

# Last  -I$(top_srcdir) needed for RedHat!
INCLUDES =		-I$(top_srcdir)/include -I$(top_srcdir)
INCLUDES =		-I$(top_builddir)/include -I$(top_srcdir)/include \
			-I$(top_srcdir)

noinst_LIBRARIES =	libreadline.a

+2 −1
Original line number Diff line number Diff line
@@ -15,7 +15,8 @@
# Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
# MA 02111-1307, USA

INCLUDES =		@MT_INCLUDES@ -I$(top_srcdir)/include
INCLUDES =		@MT_INCLUDES@ \
			-I$(top_builddir)/include -I$(top_srcdir)/include
LDADD =			libdbug.a ../strings/libmystrings.a
pkglib_LIBRARIES =	libdbug.a
noinst_HEADERS =	dbug_long.h
+2 −1
Original line number Diff line number Diff line
@@ -14,7 +14,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

INCLUDES =		@MT_INCLUDES@ -I$(top_srcdir)/include \
INCLUDES =		@MT_INCLUDES@ \
			-I$(top_builddir)/include -I$(top_srcdir)/include \
			@ndbcluster_includes@ -I$(top_srcdir)/sql
LDADD =			@CLIENT_EXTRA_LDFLAGS@ ../mysys/libmysys.a \
			../dbug/libdbug.a ../strings/libmystrings.a
Loading