Re: Kamailio Sip Server Port Makefile

2012-02-08 Thread Roland Smith
On Wed, Feb 08, 2012 at 12:09:15AM +0200, Serhat Akca wrote:
 Hello
 
  
 
 Is there any port that I can compile Kamailio 3.2.2 ? 
 
Only the old version, openser is in ports as net/openser.

Roland
-- 
R.F.Smith   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


pgpcnoKhOUhYc.pgp
Description: PGP signature


Kamailio Sip Server Port Makefile

2012-02-07 Thread Serhat Akca
Hello

 

Is there any port that I can compile Kamailio 3.2.2 ? 

Could you send me Kamailio port Makefile please ?

 

Regards

 

Serhat AKCA

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


mysql50-server port in 7.0

2008-04-24 Thread Shawn Badger
Hi, I'm new to FreeBSD and it has impressed me so far.  I came across a 
slight problem last night when trying to build mysql50 from ports - the 
build failed stating that C++ does not support the type 'long long'.  
The other ports I've tried have built fine, and I stripped my kernel 
without a hitch.  Is the port broken?  I could obviously go and hack the 
code into submission, but I refuse to believe that was the intended 
approach.


Thanks,
Shawn
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: mysql50-server port in 7.0

2008-04-24 Thread Gary Newcombe
On Thu, 24 Apr 2008 09:02:35 -0600, Shawn Badger [EMAIL PROTECTED] wrote:

 Hi, I'm new to FreeBSD and it has impressed me so far.  I came across a 
 slight problem last night when trying to build mysql50 from ports - the 
 build failed stating that C++ does not support the type 'long long'.  
 The other ports I've tried have built fine, and I stripped my kernel 
 without a hitch.  Is the port broken?  I could obviously go and hack the 
 code into submission, but I refuse to believe that was the intended 
 approach.

I built this early this week on 7.0-RELEASE amd64 - no problems for me.

 
 Thanks,
 Shawn
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Mysql 51 Server port patch

2008-03-24 Thread Christopher Sean Hilton
I submitted a PR on this. In short the problem that I'm having is that  
mysqld becomes a daemon and returns control the rcorder subsystem  
before it has established it unix domain listening socket. On my  
system the next daemon to run is jabberd. Jabberd (from the jabberd2  
port) has a component sm which depends on mysql for it's data storage.  
Since it takes a second on my system for mysqld to establish it's  
listening socket sm fails which takes down all of jabberd I  
patched the mysql-server startup script to wait for up to 15 seconds  
before termination. This fixes the problem on my side. According to  
the email I just got this went in as PR ports/122063


-- Chris

PR follows

Problem:
The rc.d script shipped with the port of mysql server exits  
immediately after mysqld starts. This normally wouldn't be a problem  
but the mysql daemon exits about a second before it has established  
it's unix domain listening socket: /tmp/mysql. The problem here is  
that the rc startup system can queue the next daemon to start before / 
tmp/mysql is available. If the next daemon needs mysql it will fail  
and exit. On my system rcorder starts mysql-server and then  
immediately follows up with jabberd. Since mysql doesn't appear ready  
for about a  second jabberd fails and exits.


I've attached a patch which waits for up to 15 seconds for the /tmp/ 
mysql socket to appear in the filesystem and exits as soon as it's  
available. This allows the next daemon in line to startup properly if  
it needs mysql. Note that I have had this problem with postfix up  
until I removed my mail information from mysql.


Repeat:
Build a system that uses mysql and jabber or postfix. Ensure that  
jabberd starts after mysql by hacking /usr/local/etc/rc.d/jabberd's ##  
REQUIRES line. Assuming you're not on some hot rod of a machine check  
your logs for jabberd2's failure line in the service manager.


Fix:
This may not adhere to the strictest rules of the rcorder system but  
my solution is to hack the provider's (mysql-server) startup script.  
The goal was to prevent the script from exiting until either the  
listening socket is established or a 15 second timeout has passed.


A better solution would be for mysqld to establish the listening  
socket first (even if it ignores incoming connections for a little  
bit) but that's much higher effort.


Patch:
--- mysql-server.sh.in  2008-03-25 00:10:14.0 -0400
+++ mysql-server.sh.in.orig 2008-03-25 00:02:58.0 -0400
@@ -18,8 +18,6 @@
 #  Base database directory.
 # mysql_args (str):Custom additional arguments to be passed
 #  to mysqld_safe (default empty).
-# mysql_conn_socket (str): Defaults to /tmp/mysql.sock
-#  The unix domain socket the daemon listens  
on.

 #

 . %%RC_SUBR%%
@@ -32,17 +30,15 @@
 : ${mysql_enable=NO}
 : ${mysql_limits=NO}
 : ${mysql_dbdir=/var/db/mysql}
