MySQL 3.22.32 컴파일 패치

feanor의 이미지

저처럼 요즘 리눅스 배포판에서 MySQL 3.2x를 컴파일해야하는 비참한 처지에 계신 분들을 위해 약간의 삽질로 패치를 만들었습니다. 도움이 되기를 바라며 삼가 당신의 명복을 빕니다.

원본 소스는 데비안 우디의 orig.tar.gz을 사용했습니다. MySQL 사이트에 가도 3.2x 버전은 소스 릴리즈 파일이 없습니다.
http://archive.debian.org/pool/main/m/mysql/mysql_3.22.32.orig.tar.gz

패치하고 나면 RHEL 4.5 에서 정상적으로 컴파일되고 실행됩니다. 그러나 MySQL 3.2x 버전은 LinuxThreads를 사용하는데 최근의 glibc 버전에서는 LinuxThreads가 아예 없어졌기 때문에 더 최신 배포판(예를 들어 RHEL 5)에서는 컴파일이 안 됩니다.

검색하는 분들의 편의를 위해 컴파일 에러 메시지를 적어둡니다.

c++ -DUNDEF_THREADS_HACK -I./../include -I../include                           -I./.. -I.. -I..    -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -DDBUG_OFF   -fno-implicit-templates -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -c mysql.cc
In file included from ./../include/m_string.h:15,
                 from mysql.cc:16:
/usr/include/string.h:218: error: declaration of `char* strcasestr(const char*, const char*) throw ()' throws different exceptions
./../include/my_sys.h:392: error: than previous declaration `char* strcasestr(const char*, const char*)'

include/my_sys.h 에서 strcasestr 의 선언을 주석처리합니다.

c++ -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -DDBUG_OFF -fno-implicit-templates -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -rdynamic -o .libs/mysql mysql.o readline.o sql_string.o completion_hash.o ../readline/libreadline.a -lncurses .libs/libmysqlclient.so -lnsl -lm -lz -lcrypt -lnsl -lm -lz -lcrypt -Wl,--rpath -Wl,/root/local/lib/mysql
.libs/libmysqlclient.so: undefined reference to `errno'
collect2: ld returned 1 exit status

include/my_sys.h 에서 extern int errno 를 errno.h 를 #include 하도록 바꿉니다.

c++ -DMYSQL_SERVER                      -DDEFAULT_MYSQL_HOME="\"/root/local\"" -DDATADIR="\"/root/local/var\""                  -DSHAREDIR="\"/root/local/share/mysql\""                        -DHAVE_CONFIG_H -I./../include                 -I./../regex                     -I. -I../include -I.. -I.    -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -DDBUG_OFF   -fno-implicit-templates -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -c item.cc
In file included from mysql_priv.h:20,
                 from item.cc:19:
/usr/include/signal.h:380: error: `void (*signal)(int)' redeclared as different kind of symbol
/usr/include/signal.h:93: error: previous declaration of `void (* signal(int, void (*)(int)))(int)'
/usr/include/signal.h:380: error: declaration of `void (*signal)(int)'
/usr/include/signal.h:93: error: conflicts with previous declaration `void (* signal(int, void (*)(int)))(int)'
/usr/include/signal.h:380: error: expected primary-expression before "int"
/usr/include/signal.h:380: error: expected `)' before "int"

include/global.h 에서 sigset 을 signal 로 #define 하는 부분을 주석처리합니다.

File attachments: 
첨부파일 크기
Plain text icon mysql-3.22.32-compile.txt1.55 KB

댓글

익명 사용자의 이미지

익명 사용자의 이미지

랜덤여신의 이미지

와... 정말 눈물이 눈앞을 가리네요. ㅠㅠ

수고하셨습니다.
----
블로그 / 위키 / 리눅스 스크린샷 갤러리

monovision의 이미지

음.. 저렇게 까지나 삽질을 해야 하는건가요 ?
RHEL5 에서는 테스트를 해보지는 못했지만...

Cent4.x, Fedora6 에서는 mysql-3.23.58 버전이

/usr/include/pthread.h 를 열어서.. 최상단에 아래의 내용을 삽입하면 정상적으로 컴파일이 됩니다.

/* Linuxthreads */

RHEL5 은 없어서 테스트를 못해보겠고.. 클론인 Cent5 에서는 한 번 테스트 해보고 올리겠습니다.

=========================

테스트 결과 아무 문제 없이 설치가 잘됩니다.

급하게 vmware 에 Cent5.0 설치하고 자질구레한 옵션은 다 빼고 prefix 만 줬습니다.

configure 시에 다른 옵션을 다 주어도 크게 문제는 없을 거라고 생각합니다. ^^

monovision의 이미지

아, 그리고.. 구버전의 mysql 은
http://ftp.superuser.co.kr/pub/mysql
에 가시면 일부 구하실 수 있습니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.