List:Commits« Previous MessageNext Message »
From:msvensson Date:February 7 2007 3:09pm
Subject:bk commit into 5.0 tree (msvensson:1.2407)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2007-02-07 15:09:13+01:00, msvensson@stripped +1 -0
  Avoid problem with "noinst_HEADERS" being sucked into "mysqld_LDADD" if openssl_libs and
yassl_libs are empty strings

  sql/Makefile.am@stripped, 2007-02-07 15:09:11+01:00, msvensson@stripped +4 -1
    Avoid problem with "noinst_HEADERS" being sucked into "mysqld_LDADD" if openssl_libs
and yassl_libs are empty strings

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	msvensson
# Host:	pilot.mysql.com
# Root:	/home/msvensson/mysql/mysql-5.0-maint

--- 1.130/sql/Makefile.am	2006-12-30 21:02:06 +01:00
+++ 1.131/sql/Makefile.am	2007-02-07 15:09:11 +01:00
@@ -43,7 +43,8 @@
                         @innodb_system_libs@ \
 			@ndbcluster_libs@ @ndbcluster_system_libs@ \
 			$(LDADD)  $(CXXLDFLAGS) $(WRAPLIBS) @LIBDL@ \
-                        @yassl_libs@ @openssl_libs@
+                        $(yassl_libs) $(openssl_libs)
+
 noinst_HEADERS =	item.h item_func.h item_sum.h item_cmpfunc.h \
 			item_strfunc.h item_timefunc.h item_uniq.h \
 			item_create.h item_subselect.h item_row.h \
@@ -66,6 +67,7 @@
 			examples/ha_example.h ha_archive.h \
 			examples/ha_tina.h ha_blackhole.h  \
 			ha_federated.h
+
 mysqld_SOURCES =	sql_lex.cc sql_handler.cc \
 			item.cc item_sum.cc item_buff.cc item_func.cc \
 			item_cmpfunc.cc item_strfunc.cc item_timefunc.cc \
@@ -105,6 +107,7 @@
 
 gen_lex_hash_SOURCES =	gen_lex_hash.cc
 gen_lex_hash_LDADD =	$(LDADD) $(CXXLDFLAGS)
+
 mysql_tzinfo_to_sql_SOURCES =   mysql_tzinfo_to_sql.cc
 mysql_tzinfo_to_sql_LDADD =  @MYSQLD_EXTRA_LDFLAGS@ $(LDADD) $(CXXLDFLAGS)
 
Thread
bk commit into 5.0 tree (msvensson:1.2407)msvensson7 Feb