-: ${mysql_conn_socket=/tmp/mysql.sock}
 : ${mysql_args=}

 mysql_user=mysql
 mysql_limits_args=-e -U ${mysql_user}
 pidfile=${mysql_dbdir}/`/bin/hostname`.pid
 command=%%PREFIX%%/bin/mysqld_safe
-command_args=--defaults-extra-file=${mysql_dbdir}/my.cnf --user=$ 
{mysql_user} --datadir=${mysql_dbdir} --pid-file=${pidfile} $ 
{mysql_args}
+command_args=--defaults-extra-file=${mysql_dbdir}/my.cnf --user=$ 
{mysql_user} --datadir=${mysql_dbdir} --pid-file=${pidfile} $ 
{mysql_args}  /dev/null 

 procname=%%PREFIX%%/libexec/mysqld
 start_precmd=${name}_prestart
-start_cmd=${name}_start
 mysql_install_db=%%PREFIX%%/bin/mysql_install_db
 mysql_install_db_args=--ldata=${mysql_dbdir}

@@ -64,19 +60,4 @@
fi
 }

-mysql_start()
-{
-   local timeout=15
-
-   echo Starting ${name}
-
-   ${command} ${command_args}  /dev/null  /dev/null 21 
-   while [ ! -S ${mysql_conn_socket} -a ${timeout} -gt 0 ]; do
-   timeout=$(( timeout - 1 ))
-   sleep 1
-   done
-
-   return 0
-}
-
 run_rc_command $1

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Which knobs do I use to control BDB use in MySQL-server port?

2007-09-20 Thread Aliya Harbouri
Hi Dan,

