diff options
author | ale <ale@FreeBSD.org> | 2004-09-24 16:20:02 +0000 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2004-09-24 16:20:02 +0000 |
commit | a4e424c1991136e676c5d006554a4dca05069ea8 (patch) | |
tree | f9cc2ef548576a86cecffb417f35ba797dfda8b2 /databases/mysql41-server | |
parent | 766575aa7d666ef4b5444ae344289f02cb25a23f (diff) | |
download | FreeBSD-ports-a4e424c1991136e676c5d006554a4dca05069ea8.zip FreeBSD-ports-a4e424c1991136e676c5d006554a4dca05069ea8.tar.gz |
Fix build on FreeBSD 4.X.
PR: ports/71352
Submitted by: Douglas Thrift <douglas@douglasthrift.net>
Approved by: portmgr (marcus)
Diffstat (limited to 'databases/mysql41-server')
-rw-r--r-- | databases/mysql41-server/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/mysql41-server/Makefile b/databases/mysql41-server/Makefile index 63a4c59..ba26268 100644 --- a/databases/mysql41-server/Makefile +++ b/databases/mysql41-server/Makefile @@ -46,7 +46,6 @@ CONFIGURE_ARGS= --localstatedir=${DB_DIR} \ --with-low-memory \ --with-ndbcluster \ --with-comment='FreeBSD port: ${PKGNAME}' \ - --with-zlib-dir=/usr \ --enable-thread-safe-client .ifdef USE_MYSQL @@ -143,6 +142,7 @@ pre-fetch: post-patch: @${REINPLACE_CMD} -e "s|SUBDIRS =|SUBDIRS = include @docs_dirs@ @sql_server_dirs@ scripts man support-files|g" ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e "s|all: config.h|all: config.h all-local|g" ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e "s|bin_SCRIPTS =|bin_SCRIPTS = @server_scripts@ mysql_create_system_tables|g" ${WRKSRC}/scripts/Makefile.in @${REINPLACE_CMD} -e "s|dist_pkgdata_DATA =|dist_pkgdata_DATA = fill_help_tables.sql|g" ${WRKSRC}/scripts/Makefile.in @${REINPLACE_CMD} -e "s|man_MANS =|man_MANS = ${MAN1}|g" ${WRKSRC}/man/Makefile.in |