Berkeley CSUA MOTD:Entry 23622
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2024/12/24 [General] UID:1000 Activity:popular
12/24   

2002/1/21 [Computer/SW/Unix] UID:23622 Activity:nil
1/21    Is there any reason why I want to use Makefile over ANT?
        \_ do you dream in XML?
2024/12/24 [General] UID:1000 Activity:popular
12/24   

You may also be interested in these entries...
2009/1/15-23 [Computer/SW/OS/OsX] UID:52398 Activity:nil
1/15    can any serious development be done on OSX that is not *for OSX*.
        i'll grant that ruby on rails has excellent tutorials for the mac.
        discuss:
        \_ What kind of serious development?  If you want to use the standard
           OSX ui then your ui code will be pretty much useless elsewhere,
           but that's why concepts like MVC are so important.  Otherwise
	...
2005/8/31 [Computer/SW/Languages/Perl] UID:39376 Activity:nil
8/31    Looking for an XML parser for Perl, preferably one that
        doesn't require installation (something already built in).
        If it's not already built in, I prefer something that doesn't
        require C compilation, and that I can just stick the *.pm
        to use. I'm looking for portability, not performance. Thanks.
        \_ What's wrong with using CPAN?
	...
2004/10/28-29 [Computer/SW/Languages/Perl] UID:34404 Activity:nil
10/28   Has anyone had trouble building SpamAssassin 3.0.1 on RH 9?  It seems
        to have major problems, and I can't tell if it's SA's fault or
        Redhate's.  perl Makefile.PL yields a Makefile with stray single
        quotes and truncated lines.  google searches yield no help.
        --scotsman
        \_ No idea about that in particular, but can you generate the makefile
	...
2004/9/23 [Computer/SW/OS/OsX] UID:33714 Activity:moderate
9/23    One of the grad students I work with added a piece of code to one
        of our programs that need to be dynamically linked to.  He uses a
        mac, and he only wrote the linking flags for the mac, and stuck
        that in the makefile.  So our standard linux version no longer
        works.  He then left for Rome.  How should this look in ELF?
        ifeq "$(MACOSX)" "true"
	...
2004/3/30-31 [Computer/SW/Database, Computer/SW/Unix] UID:12939 Activity:nil
3/30    How can I tell what has been compiled into my postfix binary?
        For example, I want to see if it has mysql support built in.
        \_ If you know what you're looking for, you can probably use
           strings/grep (assuming you have just the binary.)  Or you
           could just roll your own... -John
        \_ Try ldd if dynamically linked, or nm postfix | grep mysql
	...
2004/1/16 [Computer/SW/Security] UID:11807 Activity:high
1/16    How do you allow remote root logins on FreeBSD?  I can ssh in as a
        user but not as root.
        \_ Same as any system, edit your sshd_config.
           \_ How do I restart sshd on FreeBSD4?
                \_ reboot!
                \_ kill -HUP sshd
	...
2003/11/12 [Computer/SW/Unix] UID:11033 Activity:nil
11/11   does anyone know how to extend this makefile to support make clean
        on sub dirs?? thx
        .PHONY: all clean subdirs $(SUBDIRS)
        all: subdirs
        subdirs: $(SUBDIRS)
        $(SUBDIRS):
	...
2003/9/4-5 [Computer/SW/Compilers] UID:10081 Activity:nil
9/4     I have a legacy make system that needs to work on several platforms
        w/ different compilers.  To build for platform X, you type
        "make -f X_make" at the top level.  I'm trying to get to a modicum
        of sanity about this by actually using dependencies correctly.
        The problem: I need to have dependencies in subdirectories, and
        those dependencies also need to be built using the X_make makefile,
	...
2003/5/30-31 [Computer/SW/Compilers] UID:28580 Activity:high
5/29    There's a MIPS assembly file foo.s.  It's unoptimized.  The makefile
        compiles it into foo.o and then links with the rest of the program.
        I know there's a way to dump the actual assembly listings that is
        produced by gcc -c foo.s.  And this assembly is not the same as what's
        in foo.s because compiler optimizes it and adds in a lot more stuff
        to make it runnable.  Anybody remember how to get the assembly listings
	...
2002/11/26-27 [Computer/HW/CPU, Computer/HW/Drives] UID:26639 Activity:very high
11/26   A serious question about this: http://www.apple.com/xserve
        I have zero experience with recent apple hardware or software.
        My company needs rock solid NFS hosts at low cost.  Performance isn't
        an issue.  The clients will be Solaris 2.7 and Linux 2.4.  Do any of
        you have any experience with this?  Does it sound good/bad to you and
        why?  Any info, urls, whatever is much appreciated.  BTW, this isn't
	...
2002/9/6-8 [Computer/SW/Unix] UID:25792 Activity:moderate
9/6     Is there a way to tell emacs20 to associate a file suffix with a
        particular mode?  I want it to use makefile-mode for files with ".nmk"
        and ".cfg" suffixes.  Thanks.
        \_ i have the following in my .emacs to use text-mode for
           mutt's temporary files:
           (setq auto-mode-alist (cons '("^/tmp/mutt-" . text-mode)
	...