One last thing (It's way past my bedtime here ;-p)

 See that --with-berkeley-db in there? :-(

A little digging in the mysql ditribution's source files dredged up
the CONF_COMMAND variable.

Do-ing,

 CONF_COMMAND=--without-berkeley-db; export $CONF_COMMAND
 perl -pi -e 
's/^(CONFIGURE_ARGS.*)with-berkeley-db(.*)$/$1without-berkeley-db$2/g'
Makefile

Seems to do the trick as far as the build /process/ goes,

 grep berkeley-db ./work/mysql-5.0.45/config.log | grep $ ./configure
  $ ./configure --localstatedir=/var/db/mysql --without-debug
--without-readline --without-libedit --without-bench
--without-extra-tools --with-libwrap --with-mysqlfs --with-low-memory
--with-comment=FreeBSD port: mysql-server-5.0.45
--enable-thread-safe-client --with-openssl=/usr/local
--enable-assembler --without-berkeley-db
--with-named-thread-libs=-pthread --prefix=/usr/local
--mandir=/usr/local/man --infodir=/usr/local/info/
--build=i386-portbld-freebsd6.2

See the --without-berkeley-db is there, now.  I'll check the build's
output with ldd when the build finishes.

For now, my pooch inists that it's lights out :-}

Ali
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Which knobs do I use to control BDB use in MySQL-server port?

2007-09-20 Thread Aliya Harbouri
 I'll check the build's output with ldd when the build finishes.

Looks like the simple workaround works :-)

 ldd /usr/local/libexec/mysqld
libz.so.3 = /lib/libz.so.3 (0x284a8000)
libwrap.so.4 = /usr/lib/libwrap.so.4 (0x284b9000)
libssl.so.5 = /usr/local/lib/libssl.so.5 (0x284c)
libcrypto.so.5 = /usr/local/lib/libcrypto.so.5 (0x284fc000)
libcrypt.so.3 = /lib/libcrypt.so.3 (0x28642000)
libstdc++.so.5 = /usr/lib/libstdc++.so.5 (0x2865a000)
libm.so.4 = /lib/libm.so.4 (0x28725000)
libpthread.so.2 = /lib/libpthread.so.2 (0x2873b000)
libc.so.6 = /lib/libc.so.6 (0x2876)

Port install's  done -- with No BDB.

Great!

Bye,

Ali
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Which knobs do I use to control BDB use in MySQL-server port?

2007-09-19 Thread Aliya Harbouri
Hi everybody,

I'm building my 1st FreeBSD-based box.  Yay, I guess ;-p

I've already installed Berkeley DB v46 from the Ports system.

Now, I'ts on to MySQL server.

I can easily build manually from source, configuring whatever I need.

But, I'm trying to get the Ports system's knobs figured out :-/

Building the databases/mysql50-server Port, I see (they'er all in
Makefile, yes?) my choices for knob-settings in make.conf are:

  WITH_OPENSSL=true
  WITH_PROC_SCOPE_PTH=yes
  BUILD_OPTIMIZED=yes
  WITH_INNODB=yes
  WITHOUT_ARCHIVE=true
  WITHOUT_CSV=true
  WITHOUT_FEDERATED=true
  WITHOUT_NDB=true

Turning INNODB on/off is clear.

But I haven't been able to grok how to

(1) Turn OFF use of BDB completely.  The build seems to default to the
bundled BDB

(2) Use the Port install of BDB v46 I mentioned above.


Can somebody explaing the right knobs to turn to do both?

Or, do I have to rely on manual configuration?

THanks a lot!

Ali
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Which knobs do I use to control BDB use in MySQL-server port?

2007-09-19 Thread Dan Nelson
In the last episode (Sep 18), Aliya Harbouri said:
 Building the databases/mysql50-server Port, I see (they'er all in
 Makefile, yes?) my choices for knob-settings in make.conf are:
 
   WITH_OPENSSL=true
   WITH_PROC_SCOPE_PTH=yes
   BUILD_OPTIMIZED=yes
   WITH_INNODB=yes
   WITHOUT_ARCHIVE=true
   WITHOUT_CSV=true
   WITHOUT_FEDERATED=true
   WITHOUT_NDB=true
 
 Turning INNODB on/off is clear.
 
 But I haven't been able to grok how to
 
 (1) Turn OFF use of BDB completely.  The build seems to default to the
 bundled BDB

Mysql 5.0's configure script doesn't seem to have a --without-bdb flag,
so it always gets built. 
 
 (2) Use the Port install of BDB v46 I mentioned above.

It does have a --with-berkeley-db=DIR flag, so you could add that to
CONFIGURE_ARGS to force an external bdb to be used instead of the one
bundled with mysql.  Note that the bdb engine has been removed from
mysql 5.1, so you should think about moving any bdb tables you might
already have to innodb.  Development on the bdb engine pretty much
stopped once innodb was available.

-- 
Dan Nelson
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Which knobs do I use to control BDB use in MySQL-server port?

2007-09-19 Thread Aliya Harbouri
Hi Dan!

  (1) Turn OFF use of BDB completely.  The build seems to default to the
  bundled BDB

 Mysql 5.0's configure script doesn't seem to have a --without-bdb flag,
 so it always gets built.

  (2) Use the Port install of BDB v46 I mentioned above.

 It does have a --with-berkeley-db=DIR flag, so you could add that to
 CONFIGURE_ARGS to force an external bdb to be used instead of the one
 bundled with mysql.  Note that the bdb engine has been removed from
 mysql 5.1, so you should think about moving any bdb tables you might
 already have to innodb.  Development on the bdb engine pretty much
 stopped once innodb was available.

Gotcha!

So, If I'm going to use the Port  make changes anyway, since,

 grep berkeley-db Makefile
   CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db

I suppose I might as well just do

 vi Makefile

  .if ${ARCH} == i386
-  CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db
+  CONFIGURE_ARGS+=--enable-assembler --without-berkeley-db
  .endif

I know about the BDB-engine removal, too.  Funny that this Port
doesn't give you that option.

Thanks a lot!

Ali
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Which knobs do I use to control BDB use in MySQL-server port?

2007-09-19 Thread Dan Nelson
In the last episode (Sep 19), Aliya Harbouri said:
   (1) Turn OFF use of BDB completely.  The build seems to default
   to the bundled BDB
 
  Mysql 5.0's configure script doesn't seem to have a --without-bdb
  flag, so it always gets built.
 
   (2) Use the Port install of BDB v46 I mentioned above.
 
  It does have a --with-berkeley-db=DIR flag, so you could add that
  to CONFIGURE_ARGS to force an external bdb to be used instead of
  the one bundled with mysql.  Note that the bdb engine has been
  removed from mysql 5.1, so you should think about moving any bdb
  tables you might already have to innodb.  Development on the bdb
  engine pretty much stopped once innodb was available.
 
 Gotcha!
 
 So, If I'm going to use the Port  make changes anyway, since,
 
  grep berkeley-db Makefile
CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db
 
 I suppose I might as well just do
 
  vi Makefile
 
   .if ${ARCH} == i386
 -  CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db
 +  CONFIGURE_ARGS+=--enable-assembler --without-berkeley-db
   .endif

I just tried it and it looks like that does disable bdb.  I never
noticed that line in the Makefile before :)

 I know about the BDB-engine removal, too.  Funny that this Port
 doesn't give you that option.
 
 Thanks a lot!
 
 Ali

-- 
Dan Nelson
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Which knobs do I use to control BDB use in MySQL-server port?

2007-09-19 Thread Aliya Harbouri
Hi Dan!

 I just tried it and it looks like that does disable bdb.  I never
 noticed that line in the Makefile before :)

Well, you'd think it should. But even with,

 grep berkeley-db ./Makefile
  CONFIGURE_ARGS+=--enable-assembler --without-berkeley-db

