OSEC

Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com
 
From: Rob (falconusinternet.com)
Date: Sat Dec 01 2001 - 14:21:44 CST

  • Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

    "I don't know the answer, but shouldn't this work and be easier than
    rebuilding everything: cd /usr/src/usr.sbin/httpd, make -f
    Makefile.bsd-wrapper clean, make -f Makefile.bsd-wrapper obj, make -f
    Makefile.bsd-wrapper depend, make -f Makefile.bsd-wrapper install" -- A.
    Farber

    Yes that is a quick way to rebuild apache but it still doesn't add
    mod_rewrite as a static module (atleast in my case). Btw, I think the
    proper way you have to do it is:

    cd /usr/src/usr.sbin/httpd
      make -f Makefile.bsd-wrapper clean
      make -f Makefile.bsd-wrapper obj
      make -f Makefile.bsd-wrapper depend
      make -f Makefile.bsd-wrapper
      make -f Makefile.bsd-wrapper install

    Rob