Search results

  1. H

    xxgdb or graphical c debugger ??

    try 'ddd' which is a great frontend to gdb. As I recall, it compiles fine under OSX
  2. H

    ISC DHCPD?

    I d/l'd the 3.0 (not the prerelease one) and it compiled fine.
  3. H

    ISC DHCPD?

    have you tried and it failed or have you not tried?
  4. H

    sendmail problems

    what did you change in the .cf or m4 file that was stock?
  5. H

    C++ and ncurses

    clean up the code or ignore them. The Apple linker is kind of 'noisy' that way. Be thankful, in the 10.0 version, those were compiler fatal errors,not warnings.
  6. H

    timeval from <sys/resource.h> not defined

    from /usr/include/sys/time.h struct timeval { int32_t tv_sec; /* seconds */ int32_t tv_usec; /* and microseconds */ };
  7. H

    C++ and ncurses

    you may have to run 'ranlib' on the libcurses.a to generate a table of contents
  8. H

    how to build a shared object in OSX

    On one side of the coin, you should read the man page for cc and dyld. That will give you what you need. You need to compile w/ -fPIC and link w/ (recalling from memory) -dynamiclib -undefined suppress -flat_namespace
  9. H

    C++ and ncurses

    did you add: -L/usr/local/lib -lncurses to the compile/link command?
  10. H

    firewalls and ports

    yea, its one of the Netinfo ports. The basestation and Airport dont use a special port to communicate. They really act as a transparent bridge and have their own communication protocol which they overlay TCP/IP on top of. If your really interested check the 802.11b spec. What is IEEE...
  11. H

    NAT and Airport

    you can't generally 'loopback' the public IP addresses. If I get an IP from my ISP of 1.2.3.4 and my router is assigning something like 10.0.1.x, and my iBook gets 10.0.1.1, I cant ping 1.2.3.4 but I can ping the rest of the Internet.
  12. H

    Printing from UNIX programs

    the line that reads '@lines = ;' isn't valid Perl. It's missing the < STDIN > Second, I dont see how the filter discerns between text, PS and PDF since the 'Print' command needs to be told what it's printing particularly since the commentary shows that they have no clue as to what the...
  13. H

    Need Help with Apache Proxy Module Settings

    you should jump over to www.apache.org and read the online docs. You will need the ssl module. How exactly that plays w/ the proxy, I can't say.
  14. H

    Need Help with Apache Proxy Module Settings

    I dont know how to setup apache for https but that is going to be your only hope. Otherwise, you are going to have to run the SOCKS server (which is NOT part of apache).
  15. H

    grep newbie needs help

    grep -E -e '\w+@\w+\.\w+' inputfile >outputfile Do a 'man grep' However, if you have excessively funky characters, the '\w' might not pick it up. You would want .+ in that case.
  16. H

    change the max. number of users connected to ftp server in OSX

    I strongly doubt you can using the stock ftp daemon. If your going to seriously serve up ftp, consider proftpd or one of the other much more flexible/enhanced daemons.
  17. H

    Partitions for Linux - does size matter?

    your going to have to have a separate partition for /swap. You might want just use the 2 partitions (/ and /swap) and do an install and see how much it loads into the various mount points. Usually, / is pretty small and most of it is under /usr. Then, if you want, reinstall w/ as many...
  18. H

    The Unix part of my HD...

    Unix tends to put stuff in lots of places. You really dont want to start moving things around too much w/o a deeper understanding of what is where and why its there. All of X11 should be under /usr/X11R6 and /etc/X11. These are decisions made during design and/or compile time and believe...
  19. H

    Osx Ftp

    can you setup a static entry in the host/NI database for the clients that are going to connect and tehn change the lookup sequence in lookupd to hit the file/db before jumping to DNS. Simple actually (assuming you know the name/IP of the clients).
  20. H

    4 MILLION TB "pppconfd" & "freeze

    cause he's using GNU ls and your using the stock one. diffferent letter to represent the same thing, a named pipe
Back
Top