mysql.spec.sh 35.8 KB
Newer Older
unknown's avatar
unknown committed
1
%define mysql_version		@VERSION@
unknown's avatar
unknown committed
2

3 4 5 6
# use "rpmbuild --with static" or "rpm --define '_with_static 1'" (for RPM 3.x)
# to enable static linking (off by default)
%{?_with_static:%define STATIC_BUILD 1}
%{!?_with_static:%define STATIC_BUILD 0}
unknown's avatar
unknown committed
7 8 9 10 11 12

# use "rpmbuild --with yassl" or "rpm --define '_with_yassl 1'" (for RPM 3.x)
# to build with yaSSL support (off by default)
%{?_with_yassl:%define YASSL_BUILD 1}
%{!?_with_yassl:%define YASSL_BUILD 0}

13
%if %{STATIC_BUILD}
14 15 16 17
%define release 0
%else
%define release 0.glibc23
%endif
18
%define license GPL
unknown's avatar
unknown committed
19
%define mysqld_user		mysql
unknown's avatar
unknown committed
20
%define mysqld_group	mysql
21
%define server_suffix -standard
22
%define mysqldatadir /var/lib/mysql
unknown's avatar
unknown committed
23

24 25
# We don't package all files installed into the build root by intention -
# See BUG#998 for details.
26
%define _unpackaged_files_terminate_build 0
27

unknown's avatar
unknown committed
28 29 30
%define see_base For a description of MySQL see the base MySQL RPM or http://www.mysql.com

Name: MySQL
31
Summary:	MySQL: a very fast and reliable SQL database server
unknown's avatar
unknown committed
32 33 34
Group:		Applications/Databases
Version:	@MYSQL_NO_DASH_VERSION@
Release:	%{release}
35
License:	%{license}
unknown's avatar
unknown committed
36 37
Source:		http://www.mysql.com/Downloads/MySQL-@MYSQL_BASE_VERSION@/mysql-%{mysql_version}.tar.gz
URL:		http://www.mysql.com/
unknown's avatar
unknown committed
38
Packager:	MySQL Production Engineering Team <build@mysql.com>
unknown's avatar
unknown committed
39
Vendor:		MySQL AB
40
Provides:	msqlormysql MySQL-server mysql
41
BuildRequires: ncurses-devel
unknown's avatar
unknown committed
42 43 44 45
Obsoletes:	mysql

# Think about what you use here since the first step is to
# run a rm -rf
46
BuildRoot:    %{_tmppath}/%{name}-%{version}-build
unknown's avatar
unknown committed
47 48 49

# From the manual
%description
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
The MySQL(TM) software delivers a very fast, multi-threaded, multi-user,
and robust SQL (Structured Query Language) database server. MySQL Server
is intended for mission-critical, heavy-load production systems as well
as for embedding into mass-deployed software. MySQL is a trademark of
MySQL AB.

