Forum OpenACS Q&A: Response to OpenACS 4 on Mac OS X (and Darwin) HOWTO now available

  • Looks like this might be the place to look: http://mail.gnome.org/archives/xml/2001-November/ msg00182.html Ain't the web great? According to this article, you have to do the following:
    • export LDFLAGS="-flat_namespace -undefined suppress"
    • cp configure configure.orig
    • Edit configure:
      % diff configure.orig configure
      3783c3783
      <     archive_cmds='$CC $(test .$module = .yes && echo -bundle 
      || echo
      -dynamiclib) $allow_undefined_flag -o $lib $libobjs 
      $deplibs$linkopts
      -install_name $rpath/$soname $(test -n "$verstring" -a 
      x$verstring !=
      x0.0 && echo $verstring)'
      ---
      >     archive_cmds='$CC $(test .$module = .yes && echo -bundle 
      || echo
      -dynamiclib) $allow_undefined_flag -flat_namespace -o $lib 
      $libobjs
      $deplibs$linkopts -install_name $rpath/$soname $(test -n 
      "$verstring" -a
      x$verstring != x0.0 && echo $verstring)'
      
      Basically, you make that line look like the second line. Then compiling works fine.