|
|
|
| |||||||||
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
||||
|
||||
|
FreeBSD: make error (ambiguous output redirect) when compiling proftpd
I am having a problem compiling ProFTPd on FreeBSD 5.3-RELEASE. Yes, I know I can install the port/package, but that's not what I'm trying to do.
Here's what I'm doing: Code:
./configure --prefix=/usr/local/proftpd --exec-prefix=/usr/local --enable=dso --with-shared=mod_tls:mod_sql:mod_sql_mysql:mod_ifsession:mod_rewrite make Code:
SED=/usr/bin/sed: Command not found. Xsed=/usr/bin/sed -e s/^X//: Command not found. Ambiguous output redirect. *** Error code 1 Stop in /usr/src/proftpd-1.3.0rc2/modules. *** Error code1 Stop in /usr/src/proftpd-1.3.0rc2. Does anybody have any idea what the problem is, and more importantly, how to fix it?
__________________
# Jeremy Explain your problem instead of asking how to do what you decided was the solution. |
|
#2
|
|||
|
|||
|
Sorry no direct help, but this looks suspicious:
SED=/usr/bin/sed: Command not found. Xsed=/usr/bin/sed -e s/^X//: Command not found. These are not commands, these are variable assignments. There is a problem with the interpreter, maybe the shell but probably "make". Install "gmake" and try again. Maybe this is the problem. It stops in the modules directory, so the problem is most likely one of the modules. If the above doesn't help, remove them one by one and see when it compiles again. Manuel
__________________
-- Manuel Hirsch - Linux, FreeBSD, programming, administration articles, tutorials and more. |
|
#3
|
||||
|
||||
|
gmake definately gets me further. Now it throws a bunch of errors when it starts working with mod_sql_mysql, starting with this one:
Code:
mod_sql_mysql.c:135:19: mysql.h: No such file or directory |
|
#4
|
||||
|
||||
|
Absolutely. mysql.h is part of the C source code for mysql.
__________________
Up the Irons What Would Jimi Do? Smash amps. Burn guitar. Take the groupies home. "Death Before Dishonour, my Friends!!" - Bruce D ickinson, Iron Maiden Aug 20, 2005 @ OzzFest Down with Sharon Osbourne Puzzle of the Month solved by sizeablegrin, etienne141 and L7Sqr, superior C/C++ programmers of the month |
|
#5
|
||||
|
||||
|
I just had to find that file and a lib file for mysql and include the paths to those files in the ./configure with --with-includes= and --with-libraries=
Simple enough. Thanks. |
| Viewing: Dev Shed Forums > Operating Systems > BSD Help > FreeBSD: make error (ambiguous output redirect) when compiling proftpd |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|