On Fri, 19 Nov 2004, Jeff Malloy wrote: > Making the changes results in the following (I have not included all of > the make output - just the beginning). While 'perl Makefile.PL' was OK > the 'make' was not pleased. Any other thoughts? > > Jeff
> root# make -f Makefile > cc -c -I/Library/Perl/5.8.1/darwin-thread-multi-2level/auto/DBI/ > -I/usr/include/mysql -O3 -fno-omit-frame-pointer -arch ppc -g -pipe > -pipe -fno-common -DPERL_DARWIN -no-cpp-precomp -fno-strict-aliasing > -I/usr/local/include -Os -DVERSION=\"2.9004\" -DXS_VERSION=\"2.9004\" > "-I/System/Library/Perl/5.8.1/darwin-thread-multi-2level/CORE" > dbdimp.c > In file included from dbdimp.c:19: > dbdimp.h:21:49: mysql.h: No such file or directory > dbdimp.h:22:49: errmsg.h: No such file or directory > In file included from dbdimp.c:19: You are missing your mysql header files, or make can't find them in directories specified for the includes.... The header files are normally part of the mysql source distribution, or if you are using some sort of package manager, the header files tend to be included in the devel* packages. Rudy