the build seems to /ignore/ the flag,

 grep berkeley-db ./work/mysql-5.0.45/config.log | grep $ ./configure
   $ ./configure --localstatedir=/var/db/mysql --without-debug
--without-readline --without-libedit --without-bench
--without-extra-tools --with-libwrap --with-mysqlfs --with-low-memory
--with-comment=FreeBSD port: mysql-server-5.0.45
--enable-thread-safe-client --with-openssl=/usr/local
--enable-assembler --with-berkeley-db
--with-named-thread-libs=-pthread --prefix=/usr/local
--mandir=/usr/local/man --infodir=/usr/local/info/
--build=i386-portbld-freebsd6.2

See that --with-berkeley-db in there? :-(

Ali
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Firebird 2 Server Port

2007-03-07 Thread DSA - JCR
Hi all


FreeBSD 6.2 i386

I am trying to make from ports the Firebird2-server and I have a problem
when doing it.

First, I was under root and when it going to make a message says that 
you must not be under root in order not conflict with SYSV semaphores and
then stop.

So I created a user and try to make the ports, but says that I have no
permissions.
I created a user in the gorup wheel, because I thougth that is with more
priviliges.

How can I make this port? I need it.



Thanks in advance

Juan Coruña
Desarrollo de Software Atlantico



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


postgresql80-server port broken?

2005-11-19 Thread Jeff D. Hamann
FreeBSD-ers,

I've been trying to get the postgresql80-server port to
work/install/anything (and actually I need to get the postgis port
working) with no success. Following the in(de)structions to install the
port (fbsd6):

MD5 (postgresql/postgresql-base-8.0.4.tar.bz2)

bobby# cd /usr/ports/databases/postgresql80-server
bobby# make install

... blah, blah, blah...

then

bobby# /usr/local/etc/rc.d/010.pgsql.sh initdb
The program postgres was found by /usr/local/bin/initdb
but was not the same version as initdb.
Check your installation.
bobby#

I've attempted to deinstall, reinstall, repeat until I'm blue in the face
(sign of insanity?). Has anyone gotten pgsql80 to install and work
properly under FreeBSD 6.0 (amd64)?

Is this something I'm (not)doing or is the port broken?

Jeff.

-- 
Jeff D. Hamann
Forest Informatics, Inc.
PO Box 1421
Corvallis, Oregon 97339-1421
phone 541-754-1428
fax 541-752-0288
[EMAIL PROTECTED]
www.forestinformatics.com

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Problems with MySQl Server port

2005-07-17 Thread perikillo
  Hi, i install freebsd 5.2, make the buildworld process and right now
is 5.2.1-RELEASE-p14 FreeBSD 5.2.1-RELEASE-p14.

  I update my ports and start to installing my favorites, then i
decide to setup some IDS, and i could  not install mysql50-server 
port because exit with this error:

pipe -march=pentium2 -D_THREAD_SAFE -MT dbug_analyze.o -MD -MP -MF .deps/dbug_a
nalyze.Tpo -c -o dbug_analyze.o dbug_analyze.c;  then mv -f .deps/dbug_analyze
.Tpo .deps/dbug_analyze.Po; else rm -f .deps/dbug_analyze.Tpo; exit 1; fi
/usr/local/bin/libtool15 --preserve-dup-deps --mode=link cc  -DDBUG_OFF -O -pipe
 -march=pentium2 -D_THREAD_SAFE-o dbug_analyze  dbug_analyze.o libdbug.a ../
mysys/libmysys.a ../strings/libmystrings.a -lc_r -lcrypt -lm  -lc_r
cc -DDBUG_OFF -O -pipe -march=pentium2 -D_THREAD_SAFE -o dbug_analyze dbug_analy
ze.o  libdbug.a ../mysys/libmysys.a ../strings/libmystrings.a -lcrypt -lm
/bin/rm -f example1.r
/usr/bin/sed -e 's!\\!!g' example1.c  example1.r
/bin/rm -f example2.r
/usr/bin/sed -e 's!\\!!g' example2.c  example2.r
/bin/rm -f example3.r
/usr/bin/sed -e 's!\\!!g' example3.c  example3.r
/bin/rm -f main.r
/usr/bin/sed -e 's!\\!!g' main.c  main.r
/bin/rm -f factorial.r
/usr/bin/sed -e 's!\\!!g' factorial.c  factorial.r
./factorial 1 2 3 4 5 | cat  output1.r
./factorial -\#t:o 2 3 | cat output2.r
./factorial -\#d:t:o 3 | cat output3.r
./factorial -\#d,result:o 4 | cat output4.r
./factorial -\#d:f,factorial:F:L:o 3 | cat output5.r
nroff -mm user.r  user.t
user.r:204: warning: can't find font `C'
user.r:773: warning [p 15, 5.8i]: can't break line
user.r:785: warning [p 15, 8.0i]: can't break line
user.r:795: warning [p 15, 9.8i]: can't break line
user.r:812: warning [p 16, 3.7i]: can't break line
user.r:814: warning [p 16, 3.8i]: cannot adjust line
user.r:1038: warning: indent cannot be negative
groff -mm user.r  user.ps
Making all in extra
if cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -I../include  -I../sql -DDBU
G_OFF -O -pipe -march=pentium2 -D_THREAD_SAFE -MT comp_err.o -MD -MP -MF .deps/
comp_err.Tpo -c -o comp_err.o comp_err.c;  then mv -f .deps/comp_err.Tpo .de
ps/comp_err.Po; else rm -f .deps/comp_err.Tpo; exit 1; fi
/usr/local/bin/libtool15 --preserve-dup-deps --mode=link cc  -DDBUG_OFF -O -pipe
 -march=pentium2 -D_THREAD_SAFE-o comp_err  comp_err.o ../mysys/libmysys.a
../dbug/libdbug.a ../strings/libmystrings.a -lc_r -lcrypt -lm  -lc_r
mkdir .libs
cc -DDBUG_OFF -O -pipe -march=pentium2 -D_THREAD_SAFE -o comp_err comp_err.o  ..
/mysys/libmysys.a ../dbug/libdbug.a ../strings/libmystrings.a -lcrypt -lm
../extra/comp_err  --charset=../sql/share/charsets  --out-dir=../sql/share/  --h
eader_file=../include/mysqld_error.h  --name_file=../include/mysqld_ername.h  --
state_file=../include/sql_state.h  --in_file=../sql/share/errmsg.txt
Segmentation fault (core dumped)
*** Error code 139

Stop in /usr/ports/databases/mysql50-server/work/mysql-5.0.9-beta/extra.
*** Error code 1

Stop in /usr/ports/databases/mysql50-server/work/mysql-5.0.9-beta.
*** Error code 1

Stop in /usr/ports/databases/mysql50-server/work/mysql-5.0.9-beta.
*** Error code 1

Stop in /usr/ports/databases/mysql50-server.


   I install first Mysql client without any problems, i am using
freebsd 5.2 because with 5.3, 5.4 and 5-stable my keyboard dosent work
with Xorg, and the only version of Xorg that is working very weel is
this one i am using right now to write this email,

xorg-6.7.0_1X.Org distribution metaport

  And is the package, not the port.

 Then about the error of mysql, someone knows how to fix this error?

  I have mysql4 and mysql41 options, but right now i want to know is
exist some patch for this.

  Thanks all.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


isc-dhcp3-server port

2005-04-13 Thread Tom Frontera
I'm having a problem when making this port:
===  Building for isc-dhcp3-server-3.0.2_7
Making all in common
cc -O -pipe   -D_PATH_DHCPD_CONF=\/usr/local/etc/dhcpd.conf\ 
-D_PATH_DHCPD_DB=\/var/db/dhcpd.leases\ 
-D_PATH_DHCPD_PID=\/var/run/dhcpd.pid\ 
-D_PATH_DHCRELAY_PID=\/var/run/dhcrelay.pid\ 
-D_PATH_DHCLIENT_CONF=\/usr/local/etc/dhclient.conf\ 
-D_PATH_DHCLIENT_SCRIPT=\/usr/local/sbin/dhclient-script\ 
-D_PATH_DHCLIENT_DB=\/var/db/dhclient.leases\ 
-D_PATH_DHCLIENT_PID=\/var/run/dhclient.pid\ -Dwarn=dhcp_warn 
-DNOMINUM -DPARANOIA -DJAIL -I/usr/local/include -DUSE_SSL 
-I/usr/include   -I/usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2  
-I/usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2/includes -O -Wall 
-Wno-unused -Werror  -c icmp.c
In file included from icmp.c:42:
/usr/include/netinet/ip.h:156: syntax error before `n_long'
/usr/include/netinet/ip.h:159: syntax error before `n_long'
In file included from icmp.c:43:
/usr/include/netinet/ip_icmp.h:64: syntax error before `n_short'
/usr/include/netinet/ip_icmp.h:71: syntax error before `n_short'
/usr/include/netinet/ip_icmp.h:93: syntax error before `n_time'
icmp.c: In function `icmp_echorequest':
icmp.c:169: structure has no member named `icd_seq'
icmp.c:174: structure has no member named `icd_id'
cc1: warnings being treated as errors
icmp.c: In function `icmp_echoreply':
icmp.c:247: warning: implicit declaration of function `IP_HL'
*** Error code 1

Stop in /usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2/work.freebsd/common.
*** Error code 1
Stop in /usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2/work.freebsd.
*** Error code 1
Stop in /usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2.
*** Error code 1
Stop in /usr/ports/net/isc-dhcp3-server.
Does anyone know how to fix this syntax error?
Thankx,
Tom
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: isc-dhcp3-server port

2005-04-13 Thread Joerg Pulz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Wed, 13 Apr 2005, Tom Frontera wrote:
I'm having a problem when making this port:
===  Building for isc-dhcp3-server-3.0.2_7
Making all in common
cc -O -pipe   -D_PATH_DHCPD_CONF=\/usr/local/etc/dhcpd.conf\ 
-D_PATH_DHCPD_DB=\/var/db/dhcpd.leases\ 
-D_PATH_DHCPD_PID=\/var/run/dhcpd.pid\ 
-D_PATH_DHCRELAY_PID=\/var/run/dhcrelay.pid\ 
-D_PATH_DHCLIENT_CONF=\/usr/local/etc/dhclient.conf\ 
-D_PATH_DHCLIENT_SCRIPT=\/usr/local/sbin/dhclient-script\ 
-D_PATH_DHCLIENT_DB=\/var/db/dhclient.leases\ 
-D_PATH_DHCLIENT_PID=\/var/run/dhclient.pid\ -Dwarn=dhcp_warn -DNOMINUM 
-DPARANOIA -DJAIL -I/usr/local/include -DUSE_SSL -I/usr/include 
-I/usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2 
-I/usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2/includes -O -Wall 
-Wno-unused -Werror  -c icmp.c
In file included from icmp.c:42:
/usr/include/netinet/ip.h:156: syntax error before `n_long'
/usr/include/netinet/ip.h:159: syntax error before `n_long'
In file included from icmp.c:43:
/usr/include/netinet/ip_icmp.h:64: syntax error before `n_short'
/usr/include/netinet/ip_icmp.h:71: syntax error before `n_short'
/usr/include/netinet/ip_icmp.h:93: syntax error before `n_time'
icmp.c: In function `icmp_echorequest':
icmp.c:169: structure has no member named `icd_seq'
icmp.c:174: structure has no member named `icd_id'
cc1: warnings being treated as errors
icmp.c: In function `icmp_echoreply':
icmp.c:247: warning: implicit declaration of function `IP_HL'
*** Error code 1

Stop in /usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2/work.freebsd/common.
*** Error code 1
Stop in /usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2/work.freebsd.
*** Error code 1
Stop in /usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2.
*** Error code 1
Stop in /usr/ports/net/isc-dhcp3-server.
Does anyone know how to fix this syntax error?
Hi,
i haven't seen this while i upgraded the port to 3.0.2 on my systems.
could you please provide some additional information e.g. which FreeBSD 
version ...

thanks
Joerg
- -- 
The beginning is the most important part of the work.
-Plato
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (FreeBSD)

iD8DBQFCXWuzSPOsGF+KA+MRAn15AJ99I17O+2TQn3BZQfnE+FEFqdptEACfSxDG
GDiNaqWiaGOUQDDxIQH9Fes=
=vE7G
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: isc-dhcp3-server port - [ScanMail certified]

2005-04-13 Thread Tom Frontera
FreeBSD 4.11-RELEASE
and I updated the ports, but that didn't help.
-Tom
Joerg Pulz wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Wed, 13 Apr 2005, Tom Frontera wrote:
I'm having a problem when making this port:
===  Building for isc-dhcp3-server-3.0.2_7
Making all in common
cc -O -pipe   -D_PATH_DHCPD_CONF=\/usr/local/etc/dhcpd.conf\ 
-D_PATH_DHCPD_DB=\/var/db/dhcpd.leases\ 
-D_PATH_DHCPD_PID=\/var/run/dhcpd.pid\ 
-D_PATH_DHCRELAY_PID=\/var/run/dhcrelay.pid\ 
-D_PATH_DHCLIENT_CONF=\/usr/local/etc/dhclient.conf\ 
-D_PATH_DHCLIENT_SCRIPT=\/usr/local/sbin/dhclient-script\ 
-D_PATH_DHCLIENT_DB=\/var/db/dhclient.leases\ 
-D_PATH_DHCLIENT_PID=\/var/run/dhclient.pid\ -Dwarn=dhcp_warn 
-DNOMINUM -DPARANOIA -DJAIL -I/usr/local/include -DUSE_SSL 
-I/usr/include -I/usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2 
-I/usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2/includes -O -Wall 
-Wno-unused -Werror  -c icmp.c
In file included from icmp.c:42:
/usr/include/netinet/ip.h:156: syntax error before `n_long'
/usr/include/netinet/ip.h:159: syntax error before `n_long'
In file included from icmp.c:43:
/usr/include/netinet/ip_icmp.h:64: syntax error before `n_short'
/usr/include/netinet/ip_icmp.h:71: syntax error before `n_short'
/usr/include/netinet/ip_icmp.h:93: syntax error before `n_time'
icmp.c: In function `icmp_echorequest':
icmp.c:169: structure has no member named `icd_seq'
icmp.c:174: structure has no member named `icd_id'
cc1: warnings being treated as errors
icmp.c: In function `icmp_echoreply':
icmp.c:247: warning: implicit declaration of function `IP_HL'
*** Error code 1

Stop in 
/usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2/work.freebsd/common.
*** Error code 1

Stop in /usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2/work.freebsd.
*** Error code 1
Stop in /usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2.
*** Error code 1
Stop in /usr/ports/net/isc-dhcp3-server.
Does anyone know how to fix this syntax error?

Hi,
i haven't seen this while i upgraded the port to 3.0.2 on my systems.
could you please provide some additional information e.g. which 
FreeBSD version ...

thanks
Joerg
- -- The beginning is the most important part of the work.
-Plato
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (FreeBSD)
iD8DBQFCXWuzSPOsGF+KA+MRAn15AJ99I17O+2TQn3BZQfnE+FEFqdptEACfSxDG
GDiNaqWiaGOUQDDxIQH9Fes=
=vE7G
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: isc-dhcp3-server port - [ScanMail certified]

2005-04-13 Thread Joerg Pulz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Wed, 13 Apr 2005, Tom Frontera wrote:
FreeBSD 4.11-RELEASE
and I updated the ports, but that didn't help.
[snip]
Hi,
here is a quick fix and a short description.
FIX: please run 'make config' again and DESELECT the DHCP_LDAP_SSL OPTION.
Description:
the isc-dhcp3-server port comes with it's own version of the ip.h and 
ip_icmp.h files. these can be found, once the ports source is extracted, 
in work/dhcp-3.0.2/includes/netinet/. the use of the DHCP_LDAP_SSL and 
OPENSSL_BASE OPTION add's an additional -I/usr/include to let the 
compiler find the right OpenSSL includes, which causes the 
problem on your system as your compiler is using the FreeBSD version of 
netinet/ip.h and netinet/ip_icmp.h located in /usr/inlcude instead of the 
port ones.
there is no problem on my various 5.x system so i think it is a special 
thing with the gcc version in your 4.11 system.
unfortunately i have no 4.x system running but i will try to find a 
suitable machine to check this for myself and to provide a better solution 
to fix this problem.

please let me know if it builds now on your system.
regards
Joerg
- -- 
The beginning is the most important part of the work.
-Plato
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (FreeBSD)

iD8DBQFCXXVjSPOsGF+KA+MRAmRpAKCV0OX625nCkT0q8WzxFwMOj+AL3gCfbCfJ
nMuMk27nTXA87IJf1x9l7NM=
=J8rL
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: isc-dhcp3-server port - [ScanMail certified]

2005-04-13 Thread Tom Frontera
I worked fine.  Thank You for your help.
-Tom
Joerg Pulz wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Wed, 13 Apr 2005, Tom Frontera wrote:
FreeBSD 4.11-RELEASE
and I updated the ports, but that didn't help.
[snip]
Hi,
here is a quick fix and a short description.
FIX: please run 'make config' again and DESELECT the DHCP_LDAP_SSL 
OPTION.

Description:
the isc-dhcp3-server port comes with it's own version of the ip.h and 
ip_icmp.h files. these can be found, once the ports source is 
extracted, in work/dhcp-3.0.2/includes/netinet/. the use of the 
DHCP_LDAP_SSL and OPENSSL_BASE OPTION add's an additional 
-I/usr/include to let the compiler find the right OpenSSL includes, 
which causes the problem on your system as your compiler is using the 
FreeBSD version of netinet/ip.h and netinet/ip_icmp.h located in 
/usr/inlcude instead of the port ones.
there is no problem on my various 5.x system so i think it is a 
special thing with the gcc version in your 4.11 system.
unfortunately i have no 4.x system running but i will try to find a 
suitable machine to check this for myself and to provide a better 
solution to fix this problem.

please let me know if it builds now on your system.
regards
Joerg
- -- The beginning is the most important part of the work.
-Plato
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (FreeBSD)
iD8DBQFCXXVjSPOsGF+KA+MRAmRpAKCV0OX625nCkT0q8WzxFwMOj+AL3gCfbCfJ
nMuMk27nTXA87IJf1x9l7NM=
=J8rL
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Ack, the mysql41-server port killed my box

2005-02-21 Thread Emanuel Strobl
Am Samstag, 19. Februar 2005 12:06 schrieb Matt Rechkemmer:
 Lately my FreeBSD 5.3R system has been running fine.  Tonight I decided to
 load the mysql 4.1.x port.  After loading it, glancing at mysql-server.sh,
 and firing it up, things went haywire.

 At the time I had two root sessions open, as well as two normal users.  My
 normal users started getting permission denied for everything, new users
 are unable to login receiving this via SSHd:

 No supported authentication methods left to try!

Just a wild guess, perhaps there is any pam module which tries to authenticate 
against the mysql database?. It sounds like

-Harry


 Root cannot query any user information.  /etc/passwd and /etc/master.passwd
 look fine.  MySQL.d is NOT running, it never did startup, and now I am
 effectively locked out of the system if I logout.

 It's obviously authenticated since /var/log/auth.log reports:
 Feb 19 04:51:17 hybrid sshd[79901]: Accepted keyboard-interactive/pam for
 theuser from 172.17.1.11 port 2101 ssh2

 Any help is GREATLY appreciated, Google has so far yieled nothing on this
 topic.

 Thanks!

 Matt Rechkemmer
 [EMAIL PROTECTED]
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]


