forked from mysqludf/lib_mysqludf_sys
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 87fda59
Showing
6 changed files
with
784 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
LIBDIR=/usr/lib | ||
|
||
install: | ||
gcc -Wall -I/usr/include/mysql -I. -shared lib_mysqludf_sys.c -o $(LIBDIR)/lib_mysqludf_sys.so |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#!/bin/bash | ||
# lib_mysqludf_sys - a library with miscellaneous (operating) system level functions | ||
# Copyright (C) 2007 Roland Bouman | ||
# Copyright (C) 2008-2009 Roland Bouman and Bernardo Damele A. G. | ||
# web: http://www.mysqludf.org/ | ||
# email: [email protected], [email protected] | ||
# | ||
# This library is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Lesser General Public | ||
# License as published by the Free Software Foundation; either | ||
# version 2.1 of the License, or (at your option) any later version. | ||
# | ||
# This library is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public | ||
# License along with this library; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
|
||
echo "Compiling the MySQL UDF" | ||
make | ||
|
||
if test $? -ne 0; then | ||
echo "ERROR: You need libmysqlclient development software installed " | ||
echo "to be able to compile this UDF, on Debian/Ubuntu just run:" | ||
echo "apt-get install libmysqlclient15-dev" | ||
exit 1 | ||
else | ||
echo "MySQL UDF compiled successfully" | ||
fi | ||
|
||
echo -e "\nPlease provide your MySQL root password" | ||
|
||
mysql -u root -p mysql < lib_mysqludf_sys.sql | ||
|
||
if test $? -ne 0; then | ||
echo "ERROR: unable to install the UDF" | ||
exit 1 | ||
else | ||
echo "MySQL UDF installed successfully" | ||
fi |
Oops, something went wrong.