The MySQL software has Dual Licensing, which means you can use the MySQL
software free of charge under the GNU General Public License
(http://www.gnu.org/licenses/). You can also purchase commercial MySQL
licenses from MySQL AB if you do not wish to be bound by the terms of
the GPL. See the chapter "Licensing and Support" in the manual for
further info.

The MySQL web site (http://www.mysql.com/) provides the latest
news and information about the MySQL software. Also please see the
documentation and the manual for more information.
unknown's avatar
unknown committed
66

67 68 69
%package server
Summary:	MySQL: a very fast and reliable SQL database server
Group:		Applications/Databases
70
Requires: coreutils grep procps /usr/sbin/useradd /usr/sbin/groupadd /sbin/chkconfig
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
Provides:	msqlormysql mysql-server mysql MySQL
Obsoletes:	MySQL mysql mysql-server

%description server
The MySQL(TM) software delivers a very fast, multi-threaded, multi-user,
and robust SQL (Structured Query Language) database server. MySQL Server
is intended for mission-critical, heavy-load production systems as well
as for embedding into mass-deployed software. MySQL is a trademark of
MySQL AB.

The MySQL software has Dual Licensing, which means you can use the MySQL
software free of charge under the GNU General Public License
(http://www.gnu.org/licenses/). You can also purchase commercial MySQL
licenses from MySQL AB if you do not wish to be bound by the terms of
the GPL. See the chapter "Licensing and Support" in the manual for
further info.

The MySQL web site (http://www.mysql.com/) provides the latest
news and information about the MySQL software. Also please see the
documentation and the manual for more information.

92 93
This package includes the MySQL server binary (incl. InnoDB) as well
as related utilities to run and administrate a MySQL server.
94 95 96 97

If you want to access and work with the database, you have to install
package "MySQL-client" as well!

unknown's avatar
unknown committed
98 99 100 101
%package client
Summary: MySQL - Client
Group: Applications/Databases
Obsoletes: mysql-client
unknown's avatar
unknown committed
102
Provides: mysql-client
unknown's avatar
unknown committed
103 104

%description client
105
This package contains the standard MySQL clients and administration tools. 
unknown's avatar
unknown committed
106 107 108

%{see_base}

unknown's avatar
unknown committed
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
%package ndb-storage
Summary:	MySQL - ndbcluster storage engine
Group:		Applications/Databases

%description ndb-storage
This package contains the ndbcluster storage engine. 
It is necessary to have this package installed on all 
computers that should store ndbcluster table data.
Note that this storage engine can only be used in conjunction
with the MySQL Max server.

%{see_base}

%package ndb-management
Summary:	MySQL - ndbcluster storage engine management
Group:		Applications/Databases

%description ndb-management
This package contains ndbcluster storage engine management.
It is necessary to have this package installed on at least 
one computer in the cluster.

%{see_base}

%package ndb-tools
Summary:	MySQL - ndbcluster storage engine basic tools
Group:		Applications/Databases

%description ndb-tools
This package contains ndbcluster storage engine basic tools.

%{see_base}

%package ndb-extra
Summary:	MySQL - ndbcluster storage engine extra tools
Group:		Applications/Databases

%description ndb-extra
This package contains some extra ndbcluster storage engine tools for the advanced user.
They should be used with caution.

%{see_base}

unknown's avatar
unknown committed
152
%package bench
153
Requires: %{name}-client perl-DBI perl
154
Summary: MySQL - Benchmarks and test system
unknown's avatar
unknown committed
155
Group: Applications/Databases
unknown's avatar
unknown committed
156
Provides: mysql-bench
unknown's avatar
unknown committed
157 158 159 160 161 162 163 164 165 166
Obsoletes: mysql-bench

%description bench
This package contains MySQL benchmark scripts and data.

%{see_base}

%package devel
Summary: MySQL - Development header files and libraries
Group: Applications/Databases
unknown's avatar
unknown committed
167
Provides: mysql-devel
unknown's avatar
unknown committed
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
Obsoletes: mysql-devel

%description devel
This package contains the development header files and libraries
necessary to develop MySQL client applications.

%{see_base}

%package shared
Summary: MySQL - Shared libraries
Group: Applications/Databases

%description shared
This package contains the shared libraries (*.so*) which certain
languages and applications need to dynamically load and use MySQL.

184
%package Max
185
Summary: MySQL - server with extended functionality
186
Group: Applications/Databases
unknown's avatar
unknown committed
187
Provides: mysql-Max
188
Obsoletes: mysql-Max
189
Requires: MySQL-server >= @MYSQL_BASE_VERSION@
190

unknown's avatar
unknown committed
191
%description Max 
192 193 194
Optional MySQL server binary that supports additional features like:

 - Berkeley DB Storage Engine
unknown's avatar
unknown committed
195
 - Ndbcluster Storage Engine interface
196 197 198
 - Archive Storage Engine
 - CSV Storage Engine
 - Example Storage Engine
199
 - Federated Storage Engine
200 201
 - User Defined Functions (UDFs).

202 203 204 205
To activate this binary, just install this package in addition to
the standard MySQL package.

Please note that this is a dynamically linked binary!
206

unknown's avatar
unknown committed
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
#%package embedded
#Requires: %{name}-devel
#Summary: MySQL - embedded library
#Group: Applications/Databases
#Obsoletes: mysql-embedded
#
#%description embedded
#This package contains the MySQL server as an embedded library.
#
#The embedded MySQL server library makes it possible to run a
#full-featured MySQL server inside the client application.
#The main benefits are increased speed and more simple management
#for embedded applications.
#
#The API is identical for the embedded MySQL version and the
#client/server version.
#
#%{see_base}
unknown's avatar
unknown committed
225

unknown's avatar
unknown committed
226 227 228 229 230 231 232 233
%prep
%setup -n mysql-%{mysql_version}

%build

BuildMySQL() {
# The --enable-assembler simply does nothing on systems that does not
# support assembler speedups.
234
sh -c  "PATH=\"${MYSQL_BUILD_PATH:-$PATH}\" \
235 236
	CC=\"${CC:-$MYSQL_BUILD_CC}\" \
	CXX=\"${CXX:-$MYSQL_BUILD_CXX}\" \
237 238
	CFLAGS=\"${MYSQL_BUILD_CFLAGS:-$RPM_OPT_FLAGS}\" \
	CXXFLAGS=\"${MYSQL_BUILD_CXXFLAGS:-$RPM_OPT_FLAGS \
unknown's avatar
unknown committed
239
	          -felide-constructors -fno-exceptions -fno-rtti \
unknown's avatar
unknown committed
240
		  }\" \
unknown's avatar
unknown committed
241 242 243
	./configure \
 	    $* \
	    --enable-assembler \
unknown's avatar
unknown committed
244
	    --enable-local-infile \
unknown's avatar
unknown committed
245 246 247 248
            --with-mysqld-user=%{mysqld_user} \
            --with-unix-socket-path=/var/lib/mysql/mysql.sock \
            --prefix=/ \
	    --with-extra-charsets=complex \
unknown's avatar
unknown committed
249
%if %{YASSL_BUILD}
unknown's avatar
unknown committed
250
	    --with-yassl \
unknown's avatar
unknown committed
251
%endif
252 253 254 255 256
            --exec-prefix=%{_exec_prefix} \
            --libexecdir=%{_sbindir} \
            --libdir=%{_libdir} \
            --sysconfdir=%{_sysconfdir} \
            --datadir=%{_datadir} \
257
            --localstatedir=%{mysqldatadir} \
258
            --infodir=%{_infodir} \
259
            --includedir=%{_includedir} \
260
            --mandir=%{_mandir} \
261
	    --enable-thread-safe-client \
unknown's avatar
unknown committed
262
	    --with-readline ; \
unknown's avatar
unknown committed
263 264 265 266 267
	    # Add this for more debugging support
	    # --with-debug
	    "

 # benchdir does not fit in above model. Maybe a separate bench distribution
268
 make benchdir_root=$RPM_BUILD_ROOT/usr/share/
unknown's avatar
unknown committed
269 270
}

271
# Use our own copy of glibc
unknown's avatar
unknown committed
272

273
OTHER_LIBC_DIR=/usr/local/mysql-glibc
274
USE_OTHER_LIBC_DIR=""
unknown's avatar
unknown committed
275
if test -d "$OTHER_LIBC_DIR"
276 277 278 279 280 281
then
  USE_OTHER_LIBC_DIR="--with-other-libc=$OTHER_LIBC_DIR"
fi

# Use the build root for temporary storage of the shared libraries.

unknown's avatar
unknown committed
282 283
RBR=$RPM_BUILD_ROOT
MBD=$RPM_BUILD_DIR/mysql-%{mysql_version}
284 285 286

# Clean up the BuildRoot first
[ "$RBR" != "/" ] && [ -d $RBR ] && rm -rf $RBR;
unknown's avatar
unknown committed
287
mkdir -p $RBR%{_libdir}/mysql
unknown's avatar
unknown committed
288

289 290 291 292 293 294
#
# Use MYSQL_BUILD_PATH so that we can use a dedicated version of gcc
#
PATH=${MYSQL_BUILD_PATH:-/bin:/usr/bin}
export PATH

295
# Build the Max binary (includes BDB and UDFs and therefore
296
# cannot be linked statically against the patched glibc)
297

298 299
# Use gcc for C and C++ code (to avoid a dependency on libstdc++ and
# including exceptions into the code
unknown's avatar
unknown committed
300
if [ -z "$CXX" -a -z "$CC" ]
301
then
302
	export CC="gcc"
303 304 305
	export CXX="gcc"
fi

306 307 308
BuildMySQL "--enable-shared \
		--with-berkeley-db \
		--with-innodb \
unknown's avatar
unknown committed
309
		--with-ndbcluster \
310
		--with-archive-storage-engine \
311 312
		--with-csv-storage-engine \
		--with-example-storage-engine \
313
		--with-blackhole-storage-engine \
314
		--with-federated-storage-engine \
unknown's avatar
unknown committed
315
	        --with-big-tables \
unknown's avatar
unknown committed
316 317
		--with-comment=\"MySQL Community Edition - Experimental (GPL)\" \
		--with-server-suffix='-max'"
unknown's avatar
unknown committed
318

unknown's avatar
unknown committed
319 320 321 322 323 324
# We might want to save the config log file
if test -n "$MYSQL_MAXCONFLOG_DEST"
then
  cp -fp config.log "$MYSQL_MAXCONFLOG_DEST"
fi

325
make -i test-force || true
unknown's avatar
unknown committed
326

327
# Save mysqld-max
unknown's avatar
unknown committed
328 329 330 331 332 333 334
# check if mysqld was installed in .libs/
if test -f sql/.libs/mysqld
then
	cp sql/.libs/mysqld sql/mysqld-max
else
	cp sql/mysqld sql/mysqld-max
fi
335
nm --numeric-sort sql/mysqld-max > sql/mysqld-max.sym
unknown's avatar
unknown committed
336 337
# Save the perror binary so it supports the NDB error codes (BUG#13740)
mv extra/perror extra/perror.ndb
338

unknown's avatar
unknown committed
339 340 341
# Install the ndb binaries
(cd ndb; make install DESTDIR=$RBR)

342
# Include libgcc.a in the devel subpackage (BUG 4921)
unknown's avatar
unknown committed
343
if expr "$CC" : ".*gcc.*" > /dev/null ;
344 345 346 347 348 349 350 351
then
  libgcc=`$CC --print-libgcc-file`
  if [ -f $libgcc ]
  then
    %define have_libgcc 1
    install -m 644 $libgcc $RBR%{_libdir}/mysql/libmygcc.a
  fi
fi
unknown's avatar
unknown committed
352

353
# Save libraries
unknown's avatar
unknown committed
354
(cd libmysql/.libs; tar cf $RBR/shared-libs.tar *.so*)
355
(cd libmysql_r/.libs; tar rf $RBR/shared-libs.tar *.so*)
356
(cd ndb/src/.libs; tar rf $RBR/shared-libs.tar *.so*)
unknown's avatar
unknown committed
357

358 359 360
# Now clean up
make clean

361 362 363 364 365
#
# Only link statically on our i386 build host (which has a specially
# patched static glibc installed) - ia64 and x86_64 run glibc-2.3 (unpatched)
# so don't link statically there
#
366
BuildMySQL "--disable-shared \
367
%if %{STATIC_BUILD}
368 369 370
		--with-mysqld-ldflags='-all-static' \
		--with-client-ldflags='-all-static' \
		$USE_OTHER_LIBC_DIR \
371
%else
372
%endif
unknown's avatar
unknown committed
373
		--with-zlib-dir=bundled \
unknown's avatar
unknown committed
374
		--with-comment=\"MySQL Community Edition - Standard (GPL)\" \
375
		--with-server-suffix='%{server_suffix}' \
unknown's avatar
unknown committed
376
		--with-archive-storage-engine \
unknown's avatar
unknown committed
377 378
		--with-innodb \
		--with-big-tables"
unknown's avatar
unknown committed
379 380 381 382 383 384
if test -f sql/.libs/mysqld
then
	nm --numeric-sort sql/.libs/mysqld > sql/mysqld.sym
else
	nm --numeric-sort sql/mysqld > sql/mysqld.sym
fi
unknown's avatar
unknown committed
385

unknown's avatar
unknown committed
386 387 388 389 390 391
# We might want to save the config log file
if test -n "$MYSQL_CONFLOG_DEST"
then
  cp -fp config.log "$MYSQL_CONFLOG_DEST"
fi

392
make -i test-force || true
393

unknown's avatar
unknown committed
394
%install
unknown's avatar
unknown committed
395 396
RBR=$RPM_BUILD_ROOT
MBD=$RPM_BUILD_DIR/mysql-%{mysql_version}
397

unknown's avatar
unknown committed
398
# Ensure that needed directories exists
399
install -d $RBR%{_sysconfdir}/{logrotate.d,init.d}
400
install -d $RBR%{mysqldatadir}/mysql
401 402 403
install -d $RBR%{_datadir}/{sql-bench,mysql-test}
install -d $RBR%{_includedir}
install -d $RBR%{_libdir}
404
install -d $RBR%{_mandir}
405 406
install -d $RBR%{_sbindir}

407 408

# Install all binaries stripped 
409
make install-strip DESTDIR=$RBR benchdir_root=%{_datadir}
unknown's avatar
unknown committed
410 411

# Install shared libraries (Disable for architectures that don't support it)
unknown's avatar
unknown committed
412
(cd $RBR%{_libdir}; tar xf $RBR/shared-libs.tar; rm -f $RBR/shared-libs.tar)
unknown's avatar
unknown committed
413

414
# install saved mysqld-max
unknown's avatar
unknown committed
415
install -s -m 755 $MBD/sql/mysqld-max $RBR%{_sbindir}/mysqld-max
416

unknown's avatar
unknown committed
417
# install saved perror binary with NDB support (BUG#13740)
unknown's avatar
unknown committed
418
install -s -m 755 $MBD/extra/perror.ndb $RBR%{_bindir}/perror
unknown's avatar
unknown committed
419

420
# install symbol files ( for stack trace resolution)
unknown's avatar
unknown committed
421 422
install -m 644 $MBD/sql/mysqld-max.sym $RBR%{_libdir}/mysql/mysqld-max.sym
install -m 644 $MBD/sql/mysqld.sym $RBR%{_libdir}/mysql/mysqld.sym
423

unknown's avatar
unknown committed
424
# Install logrotate and autostart
unknown's avatar
unknown committed
425 426 427 428 429 430
install -m 644 $MBD/support-files/mysql-log-rotate $RBR%{_sysconfdir}/logrotate.d/mysql
install -m 755 $MBD/support-files/mysql.server $RBR%{_sysconfdir}/init.d/mysql

# Install embedded server library in the build root
# FIXME No libmysqld on 5.0 yet
#install -m 644 libmysqld/libmysqld.a $RBR%{_libdir}/mysql/
unknown's avatar
unknown committed
431

432 433
# Create a symlink "rcmysql", pointing to the init.script. SuSE users
# will appreciate that, as all services usually offer this.
434
ln -s %{_sysconfdir}/init.d/mysql $RPM_BUILD_ROOT%{_sbindir}/rcmysql
435

436 437
# Create symbolic compatibility link safe_mysqld -> mysqld_safe
# (safe_mysqld will be gone in MySQL 4.1)
438
ln -sf ./mysqld_safe $RBR%{_bindir}/safe_mysqld
439

440 441
# Touch the place where the my.cnf config file and mysqlmanager.passwd
# (MySQL Instance Manager password file) might be located
442
# Just to make sure it's in the file list and marked as a config file
443
touch $RBR%{_sysconfdir}/my.cnf
444
touch $RBR%{_sysconfdir}/mysqlmanager.passwd
445 446

%pre server
447
# Shut down a previously installed server first
448
if test -x %{_sysconfdir}/init.d/mysql
449
then
450
  %{_sysconfdir}/init.d/mysql stop > /dev/null 2>&1
451 452
  echo "Giving mysqld a couple of seconds to exit nicely"
  sleep 5
453
elif test -x %{_sysconfdir}/rc.d/init.d/mysql
unknown's avatar
unknown committed
454
then
455
  %{_sysconfdir}/rc.d/init.d/mysql stop > /dev/null 2>&1
unknown's avatar
unknown committed
456 457 458 459
  echo "Giving mysqld a couple of seconds to exit nicely"
  sleep 5
fi

460
%post server
461
mysql_datadir=%{mysqldatadir}
unknown's avatar
unknown committed
462 463

# Create data directory if needed
unknown's avatar
unknown committed
464
if test ! -d $mysql_datadir; then mkdir -m 755 $mysql_datadir; fi
465 466
if test ! -d $mysql_datadir/mysql; then mkdir $mysql_datadir/mysql; fi
if test ! -d $mysql_datadir/test; then mkdir $mysql_datadir/test; fi
unknown's avatar
unknown committed
467 468

# Make MySQL start/shutdown automatically when the machine does it.
469 470 471
# use insserv for older SuSE Linux versions
if test -x /sbin/insserv
then
472
	/sbin/insserv %{_sysconfdir}/init.d/mysql
473 474 475 476 477
# use chkconfig on Red Hat and newer SuSE releases
elif test -x /sbin/chkconfig
then
	/sbin/chkconfig --add mysql
fi
unknown's avatar
unknown committed
478

unknown's avatar
unknown committed
479 480
# Create a MySQL user and group. Do not report any problems if it already
# exists.
unknown's avatar
unknown committed
481 482 483 484
groupadd -r %{mysqld_group} 2> /dev/null || true
useradd -M -r -d $mysql_datadir -s /bin/bash -c "MySQL server" -g %{mysqld_group} %{mysqld_user} 2> /dev/null || true 
# The user may already exist, make sure it has the proper group nevertheless (BUG#12823)
usermod -g %{mysqld_group} %{mysqld_user} 2> /dev/null || true
unknown's avatar
unknown committed
485 486 487

# Change permissions so that the user that will run the MySQL daemon
# owns all database files.
unknown's avatar
unknown committed
488
chown -R %{mysqld_user}:%{mysqld_group} $mysql_datadir
unknown's avatar
unknown committed
489 490

# Initiate databases
491
%{_bindir}/mysql_install_db --rpm --user=%{mysqld_user}
unknown's avatar
unknown committed
492 493

# Change permissions again to fix any new files.
unknown's avatar
unknown committed
494
chown -R %{mysqld_user}:%{mysqld_group} $mysql_datadir
unknown's avatar
unknown committed
495 496 497 498 499 500

# Fix permissions for the permission database so that only the user
# can read them.
chmod -R og-rw $mysql_datadir/mysql

# Restart in the same way that mysqld will be started normally.
501
%{_sysconfdir}/init.d/mysql start
unknown's avatar
unknown committed
502 503 504 505

# Allow safe_mysqld to start mysqld and print a message before we exit
sleep 2

unknown's avatar
unknown committed
506

unknown's avatar
unknown committed
507
%post ndb-storage
unknown's avatar
unknown committed
508 509 510
mysql_clusterdir=/var/lib/mysql-cluster

# Create cluster directory if needed
unknown's avatar
unknown committed
511
if test ! -d $mysql_clusterdir; then mkdir -m 755 $mysql_clusterdir; fi
unknown's avatar
unknown committed
512 513


514 515
%post Max
# Restart mysqld, to use the new binary.
516
echo "Restarting mysqld."
517
%{_sysconfdir}/init.d/mysql restart > /dev/null 2>&1
518

519
%preun server
unknown's avatar
unknown committed
520 521
if test $1 = 0
then
unknown's avatar
unknown committed
522
  # Stop MySQL before uninstalling it
523
  if test -x %{_sysconfdir}/init.d/mysql
524
  then
525
    %{_sysconfdir}/init.d/mysql stop > /dev/null
526

unknown's avatar
unknown committed
527 528 529 530 531 532 533 534 535 536 537
    # Remove autostart of mysql
    # for older SuSE Linux versions
    if test -x /sbin/insserv
    then
      /sbin/insserv -r %{_sysconfdir}/init.d/mysql
    # use chkconfig on Red Hat and newer SuSE releases
    elif test -x /sbin/chkconfig
    then
      /sbin/chkconfig --del mysql
    fi
  fi
unknown's avatar
unknown committed
538
fi
539

unknown's avatar
unknown committed
540 541 542
# We do not remove the mysql user since it may still own a lot of
# database files.

543 544
# Clean up the BuildRoot
%clean
545
[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT;
546

547
%files server
548
%defattr(-,root,root,0755)
549

550
%doc COPYING README 
551
%doc support-files/my-*.cnf
unknown's avatar
unknown committed
552
%doc support-files/ndb-*.ini
553 554 555

%doc %attr(644, root, root) %{_infodir}/mysql.info*

556 557 558
%doc %attr(644, root, man) %{_mandir}/man1/myisamchk.1*
%doc %attr(644, root, man) %{_mandir}/man1/myisamlog.1*
%doc %attr(644, root, man) %{_mandir}/man1/myisampack.1*
559 560 561
%doc %attr(644, root, man) %{_mandir}/man1/mysqld.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysqld_multi.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysqld_safe.1*
562 563
%doc %attr(644, root, man) %{_mandir}/man1/mysql_fix_privilege_tables.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysqlhotcopy.1*
564
%doc %attr(644, root, man) %{_mandir}/man1/mysqlmanager.1*
565 566
%doc %attr(644, root, man) %{_mandir}/man1/mysql.server.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysql_zap.1*
567 568
%doc %attr(644, root, man) %{_mandir}/man1/perror.1*
%doc %attr(644, root, man) %{_mandir}/man1/replace.1*
569
%doc %attr(644, root, man) %{_mandir}/man1/safe_mysqld.1*
unknown's avatar
unknown committed
570

571
%ghost %config(noreplace,missingok) %{_sysconfdir}/my.cnf
572
%ghost %config(noreplace,missingok) %{_sysconfdir}/mysqlmanager.passwd
573 574

%attr(755, root, root) %{_bindir}/myisamchk
575
%attr(755, root, root) %{_bindir}/myisam_ftdump
576 577
%attr(755, root, root) %{_bindir}/myisamlog
%attr(755, root, root) %{_bindir}/myisampack
578 579
%attr(755, root, root) %{_bindir}/my_print_defaults
%attr(755, root, root) %{_bindir}/mysqlbug
580
%attr(755, root, root) %{_bindir}/mysql_convert_table_format
unknown's avatar
unknown committed
581
%attr(755, root, root) %{_bindir}/mysql_create_system_tables
582 583
%attr(755, root, root) %{_bindir}/mysqld_multi
%attr(755, root, root) %{_bindir}/mysqld_safe
584
%attr(755, root, root) %{_bindir}/mysql_explain_log
unknown's avatar
unknown committed
585
%attr(755, root, root) %{_bindir}/mysql_fix_extensions
586
%attr(755, root, root) %{_bindir}/mysql_fix_privilege_tables
587
%attr(755, root, root) %{_bindir}/mysqlhotcopy
588 589 590 591
%attr(755, root, root) %{_bindir}/mysql_install_db
%attr(755, root, root) %{_bindir}/mysql_secure_installation
%attr(755, root, root) %{_bindir}/mysql_setpermission
%attr(755, root, root) %{_bindir}/mysqltest
592
%attr(755, root, root) %{_bindir}/mysql_tzinfo_to_sql
593 594 595 596
%attr(755, root, root) %{_bindir}/mysql_zap
%attr(755, root, root) %{_bindir}/perror
%attr(755, root, root) %{_bindir}/replace
%attr(755, root, root) %{_bindir}/resolveip
597
%attr(755, root, root) %{_bindir}/resolve_stack_dump
598 599 600
%attr(755, root, root) %{_bindir}/safe_mysqld

%attr(755, root, root) %{_sbindir}/mysqld
601
%attr(755, root, root) %{_sbindir}/mysqlmanager
602 603 604
%attr(755, root, root) %{_sbindir}/rcmysql
%attr(644, root, root) %{_libdir}/mysql/mysqld.sym

605
%attr(644, root, root) %config(noreplace,missingok) %{_sysconfdir}/logrotate.d/mysql
606 607 608
%attr(755, root, root) %{_sysconfdir}/init.d/mysql

%attr(755, root, root) %{_datadir}/mysql/
unknown's avatar
unknown committed
609 610

%files client
611
%defattr(-, root, root, 0755)
612 613 614
%attr(755, root, root) %{_bindir}/msql2mysql
%attr(755, root, root) %{_bindir}/mysql
%attr(755, root, root) %{_bindir}/mysql_find_rows
unknown's avatar
unknown committed
615
%attr(755, root, root) %{_bindir}/mysql_tableinfo
616 617 618 619 620 621
%attr(755, root, root) %{_bindir}/mysql_waitpid
%attr(755, root, root) %{_bindir}/mysqlaccess
%attr(755, root, root) %{_bindir}/mysqladmin
%attr(755, root, root) %{_bindir}/mysqlbinlog
%attr(755, root, root) %{_bindir}/mysqlcheck
%attr(755, root, root) %{_bindir}/mysqldump
unknown's avatar
unknown committed
622
%attr(755, root, root) %{_bindir}/mysqldumpslow
623 624
%attr(755, root, root) %{_bindir}/mysqlimport
%attr(755, root, root) %{_bindir}/mysqlshow
unknown's avatar
unknown committed
625

626
%doc %attr(644, root, man) %{_mandir}/man1/msql2mysql.1*
627 628 629
%doc %attr(644, root, man) %{_mandir}/man1/mysql.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysqlaccess.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysqladmin.1*
630 631
%doc %attr(644, root, man) %{_mandir}/man1/mysqlbinlog.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysqlcheck.1*
632
%doc %attr(644, root, man) %{_mandir}/man1/mysqldump.1*
633
%doc %attr(644, root, man) %{_mandir}/man1/mysqlimport.1*
634
%doc %attr(644, root, man) %{_mandir}/man1/mysqlshow.1*
unknown's avatar
unknown committed
635 636 637 638 639 640 641

%post shared
/sbin/ldconfig

%postun shared
/sbin/ldconfig

unknown's avatar
unknown committed
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667
%files ndb-storage
%defattr(-,root,root,0755)
%attr(755, root, root) %{_sbindir}/ndbd

%files ndb-management
%defattr(-,root,root,0755)
%attr(755, root, root) %{_sbindir}/ndb_mgmd
%attr(755, root, root) %{_bindir}/ndb_mgm

%files ndb-tools
%defattr(-,root,root,0755)
%attr(755, root, root) %{_bindir}/ndb_mgm
%attr(755, root, root) %{_bindir}/ndb_restore
%attr(755, root, root) %{_bindir}/ndb_waiter
%attr(755, root, root) %{_bindir}/ndb_select_all
%attr(755, root, root) %{_bindir}/ndb_select_count
%attr(755, root, root) %{_bindir}/ndb_desc
%attr(755, root, root) %{_bindir}/ndb_show_tables
%attr(755, root, root) %{_bindir}/ndb_test_platform

%files ndb-extra
%defattr(-,root,root,0755)
%attr(755, root, root) %{_bindir}/ndb_drop_index
%attr(755, root, root) %{_bindir}/ndb_drop_table
%attr(755, root, root) %{_bindir}/ndb_delete_all

unknown's avatar
unknown committed
668
%files devel
669
%defattr(-, root, root, 0755)
670
%doc EXCEPTIONS-CLIENT
671
%doc %attr(644, root, man) %{_mandir}/man1/mysql_config.1*
672 673 674 675 676 677 678
%attr(755, root, root) %{_bindir}/comp_err
%attr(755, root, root) %{_bindir}/mysql_config
%dir %attr(755, root, root) %{_includedir}/mysql
%dir %attr(755, root, root) %{_libdir}/mysql
%{_includedir}/mysql/*
%{_libdir}/mysql/libdbug.a
%{_libdir}/mysql/libheap.a
679 680 681
%if %{have_libgcc}
%{_libdir}/mysql/libmygcc.a
%endif
682 683 684 685 686 687 688 689
%{_libdir}/mysql/libmyisam.a
%{_libdir}/mysql/libmyisammrg.a
%{_libdir}/mysql/libmysqlclient.a
%{_libdir}/mysql/libmysqlclient.la
%{_libdir}/mysql/libmysqlclient_r.a
%{_libdir}/mysql/libmysqlclient_r.la
%{_libdir}/mysql/libmystrings.a
%{_libdir}/mysql/libmysys.a
690 691
%{_libdir}/mysql/libndbclient.a
%{_libdir}/mysql/libndbclient.la
692
%{_libdir}/mysql/libvio.a
unknown's avatar
unknown committed
693 694
%{_libdir}/mysql/libz.a
%{_libdir}/mysql/libz.la
unknown's avatar
unknown committed
695 696

%files shared
697
%defattr(-, root, root, 0755)
unknown's avatar
unknown committed
698
# Shared libraries (omit for architectures that don't support them)
699
%{_libdir}/*.so*
unknown's avatar
unknown committed
700 701

%files bench
702
%defattr(-, root, root, 0755)
703 704
%attr(-, root, root) %{_datadir}/sql-bench
%attr(-, root, root) %{_datadir}/mysql-test
705
%attr(755, root, root) %{_bindir}/mysql_client_test
706 707 708
%attr(755, root, root) %{_bindir}/mysqltestmanager
%attr(755, root, root) %{_bindir}/mysqltestmanager-pwgen
%attr(755, root, root) %{_bindir}/mysqltestmanagerc
unknown's avatar
unknown committed
709

710
%files Max
711
%defattr(-, root, root, 0755)
712 713
%attr(755, root, root) %{_sbindir}/mysqld-max
%attr(644, root, root) %{_libdir}/mysql/mysqld-max.sym
714

unknown's avatar
unknown committed
715 716
#%files embedded
#%defattr(-, root, root, 0755)
unknown's avatar
unknown committed
717
# %attr(644, root, root) %{_libdir}/mysql/libmysqld.a
unknown's avatar
unknown committed
718

719
# The spec file changelog only includes changes made to the spec file
720 721
# itself - note that they must be ordered by date (important when
# merging BK trees)
722
%changelog 
unknown's avatar
unknown committed
723 724 725 726
* Fri Mar 03 2006 Kent Boortz <kent@mysql.com>

- Don't output an embedded package as it is empty

727 728 729 730 731
* Fri Jan 10 2006 Joerg Bruehe <joerg@mysql.com>

- Use "-i" on "make test-force";
  this is essential for later evaluation of this log file.

unknown's avatar
unknown committed
732 733 734 735 736 737 738
* Fri Dec 12 2005 Rodrigo Novo <rodrigo@mysql.com>

- Added zlib to the list of (static) libraries installed
- Added check against libtool wierdness (WRT: sql/mysqld || sql/.libs/mysqld)
- Compile MySQL with bundled zlib
- Fixed %packager name to "MySQL Production Engineering Team"

739 740 741 742 743
* Mon Dec 05 2005 Joerg Bruehe <joerg@mysql.com>

- Avoid using the "bundled" zlib on "shared" builds: 
  As it is not installed (on the build system), this gives dependency 
  problems with "libtool" causing the build to fail.
unknown's avatar
unknown committed
744
  (Change was done on Nov 11, but left uncommented.)
745

unknown's avatar
unknown committed
746 747 748 749 750
* Tue Nov 22 2005 Joerg Bruehe <joerg@mysql.com>

- Extend the file existence check for "init.d/mysql" on un-install
  to also guard the call to "insserv"/"chkconfig".

751 752 753 754
* Thu Oct 27 2005 Lenz Grimmer <lenz@grimmer.com>

- added more man pages

unknown's avatar
unknown committed
755 756
* Wed Oct 19 2005 Kent Boortz <kent@mysql.com>

unknown's avatar
unknown committed
757 758 759 760
- Made yaSSL support an option (off by default)

* Wed Oct 19 2005 Kent Boortz <kent@mysql.com>

unknown's avatar
unknown committed
761
- Enabled yaSSL support
unknown's avatar
unknown committed
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776

* Sat Oct 15 2005 Kent Boortz <kent@mysql.com>

- Give mode arguments the same way in all places
- Moved copy of mysqld.a to "standard" build, but
  disabled it as we don't do embedded yet in 5.0

* Fri Oct 14 2005 Kent Boortz <kent@mysql.com>

- For 5.x, always compile with --with-big-tables
- Copy the config.log file to location outside
  the build tree

* Fri Oct 14 2005 Kent Boortz <kent@mysql.com>

unknown's avatar
unknown committed
777
- Removed unneeded/obsolete configure options
unknown's avatar
unknown committed
778 779 780 781 782
- Added archive engine to standard server
- Removed the embedded server from experimental server
- Changed suffix "-Max" => "-max"
- Changed comment string "Max" => "Experimental"

unknown's avatar
unknown committed
783 784 785 786 787 788 789 790 791
* Thu Oct 13 2005 Lenz Grimmer <lenz@mysql.com>

- added a usermod call to assign a potential existing mysql user to the
  correct user group (BUG#12823)
- Save the perror binary built during Max build so it supports the NDB
  error codes (BUG#13740)
- added a separate macro "mysqld_group" to be able to define the
  user group of the mysql user seperately, if desired.

792 793 794 795 796
* Thu Sep 29 2005 Lenz Grimmer <lenz@mysql.com>

- fixed the removing of the RPM_BUILD_ROOT in the %clean section (the
  $RBR variable did not get expanded, thus leaving old build roots behind)

797 798
* Thu Aug 04 2005 Lenz Grimmer <lenz@mysql.com>

799 800
- Fixed the creation of the mysql user group account in the postinstall
  section (BUG 12348)
801 802
- Fixed enabling the Archive storage engine in the Max binary

803 804 805 806
* Tue Aug 02 2005 Lenz Grimmer <lenz@mysql.com>

- Fixed the Requires: tag for the server RPM (BUG 12233)

unknown's avatar
unknown committed
807 808 809 810 811
* Fri Jul 15 2005 Lenz Grimmer <lenz@mysql.com>

- create a "mysql" user group and assign the mysql user account to that group
  in the server postinstall section. (BUG 10984)

812 813 814 815 816 817 818
* Tue Jun 14 2005 Lenz Grimmer <lenz@mysql.com>

- Do not build statically on i386 by default, only when adding either "--with
  static" or "--define '_with_static 1'" to the RPM build options. Static
  linking really only makes sense when linking against the specially patched
  glibc 2.2.5.

819 820 821
* Mon Jun 06 2005 Lenz Grimmer <lenz@mysql.com>

- added mysql_client_test to the "bench" subpackage (BUG 10676)
822
- added the libndbclient static and shared libraries (BUG 10676)
823 824 825 826 827 828 829 830

* Wed Jun 01 2005 Lenz Grimmer <lenz@mysql.com>

- use "mysqldatadir" variable instead of hard-coding the path multiple times
- use the "mysqld_user" variable on all occasions a user name is referenced
- removed (incomplete) Brazilian translations
- removed redundant release tags from the subpackage descriptions

831 832 833 834
* Wed May 25 2005 Joerg Bruehe <joerg@mysql.com>

- Added a "make clean" between separate calls to "BuildMySQL".

835 836 837 838
* Wed Apr 20 2005 Lenz Grimmer <lenz@mysql.com>

- Enabled the "blackhole" storage engine for the Max RPM

unknown's avatar
unknown committed
839
* Wed Apr 13 2005 Lenz Grimmer <lenz@mysql.com>
840 841 842 843

- removed the MySQL manual files (html/ps/texi) - they have been removed
  from the MySQL sources and are now available seperately.

844 845 846 847 848
* Mon Apr 4 2005 Petr Chardin <petr@mysql.com>

- old mysqlmanager, mysqlmanagerc and mysqlmanager-pwger renamed into
  mysqltestmanager, mysqltestmanager and mysqltestmanager-pwgen respectively

849 850 851 852 853
* Fri Mar 18 2005 Lenz Grimmer <lenz@mysql.com>

- Disabled RAID in the Max binaries once and for all (it has finally been
  removed from the source tree)

854 855
* Sun Feb 20 2005 Petr Chardin <petr@mysql.com>

856
- Install MySQL Instance Manager together with mysqld, touch mysqlmanager
857 858
  password file

859
* Mon Feb 14 2005 Lenz Grimmer <lenz@mysql.com>
unknown's avatar
unknown committed
860

861
- Fixed the compilation comments and moved them into the separate build sections
unknown's avatar
unknown committed
862 863 864
  for Max and Standard

* Mon Feb 7 2005 Tomas Ulin <tomas@mysql.com>
unknown's avatar
unknown committed
865 866 867 868 869

- enabled the "Ndbcluster" storage engine for the max binary
- added extra make install in ndb subdir after Max build to get ndb binaries
- added packages for ndbcluster storage engine

870 871 872 873
* Fri Jan 14 2005 Lenz Grimmer <lenz@mysql.com>

- replaced obsoleted "BuildPrereq" with "BuildRequires" instead

874 875 876 877
* Thu Jan 13 2005 Lenz Grimmer <lenz@mysql.com>

- enabled the "Federated" storage engine for the max binary

878 879 880 881 882
* Tue Jan 04 2005 Petr Chardin <petr@mysql.com>

- ISAM and merge storage engines were purged. As well as appropriate
  tools and manpages (isamchk and isamlog)

883 884 885 886 887 888
* Thu Dec 31 2004 Lenz Grimmer <lenz@mysql.com>

- enabled the "Archive" storage engine for the max binary
- enabled the "CSV" storage engine for the max binary
- enabled the "Example" storage engine for the max binary

889 890 891 892
* Thu Aug 26 2004 Lenz Grimmer <lenz@mysql.com>

- MySQL-Max now requires MySQL-server instead of MySQL (BUG 3860)

893 894 895 896 897
* Fri Aug 20 2004 Lenz Grimmer <lenz@mysql.com>

- do not link statically on IA64/AMD64 as these systems do not have
  a patched glibc installed

898 899 900 901 902
* Tue Aug 10 2004 Lenz Grimmer <lenz@mysql.com>

- Added libmygcc.a to the devel subpackage (required to link applications
  against the the embedded server libmysqld.a) (BUG 4921)

903 904 905 906
* Mon Aug 09 2004 Lenz Grimmer <lenz@mysql.com>

- Added EXCEPTIONS-CLIENT to the "devel" package

907 908 909 910 911
* Thu Jul 29 2004 Lenz Grimmer <lenz@mysql.com>

- disabled OpenSSL in the Max binaries again (the RPM packages were the
  only exception to this anyway) (BUG 1043)

912 913 914 915 916
* Wed Jun 30 2004 Lenz Grimmer <lenz@mysql.com>

- fixed server postinstall (mysql_install_db was called with the wrong
  parameter)

917 918 919 920 921
* Thu Jun 24 2004 Lenz Grimmer <lenz@mysql.com>

- added mysql_tzinfo_to_sql to the server subpackage
- run "make clean" instead of "make distclean"

922 923 924 925
* Mon Apr 05 2004 Lenz Grimmer <lenz@mysql.com>

- added ncurses-devel to the build prerequisites (BUG 3377)

926 927 928
* Thu Feb 12 2004 Lenz Grimmer <lenz@mysql.com>

- when using gcc, _always_ use CXX=gcc 
929
- replaced Copyright with License field (Copyright is obsolete)
930

931 932 933 934
* Tue Feb 03 2004 Lenz Grimmer <lenz@mysql.com>

- added myisam_ftdump to the Server package

935 936 937 938
* Tue Jan 13 2004 Lenz Grimmer <lenz@mysql.com>

- link the mysql client against libreadline instead of libedit (BUG 2289)

939 940 941 942
* Mon Dec 22 2003 Lenz Grimmer <lenz@mysql.com>

- marked /etc/logrotate.d/mysql as a config file (BUG 2156)

943 944 945 946
* Fri Dec 13 2003 Lenz Grimmer <lenz@mysql.com>

- fixed file permissions (BUG 1672)

947 948 949 950
* Thu Dec 11 2003 Lenz Grimmer <lenz@mysql.com>

- made testing for gcc3 a bit more robust

unknown's avatar
unknown committed
951 952 953 954
* Fri Dec 05 2003 Lenz Grimmer <lenz@mysql.com>

- added missing file mysql_create_system_tables to the server subpackage

955 956 957 958 959
* Fri Nov 21 2003 Lenz Grimmer <lenz@mysql.com>

- removed dependency on MySQL-client from the MySQL-devel subpackage
  as it is not really required. (BUG 1610)

960 961 962 963 964 965
* Fri Aug 29 2003 Lenz Grimmer <lenz@mysql.com>

- Fixed BUG 1162 (removed macro names from the changelog)
- Really fixed BUG 998 (disable the checking for installed but
  unpackaged files)

unknown's avatar
unknown committed
966 967
* Tue Aug 05 2003 Lenz Grimmer <lenz@mysql.com>

968 969
- Fixed BUG 959 (libmysqld not being compiled properly)
- Fixed BUG 998 (RPM build errors): added missing files to the
unknown's avatar
unknown committed
970
  distribution (mysql_fix_extensions, mysql_tableinfo, mysqldumpslow,
971
  mysql_fix_privilege_tables.1), removed "-n" from install section.
unknown's avatar
unknown committed
972

973 974 975
* Wed Jul 09 2003 Lenz Grimmer <lenz@mysql.com>

- removed the GIF Icon (file was not included in the sources anyway)
976
- removed unused variable shared_lib_version
977 978 979 980 981 982 983 984
- do not run automake before building the standard binary
  (should not be necessary)
- add server suffix '-standard' to standard binary (to be in line
  with the binary tarball distributions)
- Use more RPM macros (_exec_prefix, _sbindir, _libdir, _sysconfdir,
  _datadir, _includedir) throughout the spec file.
- allow overriding CC and CXX (required when building with other compilers)

985 986 987
* Fri May 16 2003 Lenz Grimmer <lenz@mysql.com>

- re-enabled RAID again
unknown's avatar
unknown committed
988

989 990 991 992
* Wed Apr 30 2003 Lenz Grimmer <lenz@mysql.com>

- disabled MyISAM RAID (--with-raid) - it throws an assertion which
  needs to be investigated first.
unknown's avatar
unknown committed
993

994 995 996
* Mon Mar 10 2003 Lenz Grimmer <lenz@mysql.com>

- added missing file mysql_secure_installation to server subpackage
997
  (BUG 141)
998

999 1000 1001 1002 1003 1004
* Tue Feb 11 2003 Lenz Grimmer <lenz@mysql.com>

- re-added missing pre- and post(un)install scripts to server subpackage
- added config file /etc/my.cnf to the file list (just for completeness)
- make sure to create the datadir with 755 permissions

1005 1006 1007 1008 1009
* Mon Jan 27 2003 Lenz Grimmer <lenz@mysql.com>

- removed unused CC and CXX variables
- CFLAGS and CXXFLAGS should honor RPM_OPT_FLAGS

1010 1011 1012 1013 1014 1015
* Fri Jan 24 2003 Lenz Grimmer <lenz@mysql.com>

- renamed package "MySQL" to "MySQL-server"
- fixed Copyright tag
- added mysql_waitpid to client subpackage (required for mysql-test-run)

1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
* Wed Nov 27 2002 Lenz Grimmer <lenz@mysql.com>

- moved init script from /etc/rc.d/init.d to /etc/init.d (the majority of 
  Linux distributions now support this scheme as proposed by the LSB either
  directly or via a compatibility symlink)
- Use new "restart" init script action instead of starting and stopping
  separately
- Be more flexible in activating the automatic bootup - use insserv (on
  older SuSE versions) or chkconfig (Red Hat, newer SuSE versions and
  others) to create the respective symlinks

1027 1028 1029 1030 1031
* Wed Sep 25 2002 Lenz Grimmer <lenz@mysql.com>

- MySQL-Max now requires MySQL >= 4.0 to avoid version mismatches
  (mixing 3.23 and 4.0 packages)

1032 1033 1034 1035 1036 1037 1038
* Fri Aug 09 2002 Lenz Grimmer <lenz@mysql.com>
 
- Turn off OpenSSL in MySQL-Max for now until it works properly again
- enable RAID for the Max binary instead
- added compatibility link: safe_mysqld -> mysqld_safe to ease the
  transition from 3.23

1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
* Thu Jul 18 2002 Lenz Grimmer <lenz@mysql.com>

- Reworked the build steps a little bit: the Max binary is supposed
  to include OpenSSL, which cannot be linked statically, thus trying
	to statically link against a special glibc is futile anyway
- because of this, it is not required to make yet another build run
  just to compile the shared libs (saves a lot of time)
- updated package description of the Max subpackage
- clean up the BuildRoot directory afterwards

1049 1050 1051 1052 1053 1054 1055
* Mon Jul 15 2002 Lenz Grimmer <lenz@mysql.com>

- Updated Packager information
- Fixed the build options: the regular package is supposed to
  include InnoDB and linked statically, while the Max package
	should include BDB and SSL support

1056 1057 1058 1059 1060 1061 1062 1063
* Fri May 03 2002 Lenz Grimmer <lenz@mysql.com>

- Use more RPM macros (e.g. infodir, mandir) to make the spec
  file more portable
- reorganized the installation of documentation files: let RPM
  take care of this
- reorganized the file list: actually install man pages along
  with the binaries of the respective subpackage
1064
- do not include libmysqld.a in the devel subpackage as well, if we
1065 1066 1067
  have a special "embedded" subpackage
- reworked the package descriptions

unknown's avatar
unknown committed
1068 1069 1070 1071
* Mon Oct  8 2001 Monty

- Added embedded server as a separate RPM

1072 1073 1074 1075
* Fri Apr 13 2001 Monty

- Added mysqld-max to the distribution

1076 1077 1078 1079
* Tue Jan 2  2001  Monty

- Added mysql-test to the bench package

1080
* Fri Aug 18 2000 Tim Smith <tim@mysql.com>
1081 1082 1083 1084

- Added separate libmysql_r directory; now both a threaded
  and non-threaded library is shipped.

unknown's avatar
unknown committed
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
* Wed Sep 28 1999 David Axmark <davida@mysql.com>

- Added the support-files/my-example.cnf to the docs directory.

- Removed devel dependency on base since it is about client
  development.

* Wed Sep 8 1999 David Axmark <davida@mysql.com>

- Cleaned up some for 3.23.

* Thu Jul 1 1999 David Axmark <davida@mysql.com>

- Added support for shared libraries in a separate sub
  package. Original fix by David Fox (dsfox@cogsci.ucsd.edu)

- The --enable-assembler switch is now automatically disables on
  platforms there assembler code is unavailable. This should allow
  building this RPM on non i386 systems.

* Mon Feb 22 1999 David Axmark <david@detron.se>

- Removed unportable cc switches from the spec file. The defaults can
  now be overridden with environment variables. This feature is used
  to compile the official RPM with optimal (but compiler version
  specific) switches.

- Removed the repetitive description parts for the sub rpms. Maybe add
  again if RPM gets a multiline macro capability.

- Added support for a pt_BR translation. Translation contributed by
  Jorge Godoy <jorge@bestway.com.br>.

* Wed Nov 4 1998 David Axmark <david@detron.se>

- A lot of changes in all the rpm and install scripts. This may even
  be a working RPM :-)

* Sun Aug 16 1998 David Axmark <david@detron.se>

- A developers changelog for MySQL is available in the source RPM. And
  there is a history of major user visible changed in the Reference
  Manual.  Only RPM specific changes will be documented here.