fixed a fault in codepot.myysql

This commit is contained in:
hyung-hwan 2015-12-26 16:01:06 +00:00
parent 8fa4eecd05
commit 37b86d5049
2 changed files with 2 additions and 3 deletions

View File

@ -170,7 +170,6 @@ CREATE TABLE file (
updatedby VARCHAR(32) NOT NULL, updatedby VARCHAR(32) NOT NULL,
UNIQUE KEY file_id (projectid, name), UNIQUE KEY file_id (projectid, name),
UNIQUE KEY (encname),
INDEX file_tagged_name (projectid, tag, name), INDEX file_tagged_name (projectid, tag, name),
CONSTRAINT file_projectid FOREIGN KEY (projectid) REFERENCES project(id) CONSTRAINT file_projectid FOREIGN KEY (projectid) REFERENCES project(id)

View File

@ -14,7 +14,7 @@ PHP_ARG_WITH(svn-apr, for specifying the location of apr for svn,
if test "$PHP_SVN" != "no"; then if test "$PHP_SVN" != "no"; then
AC_MSG_CHECKING([for svn includes]) 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 if test -r $i/include/subversion-1/svn_client.h ; then
SVN_DIR=$i/include/subversion-1 SVN_DIR=$i/include/subversion-1
PHP_SVN_INCLUDES="-I$SVN_DIR" PHP_SVN_INCLUDES="-I$SVN_DIR"
@ -37,7 +37,7 @@ if test "$PHP_SVN" != "no"; then
fi fi
AC_MSG_CHECKING([for apr and apr-util]) 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 dnl APR 1.0 tests
if test -r $i/bin/apr-1-config ; then if test -r $i/bin/apr-1-config ; then
apr_config_path="$i/bin/apr-1-config" apr_config_path="$i/bin/apr-1-config"