pgpmEKCId3lna.pgp
Description: PGP signature


Re: Ack, the mysql41-server port killed my box

2005-02-21 Thread Matt Rechkemmer
On Mon, Feb 21, 2005 at 01:33:50PM +0100, Emanuel Strobl wrote:
 
 Just a wild guess, perhaps there is any pam module which tries to
 authenticate against the mysql database?. It sounds like
 
 -Harry

Actually after much effort I figured it out.  The mysql41-server port (v
4.1.10), set the permissions on /. and /.. to 0700 instead of 0755.  Once I
set these back to normal, things on the system returned to normal operation.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Ack, the mysql41-server port killed my box

2005-02-19 Thread Matt Rechkemmer
Lately my FreeBSD 5.3R system has been running fine.  Tonight I decided to
load the mysql 4.1.x port.  After loading it, glancing at mysql-server.sh, and
firing it up, things went haywire.

At the time I had two root sessions open, as well as two normal users.  My
normal users started getting permission denied for everything, new users are
unable to login receiving this via SSHd:

No supported authentication methods left to try!

Root cannot query any user information.  /etc/passwd and /etc/master.passwd
look fine.  MySQL.d is NOT running, it never did startup, and now I am
effectively locked out of the system if I logout.

It's obviously authenticated since /var/log/auth.log reports:
Feb 19 04:51:17 hybrid sshd[79901]: Accepted keyboard-interactive/pam for
theuser from 172.17.1.11 port 2101 ssh2

