diff -ru3N Msql-Mysql-modules-1.2209_orig/Makefile.PL Msql-Mysql-modules-1.2209_my/Makefile.PL --- Msql-Mysql-modules-1.2209_orig/Makefile.PL Wed Oct 13 12:44:45 1999 +++ Msql-Mysql-modules-1.2209_my/Makefile.PL Tue Nov 30 13:36:50 1999 @@ -274,6 +274,10 @@ --msql-install Install DBD::mSQL and related files --msql1-install Install DBD::mSQL1 and related files + --nomysql-install Do not install DBD::mysql and related files + --nomsql-install Do not install DBD::mSQL and related files + --nomsql1-install Do not install DBD::mSQL1 and related files + --mysql-install-nodbd Install Mysql and related files --msql-install-nodbd Install Msql and related files --msql1-install-nodbd Install Msql1 and related files diff -ru3N Msql-Mysql-modules-1.2209_orig/README.RPM Msql-Mysql-modules-1.2209_my/README.RPM --- Msql-Mysql-modules-1.2209_orig/README.RPM Wed Dec 31 19:00:00 1969 +++ Msql-Mysql-modules-1.2209_my/README.RPM Tue Nov 30 13:41:21 1999 @@ -0,0 +1,21 @@ + +README.RPM +Tue Nov 30 1999 + +For those of you who are packaging this perl module using a tool such +as RPM, the configuration prompts in Makefile.PL are kind of a problem, +becuase the build process must be automated inside of a shell script. + +It is possible to specify all of the configuration for Makefile.PL on the +command line using a few options. For documenation on these options type +"perl Makefile.PL --help". + +As a quick example, here is the %build section from an RPM SPEC file +for a perl-DBD-mysql package: + +> %build +> CFLAGS="$RPM_OPT_FLAGS" perl Makefile.PL \ +> --noprompt --mysql-install --nomsql-install --nomsql1-install \ +> --mysql-incdir=/usr/include/mysql --mysql-libdir=/usr/lib/mysql +> make +