From 37b86d5049614bc43476bd1697406f0d07cd39bd Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Sat, 26 Dec 2015 16:01:06 +0000 Subject: [PATCH] fixed a fault in codepot.myysql --- codepot/etc/codepot.mysql | 1 - codepot/pecl-svn/config.m4 | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/codepot/etc/codepot.mysql b/codepot/etc/codepot.mysql index 9a52552d..97333082 100644 --- a/codepot/etc/codepot.mysql +++ b/codepot/etc/codepot.mysql @@ -170,7 +170,6 @@ CREATE TABLE file ( updatedby VARCHAR(32) NOT NULL, UNIQUE KEY file_id (projectid, name), - UNIQUE KEY (encname), INDEX file_tagged_name (projectid, tag, name), CONSTRAINT file_projectid FOREIGN KEY (projectid) REFERENCES project(id) diff --git a/codepot/pecl-svn/config.m4 b/codepot/pecl-svn/config.m4 index 258f1ca4..d7a8da8b 100755 --- a/codepot/pecl-svn/config.m4 +++ b/codepot/pecl-svn/config.m4 @@ -14,7 +14,7 @@ PHP_ARG_WITH(svn-apr, for specifying the location of apr for svn, if test "$PHP_SVN" != "no"; then AC_MSG_CHECKING([for svn includes]) - for i in $PHP_SVN /usr/local /usr /opt /sw; do + for i in $PHP_SVN /usr/local /usr /opt /sw /usr/pkg; do if test -r $i/include/subversion-1/svn_client.h ; then SVN_DIR=$i/include/subversion-1 PHP_SVN_INCLUDES="-I$SVN_DIR" @@ -37,7 +37,7 @@ if test "$PHP_SVN" != "no"; then fi AC_MSG_CHECKING([for apr and apr-util]) - for i in $PHP_SVN_APR $PHP_SVN /usr/local /usr /opt /sw; do + for i in $PHP_SVN_APR $PHP_SVN /usr/local /usr /opt /sw /usr/pkg; do dnl APR 1.0 tests if test -r $i/bin/apr-1-config ; then apr_config_path="$i/bin/apr-1-config"