Any help is GREATLY appreciated, Google has so far yieled nothing on this
topic.

Thanks!

Matt Rechkemmer
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Orion Application Server port

2005-02-08 Thread Chad Morland
What happened to the Orion application server port? I am reading
articles that say there is a port for it. I am using the latest port
on 4.10 and the only Orion I can find is in x11-wm.

Is there a seperate mailing list to track changes in the ports tree?

-CM
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


problems with mysql323.57-server port

2003-07-24 Thread Alfonso Romero
I updated my ports collection and installed mysql server 3.23.57, but I received an 
error telling me that some files were newer than others. The bad thing is I didn´t 
save the error messages. Is someone else having this problem?


Alfonso Romero
Ibacsoft/Ibacnet Open Source Consultants
www.ibacnet.com
www.ibacsoft.dynu.com

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


server port

2003-07-16 Thread Rus Foster
Hi All,
Am I imagining it or is there a port for setting up a basic server? I can
see it for looking

Rgds

Rus

-- 
www: http://65535.net/vds.php   | Virtual Servers from just $15/mo
MSNM: [EMAIL PROTECTED] | www: http://www.65535.net
e: [EMAIL PROTECTED]   | Community: http://www.65535.org
t: +44 (0) 7092016595   | 10% Donation on every FreeBSD product
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: server port

2003-07-16 Thread Tim Aslat
In the immortal words of Rus Foster [EMAIL PROTECTED]...
 Am I imagining it or is there a port for setting up a basic server? I
 can see it for looking

you might try

/usr/ports/misc/instant-server

Cheers

Tim

-- 
Tim Aslat [EMAIL PROTECTED]
Spyderweb Consulting
http://www.spyderweb.com.au
P: 82243020M: 0401088479
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: server port

2003-07-16 Thread Rus Foster
 you might try

 /usr/ports/misc/instant-server

 Cheers


Cheers thats it

Rgds

Ru
-- 
www: http://65535.net/vds.php   | Virtual Servers from just $15/mo
MSNM: [EMAIL PROTECTED] | www: http://www.65535.net
e: [EMAIL PROTECTED]   | Community: http://www.65535.org
t: +44 (0) 7092016595   | 10% Donation on every FreeBSD product
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]